blob: a3e46a894eab20da19080bd514ade6fe31dc2e77 [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 = ""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050010 for arch in ['ppcemb']:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011 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