diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2010-08-06 07:13:54 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-06 09:17:02 -0700 |
commit | 14828349719aa09845843477df8bad60792d18f3 (patch) | |
tree | 732774d0b5bd50ea4d2780c65aa8f0227c3ca467 /scripts/kconfig | |
parent | 31d1d48e199e99077fb30f6fb9a793be7bec756f (diff) | |
download | kernel_samsung_espresso10-14828349719aa09845843477df8bad60792d18f3.tar.gz kernel_samsung_espresso10-14828349719aa09845843477df8bad60792d18f3.tar.bz2 kernel_samsung_espresso10-14828349719aa09845843477df8bad60792d18f3.zip |
kconfig: fix make oldconfig
Linus wrote:
This seems to make "make oldconfig" a _lot_ more verbose than it
used to be. In a very annoying way.
I just did a quick git bisect. It's introduced by commit 4062f1a4c030
("kconfig: use long options in conf") by Sam Ravnborg. Apparently that
thing is totally buggy, and doesn't just change the option names, but
actively breaks them.
The old behaviour (from years ago) were reintroduced by accident. Fix
this so we are back to the version that are silent if there is nothing
to ask about.
Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Reviewed-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 010600ef58c..274f2716b03 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -599,12 +599,12 @@ int main(int ac, char **av) break; case savedefconfig: break; - case oldconfig: case oldaskconfig: rootEntry = &rootmenu; conf(&rootmenu); input_mode = silentoldconfig; /* fall through */ + case oldconfig: case listnewconfig: case oldnoconfig: case silentoldconfig: |