X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/29ec5d802c648afb89dd4f326bc4752f40ad7416..22441e917150b2919e52632a306d32187db6915b:/scripts/kconfig.pl diff --git a/scripts/kconfig.pl b/scripts/kconfig.pl index d22af9fe6..7073e3b1a 100755 --- a/scripts/kconfig.pl +++ b/scripts/kconfig.pl @@ -9,21 +9,35 @@ use warnings; use strict; -my @arg = @ARGV; +my @arg; +my $PREFIX = "CONFIG_"; -sub load_config($) { +sub set_config($$$$) { + my $config = shift; + my $idx = shift; + my $newval = shift; + my $mod_plus = shift; + + if (!defined($config->{$idx}) or !$mod_plus or + $config->{$idx} eq '#undef' or $newval eq 'y') { + $config->{$idx} = $newval; + } +} + +sub load_config($$) { my $file = shift; + my $mod_plus = shift; my %config; open FILE, "$file" or die "can't open file"; while () { chomp; - /^CONFIG_(.+?)=(.+)/ and do { - $config{$1} = $2; + /^$PREFIX(.+?)=(.+)/ and do { + set_config(\%config, $1, $2, $mod_plus); next; }; - /^# CONFIG_(.+?) is not set/ and do { - $config{$1} = "#undef"; + /^# $PREFIX(.+?) is not set/ and do { + set_config(\%config, $1, "#undef", $mod_plus); next; }; /^#/ and next; @@ -93,10 +107,10 @@ sub config_sub($$) { sub print_cfgline($$) { my $name = shift; my $val = shift; - if ($val eq '#undef') { - print "# CONFIG_$name is not set\n"; + if ($val eq '#undef' or $val eq 'n') { + print "# $PREFIX$name is not set\n"; } else { - print "CONFIG_$name=$val\n"; + print "$PREFIX$name=$val\n"; } } @@ -110,14 +124,13 @@ sub dump_config($) { } } -sub parse_expr($); - -sub parse_expr($) { +sub parse_expr { my $pos = shift; + my $mod_plus = shift; my $arg = $arg[$$pos++]; - + die "Parse error" if (!$arg); - + if ($arg eq '&') { my $arg1 = parse_expr($pos); my $arg2 = parse_expr($pos); @@ -128,7 +141,7 @@ sub parse_expr($) { return config_add($arg1, $arg2, 0); } elsif ($arg =~ /^m\+/) { my $arg1 = parse_expr($pos); - my $arg2 = parse_expr($pos); + my $arg2 = parse_expr($pos, 1); return config_add($arg1, $arg2, 1); } elsif ($arg eq '>') { my $arg1 = parse_expr($pos); @@ -139,9 +152,21 @@ sub parse_expr($) { my $arg2 = parse_expr($pos); return config_sub($arg1, $arg2); } else { - return load_config($arg); + return load_config($arg, $mod_plus); + } +} + +while (@ARGV > 0 and $ARGV[0] =~ /^-\w+$/) { + my $cmd = shift @ARGV; + if ($cmd =~ /^-n$/) { + $PREFIX = ""; + } elsif ($cmd =~ /^-p$/) { + $PREFIX = shift @ARGV; + } else { + die "Invalid option: $cmd\n"; } } +@arg = @ARGV; my $pos = 0; dump_config(parse_expr(\$pos));