projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add acx-mac80211 (thanks to Matteo Croce)
[openwrt.git]
/
scripts
/
config.pl
diff --git
a/scripts/config.pl
b/scripts/config.pl
index
dcebfe6
..
53b8f11
100755
(executable)
--- a/
scripts/config.pl
+++ b/
scripts/config.pl
@@
-23,7
+23,7
@@
sub load_config($) {
next;
};
/^# CONFIG_(.+?) is not set/ and do {
next;
};
/^# CONFIG_(.+?) is not set/ and do {
- $config{$1} =
-1
;
+ $config{$1} =
"#undef"
;
next;
};
/^#/ and next;
next;
};
/^#/ and next;
@@
-49,15
+49,17
@@
sub config_and($$) {
}
}
-sub config_add($$) {
+sub config_add($$
$
) {
my $cfg1 = shift;
my $cfg2 = shift;
my $cfg1 = shift;
my $cfg2 = shift;
+ my $mod_plus = shift;
my %config;
for ($cfg1, $cfg2) {
my %cfg = %$_;
foreach my $config (keys %cfg) {
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};
}
}
$config{$config} = $cfg{$config};
}
}
@@
-91,7
+93,7
@@
sub config_sub($$) {
sub print_cfgline($$) {
my $name = shift;
my $val = shift;
sub print_cfgline($$) {
my $name = shift;
my $val = shift;
- if ($val eq '
-1
') {
+ if ($val eq '
#undef
') {
print "# CONFIG_$name is not set\n";
} else {
print "CONFIG_$name=$val\n";
print "# CONFIG_$name is not set\n";
} else {
print "CONFIG_$name=$val\n";
@@
-123,7
+125,11
@@
sub parse_expr($) {
} elsif ($arg =~ /^\+/) {
my $arg1 = parse_expr($pos);
my $arg2 = parse_expr($pos);
} 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);
} elsif ($arg eq '>') {
my $arg1 = parse_expr($pos);
my $arg2 = parse_expr($pos);
This page took
0.027752 seconds
and
4
git commands to generate.