]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu-targets.inc: Mark 'lm32' as softmmu only architecture
authorNathan Rossi <nathan@nathanrossi.com>
Fri, 21 Sep 2018 06:27:31 +0000 (06:27 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 21 Sep 2018 15:15:19 +0000 (08:15 -0700)
The lm32 architecture does not support linux-user within QEMU as it is
not a Linux supported target.

Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/qemu/qemu-targets.inc

index 66dd675ed401e0a2a0a4f342cc04e07812101df6..810401daa695f683653581e620ec21607944b017 100644 (file)
@@ -7,7 +7,7 @@ def get_qemu_target_list(d):
     archs = d.getVar('QEMU_TARGETS').split()
     tos = d.getVar('HOST_OS')
     softmmuonly = ""
-    for arch in ['ppcemb']:
+    for arch in ['ppcemb', 'lm32']:
         if arch in archs:
             softmmuonly += arch + "-softmmu,"
             archs.remove(arch)