support/testing/tests/package/test_fwts.py: switch to neoverse-n1 cpu

The SBSA Reference Platform was updated to use the neoverse-n1 cpu
(armv8.2a) in Qemu v8.1 [1].

Commit c58a2a968 "configs/qemu_aarch64_sbsa_defconfig: switch to
neoverse-n1 (armv8.2a)" [2] reflected this change in
qemu_aarch64_sbsa_defconfig.

This commit updates the test_fwts runtime test the same way.

This update is possible with the help of commits [3] and [4].

[1] 1877272bad
[2] c58a2a9687
[3] 0d4177598c
[4] 027ddcbff6

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Romain Naour <romain.naour@smile.fr>
This commit is contained in:
Julien Olivain
2024-11-16 17:47:27 +01:00
committed by Romain Naour
parent 36c7a5366a
commit c2f91e9046

View File

@@ -7,6 +7,7 @@ class TestFwts(infra.basetest.BRTest):
config = \
"""
BR2_aarch64=y
BR2_neoverse_n1=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
BR2_TARGET_ROOTFS_EXT2=y
@@ -66,7 +67,7 @@ class TestFwts(infra.basetest.BRTest):
flash1 = os.path.join(self.builddir, "images", "SBSA_FLASH1.fd")
self.emulator.boot(arch="aarch64",
options=["-M", "sbsa-ref",
"-cpu", "cortex-a57",
"-cpu", "neoverse-n1",
"-m", "512M",
"-pflash", flash0,
"-pflash", flash1,