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 | 81a35d669a3e89d9dba1a093d9bd30fc04e27c06 (patch) | |
tree | 31f962635e60adde19b3217bed0d80b4e6ea30bc /target/sdk/files | |
parent | 1602a8cb6bf1223f82c7d92ce1f3523d3d1bd09e (diff) | |
download | upstream-81a35d669a3e89d9dba1a093d9bd30fc04e27c06.tar.gz upstream-81a35d669a3e89d9dba1a093d9bd30fc04e27c06.tar.bz2 upstream-81a35d669a3e89d9dba1a093d9bd30fc04e27c06.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>
SVN-Revision: 46514
Diffstat (limited to 'target/sdk/files')
-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" |