From: Clark Laughlin Date: Wed, 12 Nov 2014 15:38:48 +0000 (-0600) Subject: mkdeb: correctly map package architectures for x86 and ARM X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4078 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4de0025bf45fbf26f9cb6661d23d2d16ec87bb47;p=xen.git mkdeb: correctly map package architectures for x86 and ARM 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 XEN_TARGET_ARCH to the Debian architecture names for x86 and ARM architectures. Signed-off-by: Clark Laughlin Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- diff --git a/tools/misc/mkdeb b/tools/misc/mkdeb index 3bbf881f5d..67b91cc1e5 100644 --- a/tools/misc/mkdeb +++ b/tools/misc/mkdeb @@ -13,11 +13,17 @@ fi cd $1 version=$2 -if test "$XEN_TARGET_ARCH" = "x86_32"; then - arch=i386 -else - arch=amd64 -fi + +# map the architecture, if necessary +case "$XEN_TARGET_ARCH" in + x86_32|x86_32p) arch=i386 ;; + x86_64) arch=amd64 ;; + arm32) arch=armhf ;; + arm64) arch=$XEN_TARGET_ARCH;; + *) echo "Unknown XEN_TARGET_ARCH $XEN_TARGET_ARCH" >&2 + exit 1 + ;; +esac # Prepare the directory to package cd dist