mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-16 15:57:19 +00:00
a82ed3cfc9
Gem5 xen support in meta-arm-autonomy moved to meta-gem5 under dynamic-layers/meta-virtualization. Any dependencies on 'arm-autonomy-host' or 'arm-autonomy-guest' in DISTRO_FEATURES replaced with 'xen'. Issue-Id: SCM-2091 Signed-off-by: Nathan Dunne <Nathan.Dunne@arm.com> Change-Id: Ia2db68e2cd88c4277e8edc213aebb88d90c0cd23 Signed-off-by: Jon Mason <jon.mason@arm.com>
8 lines
349 B
Plaintext
8 lines
349 B
Plaintext
# When booting gem5-arm64 with Xen we need to set the cpu as Cortex A53 and
|
|
# remove support for pointer authentification
|
|
GEM5_RUN_EXTRA_append = " \
|
|
${@bb.utils.contains('DISTRO_FEATURES_NATIVE', 'xen', \
|
|
'--param=system.cpu_cluster[0].cpus[0].isa[0].midr=0x410fd030 \
|
|
--param=system.cpu_cluster[0].cpus[0].isa[0].id_aa64isar1_el1=0x0', \
|
|
'', d)}"
|