X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Fsdk%2Fconvert-config.pl;h=0e562f95582b718880ff201b4a5015fc317a5a28;hb=4ed8e57fd9556b02c0de0caf5b33137110b82d86;hp=9fd2c362e6b2ea5b3c4e1fc69747e91b1ffe1d24;hpb=cedfe135ab102ac2f8390dd82b496de3c383d3cc;p=openwrt%2F.git diff --git a/target/sdk/convert-config.pl b/target/sdk/convert-config.pl index 9fd2c362e6..0e562f9558 100755 --- a/target/sdk/convert-config.pl +++ b/target/sdk/convert-config.pl @@ -3,12 +3,15 @@ use strict; while (<>) { chomp; + next if /^CONFIG_SIGNED_PACKAGES/; next unless /^CONFIG_([^=]+)=(.*)$/; my $var = $1; my $val = $2; my $type; + next if $var eq 'ALL'; + if ($val eq 'y') { $type = "bool"; } elsif ($val eq 'm') {