[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] mkdeb previously set the package architecture to be 'amd64' for anything other than XEN_TARGET_ARCH=x86_32. This patch attempts to correctly map the architecture from GNU names to debian names for x86 and ARM architectures, or otherwise, defaults it to the value in XEN_TARGET_ARCH.
On Wed, 2014-11-12 at 09:27 -0600, Clark Laughlin wrote: > Signed-off-by: Clark Laughlin <clark.laughlin@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> The mapping is a bit more zealous that strictly needed: > +# map the architecture, if necessary > +arch=$XEN_TARGET_ARCH > +case "$XEN_TARGET_ARCH" in > + x86_32) arch=i386 ;; > + i686) arch=i386 ;; > + x86_64) arch=amd64 ;; > + arm32) arch=armhf ;; > + aarch64) arch=arm64 ;; > +esac I don't think $XEN_TARGET_ARCH can ever be i686 or aarch64, that would break all over the place I think. Not that there is any harm in handling those cases. Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |