From bcc785eefd4071ee2eb769203d24836cac0b3c1b Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Wed, 28 Oct 2015 12:34:55 +0800 Subject: 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 --- meta/recipes-devtools/qemu/qemu-targets.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-devtools/qemu') 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) -- cgit 1.2.3-korg