mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
qemu-targets.inc: Mark 'lm32' as softmmu only architecture
The lm32 architecture does not support linux-user within QEMU as it is not a Linux supported target. (From OE-Core rev: 2f6c85da5202cdd0d2da2ce53e0a62b09a711b16) Signed-off-by: Nathan Rossi <nathan@nathanrossi.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
431d7c92c5
commit
42329b7bf0
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user