aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/qemu/qemu-targets.inc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-03-25 15:52:33 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-31 15:39:05 +0100
commit62ced6b84bf650ce4cf101491614613ec8fc17af (patch)
tree7238bcf836c4dd58948e2675946417fca41cb29f /meta/recipes-devtools/qemu/qemu-targets.inc
parent201a43cce6171988999f954a5759f46b330a7812 (diff)
downloadopenembedded-core-contrib-62ced6b84bf650ce4cf101491614613ec8fc17af.tar.gz
qemu.inc: Add sh4,sh4eb,mips64,mips64el targets
In order to leavarage more emulations in oe-core these targets needs to be built as well Introduce new variable QEMU_TARGETS which can be set by user to decide what all machine support should be build into qemu-native This one works adding same to qemu.inc does not parse presumably a bitbake problem. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu-targets.inc')
-rw-r--r--meta/recipes-devtools/qemu/qemu-targets.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu-targets.inc b/meta/recipes-devtools/qemu/qemu-targets.inc
new file mode 100644
index 0000000000..550a7fe1b5
--- /dev/null
+++ b/meta/recipes-devtools/qemu/qemu-targets.inc
@@ -0,0 +1,18 @@
+# possible arch values are arm mips mipsel mips64 mips64el ppc ppc64 ppc64abi32
+# ppcemb armeb alpha sparc32plus i386 x86_64 cris m68k microblaze sparc sparc32
+# sparc32plus
+
+def get_qemu_target_list(d):
+ import bb
+ archs = bb.data.getVar('QEMU_TARGETS', d, True).split()
+ targets = ""
+ for arch in ['mips64', 'mips64el', 'ppcemb']:
+ if arch in archs:
+ targets += arch + "-softmmu,"
+ archs.remove(arch)
+ for arch in ['armeb', 'alpha', 'ppc64abi32', 'sparc32plus']:
+ if arch in archs:
+ targets += arch + "-linux-user,"
+ archs.remove(arch)
+ return targets + ''.join([arch + "-linux-user" + "," + arch + "-softmmu" + "," for arch in archs]).rstrip(',')
+