10 next if /^CONFIG_SIGNED_PACKAGES/;
12 if (/^CONFIG_([^=]+)=(.*)$/) {
16 next if $var eq 'ALL';
20 } elsif ($val eq 'm') {
22 } elsif ($val =~ /^".*"$/) {
24 } elsif ($val =~ /^\d+$/) {
27 warn "WARNING: no type found for symbol CONFIG_$var=$val\n";
30 } elsif (/^# CONFIG_BUSYBOX_(.*) is not set/) {
35 # We don't want to preserve a record of deselecting
36 # packages because we may want build them in the SDK.
37 # non-package configs however may be important to preserve
38 # the same compilation settings for packages that get
39 # recompiled in the SDK.
40 # Also we want avoid preserving image generation settings
41 # because we set those while in ImageBuilder
42 next if /^(# )?CONFIG_PACKAGE/;
43 next if /^(# )?CONFIG_TARGET/;
44 if (/^# CONFIG_(.*) is not set/) {
51 if (($var ne '') && ($type ne '') && ($val ne '')) {