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:39:30 +0000 |
commit | 77e324609231974f18ddbb58988e96c72aa0f119 (patch) | |
tree | c534b6d757cc3d327faa122fa3d4eea832e32cbc /meta/recipes-devtools/qemu | |
parent | 70600fbb948269dac06242637867aaffa29172cf (diff) | |
download | poky-77e324609231974f18ddbb58988e96c72aa0f119.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.
(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>
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 5c3565544e..a3e46a894e 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): | |||
7 | archs = d.getVar('QEMU_TARGETS', True).split() | 7 | archs = d.getVar('QEMU_TARGETS', True).split() |
8 | tos = d.getVar('HOST_OS', True) | 8 | tos = d.getVar('HOST_OS', True) |
9 | softmmuonly = "" | 9 | softmmuonly = "" |
10 | for arch in ['mips64', 'mips64el', 'ppcemb']: | 10 | for arch in ['ppcemb']: |
11 | if arch in archs: | 11 | if arch in archs: |
12 | softmmuonly += arch + "-softmmu," | 12 | softmmuonly += arch + "-softmmu," |
13 | archs.remove(arch) | 13 | archs.remove(arch) |