]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu: enable user mode for mips64 and mips64el
authorJackie Huang <jackie.huang@windriver.com>
Wed, 28 Oct 2015 04:34:55 +0000 (12:34 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 16 Nov 2015 11:28:28 +0000 (11:28 +0000)
- 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.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/qemu/qemu-targets.inc

index 5c3565544e2a26eb7df93f85d67f2ac99a6e9859..a3e46a894eab20da19080bd514ade6fe31dc2e77 100644 (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)