diff options
author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-23 22:14:56 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-25 21:28:18 +0200 |
commit | e74a7cd1e0a85718dfc20dc4d94a5cac051d2514 (patch) | |
tree | 673ad064aa8e81d0824f24507fe6f5a32da05303 /support/testing/tests | |
parent | e13a22f17a5041557a080150f1d260181fa99bee (diff) | |
download | buildroot-e74a7cd1e0a85718dfc20dc4d94a5cac051d2514.tar.gz buildroot-e74a7cd1e0a85718dfc20dc4d94a5cac051d2514.zip |
support/testing: fix ATF Vexpress test case
This test case currently fails to build with:
./build/juno/release/bl1/context_mgmt.o: In function `cm_prepare_el3_exit':
context_mgmt.c:(.text.cm_prepare_el3_exit+0x54): undefined reference to `cm_set_next_context'
context_mgmt.c:(.text.cm_prepare_el3_exit+0x54): relocation truncated to fit: R_AARCH64_JUMP26 against undefined symbol `cm_set_next_context'
This issue has been fixed upstream in commit
10c252c14b7f446c0b49ef1aafbd5d37804577dd, available since v1.3. So
while we bump, let's bump to the latest version of ATF, v1.5.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/64360659
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support/testing/tests')
-rw-r--r-- | support/testing/tests/boot/test_atf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/testing/tests/boot/test_atf.py b/support/testing/tests/boot/test_atf.py index 8288116471..c623ab8c8b 100644 --- a/support/testing/tests/boot/test_atf.py +++ b/support/testing/tests/boot/test_atf.py @@ -10,7 +10,7 @@ class TestATFVexpress(infra.basetest.BRTest): BR2_TARGET_ARM_TRUSTED_FIRMWARE=y BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://github.com/ARM-software/arm-trusted-firmware.git" - BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="v1.2" + BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="v1.5" BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="juno" BR2_TARGET_ARM_TRUSTED_FIRMWARE_FIP=y BR2_TARGET_ARM_TRUSTED_FIRMWARE_UBOOT_AS_BL33=y |