From 19b576e68d1eb396821dde6f5ff7fb9848d338cc Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Mon, 28 May 2018 18:21:44 +0900 Subject: [PATCH] kconfig: make default prompt of mainmenu less specific 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 Signed-off-by: Masahiro Yamada Signed-off-by: Christian Lamparter --- config/zconf.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/zconf.y b/config/zconf.y index 228a14b..e31e3d3 100644 --- a/config/zconf.y +++ b/config/zconf.y @@ -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); -- 2.31.1