mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
kconfig: unset IKCONFIG_PROC and clean up nesting
Due to cut and paste error IKCONFIG was both set and cleared. It was suppose to be IKCONFIG_PROC to be cleared. Also cleaned up if nesting. Reported-by: Alan Jenkins <sourcejedi.lkml@googlemail.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
parent
cdfc47950a
commit
d08ca2771e
@ -323,7 +323,7 @@ while(<CIN>) {
|
||||
# enable IKCONFIG at least as a module
|
||||
print "CONFIG_IKCONFIG=m\n";
|
||||
# don't ask about PROC
|
||||
print "# CONFIG_IKCONFIG is not set\n";
|
||||
print "# CONFIG_IKCONFIG_PROC is not set\n";
|
||||
} else {
|
||||
print;
|
||||
}
|
||||
@ -333,15 +333,12 @@ while(<CIN>) {
|
||||
if (/^(CONFIG.*)=(m|y)/) {
|
||||
if (defined($configs{$1})) {
|
||||
$setconfigs{$1} = $2;
|
||||
print;
|
||||
} elsif ($2 eq "m") {
|
||||
print "# $1 is not set\n";
|
||||
} else {
|
||||
print;
|
||||
next;
|
||||
}
|
||||
} else {
|
||||
print;
|
||||
}
|
||||
print;
|
||||
}
|
||||
close(CIN);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user