arc: Build uImage as well as vmlinux output files
[lede-git/.git] / target / sdk / convert-config.pl
index 243de0b87b419376962961bfbeef1408b9aafe46..0e562f95582b718880ff201b4a5015fc317a5a28 100755 (executable)
@@ -1,15 +1,9 @@
 #!/usr/bin/env perl
 use strict;
 
-print <<EOF;
-config ALL
-       bool
-       default y
-
-EOF
-
 while (<>) {
        chomp;
+       next if /^CONFIG_SIGNED_PACKAGES/;
        next unless /^CONFIG_([^=]+)=(.*)$/;
 
        my $var = $1;