summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-05-19 02:54:57 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2020-05-20 13:08:41 +0200
commitfc7c564853b92110342b0c928cc3d3d3bd6d0a09 (patch)
tree13ddbc4b1f06023e1b9738586a33e6a4f3c97fd8 /common/Kconfig
parentb9c2b5c1b4bc6775613164f7b5a0dd583a8032f8 (diff)
downloadbarebox-fc7c564853b92110342b0c928cc3d3d3bd6d0a09.tar.gz
barebox-fc7c564853b92110342b0c928cc3d3d3bd6d0a09.tar.xz
kconfig: add 'option modules' to allow tristate options to become m
Since commit 18895514dc5e ("kconfig: update to v3.18-rc6"), tristate symbols cannot become 'm'. In old days of Linux, CONFIG_MODULES was the special option hard-coded in Kconfig. The current Kconfig does not know which option is it. You need to specify 'option modules' to teach Kconfig that it is the module support switch. Add 'option modules' to revive the module builds. Fixes: 18895514dc5e ("kconfig: update to v3.18-rc6") Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 460ac487cb..7a99d20bf9 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -316,6 +316,7 @@ config MODULES
depends on HAS_MODULES
depends on EXPERIMENTAL
bool "module support"
+ option modules
help
This option enables support for loadable modules via insmod. Module
support is quite experimental at the moment. There is no convenient