mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02:00
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:
committed by
Richard Purdie
parent
70600fbb94
commit
77e3246092
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user