diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-04-25 12:39:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-04-25 12:39:02 +0000 |
commit | d2e02d6377657855056c8d71dfb3cfe62371774c (patch) | |
tree | 1a04ee42fb02fe2fb815499e71aa51d605231a3f /target | |
parent | 51d0476ab048c11e7ad22456e5324bf7ab3c06cd (diff) | |
download | upstream-d2e02d6377657855056c8d71dfb3cfe62371774c.tar.gz upstream-d2e02d6377657855056c8d71dfb3cfe62371774c.tar.bz2 upstream-d2e02d6377657855056c8d71dfb3cfe62371774c.zip |
sdk: filter out CONFIG_SIGNED_PACKAGES for generated config
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45581
Diffstat (limited to 'target')
-rwxr-xr-x | target/sdk/convert-config.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/sdk/convert-config.pl b/target/sdk/convert-config.pl index 243de0b87b..e701b42eb9 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; |