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 18:45:47 -0700 |
commit | 42329b7bf0fcc1545383c089ab0fea96139561d9 (patch) | |
tree | 328bee15ac45abdcb55e9ba2c65a8c645c68c1e6 /meta/recipes-devtools/qemu | |
parent | 431d7c92c5c75446efced9c4ebe0e276d4400d57 (diff) | |
download | poky-42329b7bf0fcc1545383c089ab0fea96139561d9.tar.gz |
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>
Diffstat (limited to 'meta/recipes-devtools/qemu')
-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): | |||
7 | archs = d.getVar('QEMU_TARGETS').split() | 7 | archs = d.getVar('QEMU_TARGETS').split() |
8 | tos = d.getVar('HOST_OS') | 8 | tos = d.getVar('HOST_OS') |
9 | softmmuonly = "" | 9 | softmmuonly = "" |
10 | for arch in ['ppcemb']: | 10 | for arch in ['ppcemb', 'lm32']: |
11 | if arch in archs: | 11 | if arch in archs: |
12 | softmmuonly += arch + "-softmmu," | 12 | softmmuonly += arch + "-softmmu," |
13 | archs.remove(arch) | 13 | archs.remove(arch) |