- 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>
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)