qemu: enable user mode for mips64 and mips64el

- remove mips64 and mips64el from softmmuonly list
  to enable user mode, they have been supported
  since 2012.
- keep the softmmuonly list and for loop although
  there is only one for now in case more supported
  arches added.

(From OE-Core rev: bcc785eefd4071ee2eb769203d24836cac0b3c1b)

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Jackie Huang
2015-10-28 12:34:55 +08:00
committed by Richard Purdie
parent 70600fbb94
commit 77e3246092

View File

@@ -7,7 +7,7 @@ def get_qemu_target_list(d):
archs = d.getVar('QEMU_TARGETS', True).split()
tos = d.getVar('HOST_OS', True)
softmmuonly = ""
for arch in ['mips64', 'mips64el', 'ppcemb']:
for arch in ['ppcemb']:
if arch in archs:
softmmuonly += arch + "-softmmu,"
archs.remove(arch)