From: Felix Fietkau Date: Sat, 25 Apr 2015 12:39:02 +0000 (+0000) Subject: sdk: filter out CONFIG_SIGNED_PACKAGES for generated config X-Git-Tag: reboot~3161 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d2e02d6377657855056c8d71dfb3cfe62371774c;p=openwrt%2Fstaging%2Fblogic.git sdk: filter out CONFIG_SIGNED_PACKAGES for generated config Signed-off-by: Felix Fietkau SVN-Revision: 45581 --- diff --git a/target/sdk/convert-config.pl b/target/sdk/convert-config.pl index 243de0b87b41..e701b42eb93a 100755 --- a/target/sdk/convert-config.pl +++ b/target/sdk/convert-config.pl @@ -10,6 +10,7 @@ EOF while (<>) { chomp; + next if /^CONFIG_SIGNED_PACKAGES/; next unless /^CONFIG_([^=]+)=(.*)$/; my $var = $1;