aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/config.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-07-18 11:31:01 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-07-18 11:31:01 +0000
commit8e4255397198574a9cd1354e194cb65bdd2051c0 (patch)
treebe8d0a838c6289a68035c8cd154d1ef44cb857bf /scripts/config.pl
parent00d88f9ffc1484eb8a0761b03c3171ab47d4adbb (diff)
downloadupstream-8e4255397198574a9cd1354e194cb65bdd2051c0.tar.gz
upstream-8e4255397198574a9cd1354e194cb65bdd2051c0.tar.bz2
upstream-8e4255397198574a9cd1354e194cb65bdd2051c0.zip
dynamically enable/disable kernel config options for kmod packages based on build system config
SVN-Revision: 8026
Diffstat (limited to 'scripts/config.pl')
-rwxr-xr-xscripts/config.pl10
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/config.pl b/scripts/config.pl
index 2f4a968ea7..53b8f11025 100755
--- a/scripts/config.pl
+++ b/scripts/config.pl
@@ -49,15 +49,17 @@ sub config_and($$) {
}
-sub config_add($$) {
+sub config_add($$$) {
my $cfg1 = shift;
my $cfg2 = shift;
+ my $mod_plus = shift;
my %config;
for ($cfg1, $cfg2) {
my %cfg = %$_;
foreach my $config (keys %cfg) {
+ next if $mod_plus and $config{$config} and $config{$config} eq "y";
$config{$config} = $cfg{$config};
}
}
@@ -123,7 +125,11 @@ sub parse_expr($) {
} elsif ($arg =~ /^\+/) {
my $arg1 = parse_expr($pos);
my $arg2 = parse_expr($pos);
- return config_add($arg1, $arg2);
+ return config_add($arg1, $arg2, 0);
+ } elsif ($arg =~ /^m\+/) {
+ my $arg1 = parse_expr($pos);
+ my $arg2 = parse_expr($pos);
+ return config_add($arg1, $arg2, 1);
} elsif ($arg eq '>') {
my $arg1 = parse_expr($pos);
my $arg2 = parse_expr($pos);