From 2ad5d768d42ed99dee4876b596874a35aa2d7c31 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 13 Mar 2014 12:12:58 +0000 Subject: target/sdk: use .config instead of unconditionally enabling all build dirs Call make defconfig on every build to catch newly added packages Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39913 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/sdk/convert-config.pl | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'target/sdk/convert-config.pl') diff --git a/target/sdk/convert-config.pl b/target/sdk/convert-config.pl index 9fd2c362e6..243de0b87b 100755 --- a/target/sdk/convert-config.pl +++ b/target/sdk/convert-config.pl @@ -1,6 +1,13 @@ #!/usr/bin/env perl use strict; +print <) { chomp; next unless /^CONFIG_([^=]+)=(.*)$/; @@ -9,6 +16,8 @@ while (<>) { my $val = $2; my $type; + next if $var eq 'ALL'; + if ($val eq 'y') { $type = "bool"; } elsif ($val eq 'm') { -- cgit v1.2.3