target/sdk: use .config instead of unconditionally enabling all build dirs
[openwrt.git] / target / sdk / convert-config.pl
index 9fd2c36..243de0b 100755 (executable)
@@ -1,6 +1,13 @@
 #!/usr/bin/env perl
 use strict;
 
+print <<EOF;
+config ALL
+       bool
+       default y
+
+EOF
+
 while (<>) {
        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') {