aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2015-03-16 11:51:54 +0000
committerJonas Gorski <jogo@openwrt.org>2015-03-16 11:51:54 +0000
commit88ea80c8f3253f3e8c9c1cc6d22a6e9503d14378 (patch)
treec65cd2c9863b9fbd9cab0b16ef10f4691f34b4db /scripts
parentba25eac5190d5d268859f84f8d9d21fc8889cf65 (diff)
downloadupstream-88ea80c8f3253f3e8c9c1cc6d22a6e9503d14378.tar.gz
upstream-88ea80c8f3253f3e8c9c1cc6d22a6e9503d14378.tar.bz2
upstream-88ea80c8f3253f3e8c9c1cc6d22a6e9503d14378.zip
buildroot: make it easier to build all kmods
Split out kmods from ALL to make it easier to create local builds that are compatible kmod-wise with releases. Signed-off-by: Jonas Gorski <jogo@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44830 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/metadata.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index bfb9ab50e2..92923ea07a 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -545,7 +545,11 @@ sub print_package_config_category($) {
print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." $title\n";
print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
unless ($pkg->{hidden}) {
- $pkg->{default} ||= "m if ALL";
+ if ($pkg->{name} =~ /^kmod-/) {
+ $pkg->{default} ||= "m if ALL_KMODS";
+ } else {
+ $pkg->{default} ||= "m if ALL";
+ }
}
if ($pkg->{default}) {
foreach my $default (split /\s*,\s*/, $pkg->{default}) {