From: Khem Raj Date: Sun, 22 Jul 2012 23:54:16 +0000 (-0700) Subject: qemu.bbclass: Map the qemu binary name for powerpc64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bedae2815e362f484c309fbaa67d499102b2781d;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git qemu.bbclass: Map the qemu binary name for powerpc64 (From OE-Core rev: b9c7b050eb3e51c98f95feb8cf19f45ff2cc8700) Signed-off-by: Khem Raj Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass index 68896ce5fbe..aead8e2809d 100644 --- a/meta/classes/qemu.bbclass +++ b/meta/classes/qemu.bbclass @@ -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