From: Jackie Huang Date: Wed, 28 Oct 2015 04:34:55 +0000 (+0800) Subject: qemu: enable user mode for mips64 and mips64el X-Git-Tag: 2016-4~2374 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=bcc785eefd4071ee2eb769203d24836cac0b3c1b;p=openembedded-core.git 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 Signed-off-by: Ross Burton --- 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): 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)