Author: nbd Date: 2015-04-25 14:39:02 +0200 (Sat, 25 Apr 2015) New Revision: 45581
Modified: trunk/target/sdk/convert-config.pl Log: sdk: filter out CONFIG_SIGNED_PACKAGES for generated config Signed-off-by: Felix Fietkau <[email protected]> Modified: trunk/target/sdk/convert-config.pl =================================================================== --- trunk/target/sdk/convert-config.pl 2015-04-25 10:47:18 UTC (rev 45580) +++ trunk/target/sdk/convert-config.pl 2015-04-25 12:39:02 UTC (rev 45581) @@ -10,6 +10,7 @@ while (<>) { chomp; + next if /^CONFIG_SIGNED_PACKAGES/; next unless /^CONFIG_([^=]+)=(.*)$/; my $var = $1; _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
