From e028c2cdc9ee67602af98293ce0589add1fe4df8 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Sat, 30 Aug 2025 19:09:04 +0200 Subject: [PATCH] support/testing/tests/package/test_fwts.py: switch to neoverse-n2 cpu The SBSA Reference Platform was updated to neoverse-n2 (armv9.0a) in Qemu v9.1 [1]. The Armv9-A and Neoverse N2 core support was added in Buildroot commit [2]. Since the test_fwts uses the Qemu sbsa-ref machine, this commit aligns it to use the neoverse-n2 cpu. [1] https://gitlab.com/qemu-project/qemu/-/commit/b1d592e7b0a7301eae8e3baa99744ac35db3cd2a [2] https://gitlab.com/buildroot.org/buildroot/-/commit/9845bd4541cb03e97e577281f3c64f00c6ead881 Signed-off-by: Julien Olivain --- support/testing/tests/package/test_fwts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/testing/tests/package/test_fwts.py b/support/testing/tests/package/test_fwts.py index e33adcaea4..90bf086a58 100644 --- a/support/testing/tests/package/test_fwts.py +++ b/support/testing/tests/package/test_fwts.py @@ -7,7 +7,7 @@ class TestFwts(infra.basetest.BRTest): config = \ """ BR2_aarch64=y - BR2_neoverse_n1=y + BR2_neoverse_n2=y BR2_TOOLCHAIN_EXTERNAL=y BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0" BR2_TARGET_ROOTFS_EXT2=y @@ -45,7 +45,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", "neoverse-n1", + "-cpu", "neoverse-n2", "-m", "512M", "-pflash", flash0, "-pflash", flash1,