kconfig: make default prompt of mainmenu less specific
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 28 May 2018 09:21:44 +0000 (18:21 +0900)
committerChristian Lamparter <chunkeey@gmail.com>
Sun, 10 Feb 2019 21:13:27 +0000 (22:13 +0100)
If "mainmenu" is not specified, "Linux Kernel Configuration" is used
as a default prompt.

Given that Kconfig is used in other projects than Linux, let's use
a more generic prompt, "Main menu".

Suggested-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
config/zconf.y

index 228a14b24faee961505cb3e473fbcac0d4c5c80b..e31e3d38740c4e8ba0d402b6e3b3344dfa497b6b 100644 (file)
@@ -533,7 +533,7 @@ void conf_parse(const char *name)
 
        if (!menu_has_prompt(&rootmenu)) {
                current_entry = &rootmenu;
-               menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
+               menu_add_prompt(P_MENU, "Main menu", NULL);
        }
 
        menu_finalize(&rootmenu);