aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/streamline_config.pl9
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 9fa3f81b1ed9..69b7c3f6a2f4 100644
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -323,7 +323,7 @@ while(<CIN>) {
323 # enable IKCONFIG at least as a module 323 # enable IKCONFIG at least as a module
324 print "CONFIG_IKCONFIG=m\n"; 324 print "CONFIG_IKCONFIG=m\n";
325 # don't ask about PROC 325 # don't ask about PROC
326 print "# CONFIG_IKCONFIG is not set\n"; 326 print "# CONFIG_IKCONFIG_PROC is not set\n";
327 } else { 327 } else {
328 print; 328 print;
329 } 329 }
@@ -333,15 +333,12 @@ while(<CIN>) {
333 if (/^(CONFIG.*)=(m|y)/) { 333 if (/^(CONFIG.*)=(m|y)/) {
334 if (defined($configs{$1})) { 334 if (defined($configs{$1})) {
335 $setconfigs{$1} = $2; 335 $setconfigs{$1} = $2;
336 print;
337 } elsif ($2 eq "m") { 336 } elsif ($2 eq "m") {
338 print "# $1 is not set\n"; 337 print "# $1 is not set\n";
339 } else { 338 next;
340 print;
341 } 339 }
342 } else {
343 print;
344 } 340 }
341 print;
345} 342}
346close(CIN); 343close(CIN);
347 344