diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2015-10-28 12:34:55 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:28:28 +0000 |
commit | bcc785eefd4071ee2eb769203d24836cac0b3c1b (patch) | |
tree | a5e0a96d4cc6a48a72831d23459e3cffa2fde877 /meta/recipes-devtools/qemu | |
parent | a37cccca3bb3bad0d8d7e375fb7e3cc339ac8250 (diff) | |
download | openembedded-core-contrib-bcc785eefd4071ee2eb769203d24836cac0b3c1b.tar.gz |
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.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/qemu')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu-targets.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-targets.inc b/meta/recipes-devtools/qemu/qemu-targets.inc index 5c3565544e2..a3e46a894ea 100644 --- a/meta/recipes-devtools/qemu/qemu-targets.inc +++ b/meta/recipes-devtools/qemu/qemu-targets.inc @@ -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) |