diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2018-09-21 06:27:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-21 08:15:19 -0700 |
commit | 2f6c85da5202cdd0d2da2ce53e0a62b09a711b16 (patch) | |
tree | 12c43166009e40f3acb0852afc2f12f49d183864 | |
parent | d14f86f39a25649c923deecc24a283ba968b13f5 (diff) | |
download | openembedded-core-2f6c85da5202cdd0d2da2ce53e0a62b09a711b16.tar.gz openembedded-core-2f6c85da5202cdd0d2da2ce53e0a62b09a711b16.tar.bz2 openembedded-core-2f6c85da5202cdd0d2da2ce53e0a62b09a711b16.zip |
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.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-devtools/qemu/qemu-targets.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-targets.inc b/meta/recipes-devtools/qemu/qemu-targets.inc index 66dd675ed4..810401daa6 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').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) |