]> code.ossystems Code Review - meta-freescale.git/commitdiff
linux-qoriq-sdk.inc: only check for multiarch in eX500 not eX500-64b
authorMatthew McClintock <msm@freescale.com>
Tue, 18 Sep 2012 18:48:37 +0000 (13:48 -0500)
committerMatthew McClintock <msm@freescale.com>
Tue, 18 Sep 2012 18:49:55 +0000 (13:49 -0500)
Signed-off-by: Matthew McClintock <msm@freescale.com>
meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.inc

index 5f131cbaa4517a30112fe47adc1bb3d2f30a9210..f97a8c0c12aa7038de50129faf17d81f8e9bf728 100644 (file)
@@ -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')