From 26dee54e428679920336f0fcbece826f8cbf23ec Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Wed, 8 Jun 2022 09:10:17 +0200 Subject: [PATCH] support/scripts/gen-bootlin-toolchains: adjust dependencies of i686 toolchains The Bootlin i686 toolchain was already made available only on BR2_i386 with !BR2_x86_i486 && !BR2_x86_i586 && !BR2_x86_1000. However, this was not sufficient as a few other architecture variants of BR2_i386 are "lower" than i686, and they need to be excluded as well. Allows to fix: http://autobuild.buildroot.net/results/56ac1a8fa5b34a9ca10eef98ae9fb090b8c762c4/ Signed-off-by: Thomas Petazzoni Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- support/scripts/gen-bootlin-toolchains | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/support/scripts/gen-bootlin-toolchains b/support/scripts/gen-bootlin-toolchains index df1c000f9b..c96a388f84 100755 --- a/support/scripts/gen-bootlin-toolchains +++ b/support/scripts/gen-bootlin-toolchains @@ -257,7 +257,12 @@ arches = { 'conditions': ['BR2_i386', '!BR2_x86_i486', '!BR2_x86_i586', - '!BR2_x86_x1000'], + '!BR2_x86_x1000', + '!BR2_x86_pentium_mmx', + '!BR2_x86_geode', + '!BR2_x86_c3', + '!BR2_x86_winchip_c6', + '!BR2_x86_winchip2'], 'test_options': ['BR2_i386', 'BR2_x86_i686'], 'prefix': 'i686',