X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Fsdk%2Fconvert-config.pl;h=243de0b87b419376962961bfbeef1408b9aafe46;hb=fb6da76b116ea53b7313cdf1a82fb401880080fb;hp=9fd2c362e6b2ea5b3c4e1fc69747e91b1ffe1d24;hpb=a9463d966a7956e5ceb6f9de3a2e549302d96abb;p=openwrt-github%2F.git diff --git a/target/sdk/convert-config.pl b/target/sdk/convert-config.pl index 9fd2c362e6..243de0b87b 100755 --- a/target/sdk/convert-config.pl +++ b/target/sdk/convert-config.pl @@ -1,6 +1,13 @@ #!/usr/bin/env perl use strict; +print <) { chomp; next unless /^CONFIG_([^=]+)=(.*)$/; @@ -9,6 +16,8 @@ while (<>) { my $val = $2; my $type; + next if $var eq 'ALL'; + if ($val eq 'y') { $type = "bool"; } elsif ($val eq 'm') {