diff options
author | 2020-11-10 21:56:51 +0100 | |
---|---|---|
committer | 2020-11-14 12:18:58 +0100 | |
commit | 48c7c1181f5a9aa9469f91525972b6c30df22e27 (patch) | |
tree | 0af06c15fe8b69c264db80bec4b666b4e5a2621c | |
parent | 90da0697ee574b31adfefcd77407d1aeb309c884 (diff) | |
download | buildroot-48c7c1181f5a9aa9469f91525972b6c30df22e27.tar.gz buildroot-48c7c1181f5a9aa9469f91525972b6c30df22e27.tar.bz2 |
support/testing/test_syslinux: add missing Kconfig symbol
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y is needed to use the
custom external toolchain x86-i686--glibc--bleeding-edge-2018.11-1.tar.bz2
Otherwise the symbol BR2_TOOLCHAIN_EXTERNAL_URL is lost.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981734
https://gitlab.com/buildroot.org/buildroot/-/jobs/830981733
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit ddf40cffeab1552d350a07c26129c9e83239399c)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | support/testing/tests/boot/test_syslinux.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/testing/tests/boot/test_syslinux.py b/support/testing/tests/boot/test_syslinux.py index f25cddfb6c..467d564e18 100644 --- a/support/testing/tests/boot/test_syslinux.py +++ b/support/testing/tests/boot/test_syslinux.py @@ -6,6 +6,7 @@ class TestSysLinuxBase(infra.basetest.BRTest): """ BR2_x86_i686=y BR2_TOOLCHAIN_EXTERNAL=y + BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y BR2_TOOLCHAIN_EXTERNAL_URL="http://toolchains.bootlin.com/downloads/releases/toolchains/x86-i686/tarballs/x86-i686--glibc--bleeding-edge-2018.11-1.tar.bz2" BR2_TOOLCHAIN_EXTERNAL_GCC_8=y |