X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Fsdk%2Fconvert-config.pl;h=243de0b87b419376962961bfbeef1408b9aafe46;hb=2ad5d768d42ed99dee4876b596874a35aa2d7c31;hp=9fd2c362e6b2ea5b3c4e1fc69747e91b1ffe1d24;hpb=7e7beff15e49b41f37b665a59d1b22d9b6d3a4a2;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') {