summaryrefslogtreecommitdiffstats
path: root/meta/classes/qemu.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/qemu.bbclass')
-rw-r--r--meta/classes/qemu.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass
index f5c5780125..55bdff816b 100644
--- a/meta/classes/qemu.bbclass
+++ b/meta/classes/qemu.bbclass
@@ -16,6 +16,8 @@ def qemu_target_binary(data):
16 target_arch = "ppc" 16 target_arch = "ppc"
17 elif target_arch == "powerpc64": 17 elif target_arch == "powerpc64":
18 target_arch = "ppc64" 18 target_arch = "ppc64"
19 elif target_arch == "powerpc64le":
20 target_arch = "ppc64le"
19 21
20 return "qemu-" + target_arch 22 return "qemu-" + target_arch
21 23
@@ -62,3 +64,4 @@ QEMU_EXTRAOPTIONS_ppc64e5500 = " -cpu e500mc"
62QEMU_EXTRAOPTIONS_ppce6500 = " -cpu e500mc" 64QEMU_EXTRAOPTIONS_ppce6500 = " -cpu e500mc"
63QEMU_EXTRAOPTIONS_ppc64e6500 = " -cpu e500mc" 65QEMU_EXTRAOPTIONS_ppc64e6500 = " -cpu e500mc"
64QEMU_EXTRAOPTIONS_ppc7400 = " -cpu 7400" 66QEMU_EXTRAOPTIONS_ppc7400 = " -cpu 7400"
67QEMU_EXTRAOPTIONS_powerpc64le = " -cpu POWER8"