From b0ff88423fdf9235cbb7dfda0f3340878a4fecb1 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Thu, 12 Dec 2024 00:31:44 +0100 Subject: [PATCH] support/testing: fix test_atf by bumping atf to 2.11 Since commit [1], test_atf is failing. See [2]. Passing -no-pie to ld does not produce the bl31.elf file (and does not generate an error). TF-A 2.11 reworked its makefiles and switched to gcc to link files. This commit fixes this failing test by updating to this newer TF-A version. Fixes: [2]. [1] https://gitlab.com/buildroot.org/buildroot/-/commit/248c2d045e780b23e6ed19fec1f242460ac464e3 [2] https://gitlab.com/buildroot.org/buildroot/-/jobs/8609307891 Signed-off-by: Julien Olivain Signed-off-by: Romain Naour --- support/testing/tests/boot/test_atf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/boot/test_atf.py b/support/testing/tests/boot/test_atf.py index b0e7696e86..6142dd36c1 100644 --- a/support/testing/tests/boot/test_atf.py +++ b/support/testing/tests/boot/test_atf.py @@ -9,7 +9,7 @@ class TestATFAllwinner(infra.basetest.BRTest): BR2_TOOLCHAIN_EXTERNAL_LINARO_AARCH64=y BR2_TARGET_ARM_TRUSTED_FIRMWARE=y BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION=y - BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION_VALUE="v2.9" + BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION_VALUE="v2.11" BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="sun50i_a64" # BR2_TARGET_ARM_TRUSTED_FIRMWARE_SSP is not set BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y