From e6047dccb2e3e9c270883a6d46aeb17039f0e02a Mon Sep 17 00:00:00 2001 From: Matthew McClintock Date: Tue, 18 Sep 2012 13:48:37 -0500 Subject: linux-qoriq-sdk.inc: only check for multiarch in eX500 not eX500-64b Signed-off-by: Matthew McClintock --- recipes-kernel/linux/linux-qoriq-sdk.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes-kernel/linux/linux-qoriq-sdk.inc b/recipes-kernel/linux/linux-qoriq-sdk.inc index 5f131cb..f97a8c0 100644 --- a/recipes-kernel/linux/linux-qoriq-sdk.inc +++ b/recipes-kernel/linux/linux-qoriq-sdk.inc @@ -18,7 +18,8 @@ python () { ma = d.getVar("DISTRO_FEATURES", True) arch = d.getVar("OVERRIDES", True) - if not "multiarch" in ma and ("e5500" in arch or "e6500" in arch): + # the : after the arch is to skip the message on 64b + if not "multiarch" in ma and ("e5500:" in arch or "e6500:" in arch): raise bb.parse.SkipPackage("Building the kernel for this arch requires multiarch to be in DISTRO_FEATURES") promote_kernel = d.getVar('BUILD_64BIT_KERNEL') -- cgit v1.2.3-54-g00ecf