From d2e02d6377657855056c8d71dfb3cfe62371774c Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Sat, 25 Apr 2015 12:39:02 +0000
Subject: [PATCH] sdk: filter out CONFIG_SIGNED_PACKAGES for generated config

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 45581
---
 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.30.2