qemu: update kernel mapping to return x86 for i586 TARGET_ARCH

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
This commit is contained in:
Bruce Ashfield 2010-06-18 01:08:12 -04:00
parent 9ee1fbb720
commit ae6c323a0b
1 changed files with 1 additions and 1 deletions

View File

@ -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'