summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2012-09-18 13:48:37 -0500
committerMatthew McClintock <msm@freescale.com>2012-09-18 13:49:55 -0500
commite6047dccb2e3e9c270883a6d46aeb17039f0e02a (patch)
treed17752f2d7af9474117452ee2709b54896dc3c62
parent38661067e4ad57d9e4012b80ba2b138092192dca (diff)
downloadmeta-fsl-ppc-e6047dccb2e3e9c270883a6d46aeb17039f0e02a.tar.gz
linux-qoriq-sdk.inc: only check for multiarch in eX500 not eX500-64b
Signed-off-by: Matthew McClintock <msm@freescale.com>
-rw-r--r--recipes-kernel/linux/linux-qoriq-sdk.inc3
1 files changed, 2 insertions, 1 deletions
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 () {
18 ma = d.getVar("DISTRO_FEATURES", True) 18 ma = d.getVar("DISTRO_FEATURES", True)
19 arch = d.getVar("OVERRIDES", True) 19 arch = d.getVar("OVERRIDES", True)
20 20
21 if not "multiarch" in ma and ("e5500" in arch or "e6500" in arch): 21 # the : after the arch is to skip the message on 64b
22 if not "multiarch" in ma and ("e5500:" in arch or "e6500:" in arch):
22 raise bb.parse.SkipPackage("Building the kernel for this arch requires multiarch to be in DISTRO_FEATURES") 23 raise bb.parse.SkipPackage("Building the kernel for this arch requires multiarch to be in DISTRO_FEATURES")
23 24
24 promote_kernel = d.getVar('BUILD_64BIT_KERNEL') 25 promote_kernel = d.getVar('BUILD_64BIT_KERNEL')