]> code.ossystems Code Review - openembedded-core.git/commitdiff
qemu.bbclass: Map the qemu binary name for powerpc64
authorKhem Raj <raj.khem@gmail.com>
Sun, 22 Jul 2012 23:54:16 +0000 (16:54 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 26 Jul 2012 13:39:48 +0000 (14:39 +0100)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/qemu.bbclass

index 68896ce5fbe5afd204a02433a707f41532484d06..aead8e2809d22b50b42cc07d388f44a630b91fb9 100644 (file)
@@ -9,5 +9,7 @@ def qemu_target_binary(data):
         target_arch = "i386"
     elif target_arch == "powerpc":
         target_arch = "ppc"
+    elif target_arch == "powerpc64":
+        target_arch = "ppc64"
 
     return "qemu-" + target_arch