From: Bruce Ashfield Date: Fri, 18 Jun 2010 05:08:12 +0000 (-0400) Subject: qemu: update kernel mapping to return x86 for i586 TARGET_ARCH X-Git-Tag: 2011-1~5228 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ae6c323a0bf8648fa308128d19d78e601e833a0d;p=openembedded-core.git qemu: update kernel mapping to return x86 for i586 TARGET_ARCH Signed-off-by: Bruce Ashfield --- diff --git a/meta/classes/kernel-arch.bbclass b/meta/classes/kernel-arch.bbclass index 8894fa554c..cf50356da9 100644 --- a/meta/classes/kernel-arch.bbclass +++ b/meta/classes/kernel-arch.bbclass @@ -19,7 +19,7 @@ def map_kernel_arch(a, d): valid_archs = bb.data.getVar('valid_archs', d, 1).split() - if re.match('(i.86|athlon)$', a): return 'i386' + if re.match('(i.86|athlon)$', a): return 'x86' elif re.match('arm26$', a): return 'arm26' elif re.match('armeb$', a): return 'arm' elif re.match('mipsel$', a): return 'mips'