mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
nativesdk-qemu: support aarch64_be.
Otherwise, there will be "no aarch64_be-softmmu" error. (From OE-Core rev: 237b677f2501752d3ec339e87aa9f31fc6926afd) Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
04731f17e8
commit
12722ccf05
@@ -13,7 +13,7 @@ def get_qemu_target_list(d):
|
||||
softmmuonly += arch + "-softmmu,"
|
||||
archs.remove(arch)
|
||||
linuxuseronly = ""
|
||||
for arch in ['armeb', 'alpha', 'ppc64abi32', 'sparc32plus']:
|
||||
for arch in ['armeb', 'alpha', 'ppc64abi32', 'sparc32plus', 'aarch64_be']:
|
||||
if arch in archs:
|
||||
linuxuseronly += arch + "-linux-user,"
|
||||
archs.remove(arch)
|
||||
|
||||
Reference in New Issue
Block a user