From: Masahiro Yamada Date: Mon, 28 May 2018 09:21:44 +0000 (+0900) Subject: kconfig: make default prompt of mainmenu less specific X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=19b576e68d1eb396821dde6f5ff7fb9848d338cc 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 --- 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);