mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
qemu: Enable ppc64le support for qemu-usermode
glibc defines minimum kernel needed to be 3.10.0 for LE ppc64 (From OE-Core rev: c1c296a42920af6725706bdea8e61b8c4f5f14a8) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -16,6 +16,8 @@ def qemu_target_binary(data):
|
||||
target_arch = "ppc"
|
||||
elif target_arch == "powerpc64":
|
||||
target_arch = "ppc64"
|
||||
elif target_arch == "powerpc64le":
|
||||
target_arch = "ppc64le"
|
||||
|
||||
return "qemu-" + target_arch
|
||||
|
||||
@@ -62,3 +64,4 @@ QEMU_EXTRAOPTIONS_ppc64e5500 = " -cpu e500mc"
|
||||
QEMU_EXTRAOPTIONS_ppce6500 = " -cpu e500mc"
|
||||
QEMU_EXTRAOPTIONS_ppc64e6500 = " -cpu e500mc"
|
||||
QEMU_EXTRAOPTIONS_ppc7400 = " -cpu 7400"
|
||||
QEMU_EXTRAOPTIONS_powerpc64le = " -cpu POWER8"
|
||||
|
||||
Reference in New Issue
Block a user