qemu.bbclass: Map the qemu binary name for powerpc64

(From OE-Core rev: b9c7b050eb3e51c98f95feb8cf19f45ff2cc8700)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj 2012-07-22 16:54:16 -07:00 committed by Richard Purdie
parent b882a12ef2
commit bedae2815e
1 changed files with 2 additions and 0 deletions

View 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