diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2017-07-15 22:54:33 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-12-13 16:29:22 +0100 |
commit | f0065554b2339d59f01f0ebfd28e5102dd0e9ec5 (patch) | |
tree | 6656d3d092fb58047945493ed843d60dadb905ec | |
parent | 2b8830933512e6c9e0c866c5f8977f74acfecf89 (diff) | |
download | upstream-f0065554b2339d59f01f0ebfd28e5102dd0e9ec5.tar.gz upstream-f0065554b2339d59f01f0ebfd28e5102dd0e9ec5.tar.bz2 upstream-f0065554b2339d59f01f0ebfd28e5102dd0e9ec5.zip |
config: make CONFIG_ALL_* select other CONIFG_ALL_* options
Select the other CONFIG_ALL_* options in the hierarchy when the master
option is selected. Currently CONFIG_ALL_KMODS is not selected when the
build bot selects CONFIG_ALL_NONSHARED for example.
Now the rtc kmods should get build when CONFIG_ALL_KMODS,
CONFIG_ALL_NONSHARED or CONFIG_ALL and CONFIG_RTC_SUPPORT are selected
like it is done by the build bots for targets with rtc support.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Acked-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 589621b1c03c25e6436d30aaa508aef2484244a6)
-rw-r--r-- | config/Config-build.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/Config-build.in b/config/Config-build.in index e0889fcccf..36efac82ad 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -9,15 +9,16 @@ menu "Global build settings" config ALL_NONSHARED bool "Select all target specific packages by default" - default ALL || BUILDBOT + select ALL_KMODS + default BUILDBOT config ALL_KMODS bool "Select all kernel module packages by default" - default ALL config ALL bool "Select all userspace packages by default" - default n + select ALL_KMODS + select ALL_NONSHARED config BUILDBOT bool "Set build defaults for automatic builds (e.g. via buildbot)" |