diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-12 09:27:51 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-12 09:36:30 +0100 |
commit | 7794ce50899bc06fc59ba1a882e00bf10422658c (patch) | |
tree | a66e9932db224e2b91d88f149b395b92a8f37a48 /support/testing/tests/boot/test_atf.py | |
parent | a4a74005af911e22a2a2fb10a2d011fbf074a5d1 (diff) | |
download | buildroot-7794ce50899bc06fc59ba1a882e00bf10422658c.tar.gz buildroot-7794ce50899bc06fc59ba1a882e00bf10422658c.zip |
support/testing: TestATFMarvell needs BR2_TARGET_UBOOT_NEEDS_DTC=y
The Marvell U-Boot needs DTC to build, so the test case fails to build
on systems where dtc isn't available. We add
BR2_TARGET_UBOOT_NEEDS_DTC=y to make sure that we build our own DTC.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/44126707
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/testing/tests/boot/test_atf.py')
-rw-r--r-- | support/testing/tests/boot/test_atf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/testing/tests/boot/test_atf.py b/support/testing/tests/boot/test_atf.py index 02f93b9201..f1e58af134 100644 --- a/support/testing/tests/boot/test_atf.py +++ b/support/testing/tests/boot/test_atf.py @@ -73,6 +73,7 @@ class TestATFMarvell(infra.basetest.BRTest): BR2_TARGET_UBOOT_BOARDNAME="mvebu_mcbin-88f8040" BR2_TARGET_UBOOT_CUSTOM_VERSION=y BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2017.09" + BR2_TARGET_UBOOT_NEEDS_DTC=y """ def test_run(self): |