From c29e1f18e7129787a0d3cc4a63cea32d601fe5e0 Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 25 Apr 2015 12:39:02 +0000 Subject: [PATCH 1/1] sdk: filter out CONFIG_SIGNED_PACKAGES for generated config Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45581 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/sdk/convert-config.pl | 1 + 1 file changed, 1 insertion(+) 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; -- 2.35.1