blob: 5c3565544e2a26eb7df93f85d67f2ac99a6e9859 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# possible arch values are arm aarch64 mips mipsel mips64 mips64el ppc ppc64 ppc64abi32
2# ppcemb armeb alpha sparc32plus i386 x86_64 cris m68k microblaze sparc sparc32
3# sparc32plus
4
5def get_qemu_target_list(d):
6 import bb
7 archs = d.getVar('QEMU_TARGETS', True).split()
8 tos = d.getVar('HOST_OS', True)
9 softmmuonly = ""
10 for arch in ['mips64', 'mips64el', 'ppcemb']:
11 if arch in archs:
12 softmmuonly += arch + "-softmmu,"
13 archs.remove(arch)
14 linuxuseronly = ""
15 for arch in ['armeb', 'alpha', 'ppc64abi32', 'sparc32plus']:
16 if arch in archs:
17 linuxuseronly += arch + "-linux-user,"
18 archs.remove(arch)
19 if 'linux' not in tos:
20 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