diff options
author | Alistair Francis <Alistair.Francis@wdc.com> | 2018-12-13 22:06:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-15 11:48:07 +0000 |
commit | b115d25ec64e5251525cfe35bb1f7368acf12d85 (patch) | |
tree | a12aa0c0f2176b59e23041fdbb493ceb7e5634e2 /meta/recipes-devtools/qemu | |
parent | 851c9a1887235a5e061c2293abcecc9969040d85 (diff) | |
download | poky-b115d25ec64e5251525cfe35bb1f7368acf12d85.tar.gz |
qemu-targets: Fix the list of QEMU targets
(From OE-Core rev: b5a69bfa8bf0481658bee10cc8ed186166457eee)
Signed-off-by: Alistair Francis <alistair.francis@wdc.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 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-targets.inc b/meta/recipes-devtools/qemu/qemu-targets.inc index 810401daa6..a7d7b5f708 100644 --- a/meta/recipes-devtools/qemu/qemu-targets.inc +++ b/meta/recipes-devtools/qemu/qemu-targets.inc | |||
@@ -1,6 +1,7 @@ | |||
1 | # possible arch values are arm aarch64 mips mipsel mips64 mips64el ppc ppc64 ppc64abi32 | 1 | # possible arch values are: |
2 | # ppcemb armeb alpha sparc32plus i386 x86_64 cris m68k microblaze sparc sparc32 | 2 | # aarch64 arm armeb alpha cris i386 x86_64 m68k microblaze |
3 | # sparc32plus | 3 | # mips mipsel mips64 mips64el ppc ppc64 ppc64abi32 ppcemb |
4 | # riscv32 riscv64 sparc sparc32 sparc32plus | ||
4 | 5 | ||
5 | def get_qemu_target_list(d): | 6 | def get_qemu_target_list(d): |
6 | import bb | 7 | import bb |
@@ -19,4 +20,3 @@ def get_qemu_target_list(d): | |||
19 | if 'linux' not in tos: | 20 | if 'linux' not in tos: |
20 | return softmmuonly + ''.join([arch + "-softmmu" + "," for arch in archs]).rstrip(',') | 21 | return softmmuonly + ''.join([arch + "-softmmu" + "," for arch in archs]).rstrip(',') |
21 | return softmmuonly + linuxuseronly + ''.join([arch + "-linux-user" + "," + arch + "-softmmu" + "," for arch in archs]).rstrip(',') | 22 | return softmmuonly + linuxuseronly + ''.join([arch + "-linux-user" + "," + arch + "-softmmu" + "," for arch in archs]).rstrip(',') |
22 | |||