summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Ribalda Delgado <ricardo.ribalda@gmail.com>2014-03-11 17:22:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-11 20:28:58 -0700
commit1960f6b2ecbb793b40ebc9aed25c8f9cb7884c9a (patch)
treec2a4f94f5fb8eb6d5fb1426104bfbd5e79482010
parentd6dc48f5fb4d2e12605a1677e6270f13bb323649 (diff)
downloadpoky-1.6_M4.tar.gz
populate_sdk_deb: Fix meta-toolchain-sdk with amd64 ARCH1.6_M4
Map SDK_ARCH x86_64 to DEB_SDK_ARCH amd64 Without this patch meta-toolchain-gmae fails to do_populate_sdk | The following packages have unmet dependencies: | nativesdk-packagegroup-sdk-host : Depends: nativesdk-autoconf but it is not installable | Depends: nativesdk-libtool but it is not installable | Depends: nativesdk-shadow but it is not installable | Depends: nativesdk-unfs-server but it is not installable | Depends: nativesdk-makedevs but it is not installable | Depends: nativesdk-automake but it is not installable | Depends: nativesdk-qemu but it is not installable | Depends: nativesdk-pkgconfig but it is not installable | Depends: nativesdk-pseudo but it is not installable | Depends: nativesdk-qemu-helper but it is not installable | Depends: nativesdk-opkg but it is not installable | packagegroup-cross-canadian-qt5022 : Depends: gdb-cross-canadian-x86-64 but it is not installable | Depends: binutils-cross-canadian-x86-64 but it is not installable | Depends: gcc-cross-canadian-x86-64 but it is not installable | Depends: meta-environment-qt5022 but it is not installable (From OE-Core rev: a3ccbdffc04d16ae56699314dbd7ee8b6de75267) Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/populate_sdk_deb.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_deb.bbclass b/meta/classes/populate_sdk_deb.bbclass
index 833feca882..b96c5efad0 100644
--- a/meta/classes/populate_sdk_deb.bbclass
+++ b/meta/classes/populate_sdk_deb.bbclass
@@ -6,6 +6,9 @@ DEB_SDK_ARCH = "${@[d.getVar('SDK_ARCH', True), "i386"]\
6 [d.getVar('SDK_ARCH', True) in \ 6 [d.getVar('SDK_ARCH', True) in \
7 ["x86", "i486", "i586", "i686", "pentium"]]}" 7 ["x86", "i486", "i586", "i686", "pentium"]]}"
8 8
9DEB_SDK_ARCH = "${@[d.getVar('SDK_ARCH', True), "amd64"]\
10 [d.getVar('SDK_ARCH', True) == "x86_64"]}"
11
9do_populate_sdk[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock" 12do_populate_sdk[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock"
10 13
11# This will of course only work after rootfs_deb_do_rootfs or populate_sdk_deb has been called 14# This will of course only work after rootfs_deb_do_rootfs or populate_sdk_deb has been called