diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-07-27 23:45:15 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-07-27 23:45:15 +0000 |
commit | 94a5b1dfc2a4e6744b5e30706091f0b5403148a4 (patch) | |
tree | 816ef6f1d6ddbd71b0271ca85fe4a26cdd8d7a7c /target | |
parent | 3d3ec9e4fc714fa5544545cebe7d8d0e7c0c3b37 (diff) | |
download | master-187ad058-94a5b1dfc2a4e6744b5e30706091f0b5403148a4.tar.gz master-187ad058-94a5b1dfc2a4e6744b5e30706091f0b5403148a4.tar.bz2 master-187ad058-94a5b1dfc2a4e6744b5e30706091f0b5403148a4.zip |
sdk: provide explicit CONFIG_MODULES kconfig symbol
Extend the SDK Config.in file to explicitely declare a MODULES symbol with
the "option modules" flag set in order to prevent a kconfig segmentation fault
whenever a "depends m" dependency is encountered.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46514 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/sdk/files/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/sdk/files/Config.in b/target/sdk/files/Config.in index 4a2f12e74f..6cb3fe8aef 100644 --- a/target/sdk/files/Config.in +++ b/target/sdk/files/Config.in @@ -1,2 +1,7 @@ +config MODULES + bool + default y + option modules + source "Config-build.in" source "tmp/.config-package.in" |