diff --git a/Config.in b/Config.in index d730f2034b..0bfe6d1ab5 100644 --- a/Config.in +++ b/Config.in @@ -15,6 +15,10 @@ config BR2_HAVE_DOT_CONFIG config BR2_BROKEN bool +config BR2_HIDE_SECONDARY_TARGET_OPTIONS + bool + option env="BR2_HIDE_SECONDARY_TARGET_OPTIONS" + config BR2_VERSION string option env="BR2_VERSION_FULL" diff --git a/Makefile b/Makefile index 8e2cb0ae14..176c0391bf 100644 --- a/Makefile +++ b/Makefile @@ -251,6 +251,13 @@ export LANG = C export LC_ALL = C endif +# we set a default value here to avoid a Kconfig warning about unset +# environment varilable. This option is passed as an environment +# variable to be controlled by autobuilders. The purpose is to test +# less frequently some uncommon configurations which tend to generate +# more build failures. +export BR2_HIDE_SECONDARY_TARGET_OPTIONS ?= n + # To put more focus on warnings, be less verbose as default # Use 'make V=1' to see the full commands ifeq ("$(origin V)", "command line")