summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/zconf.y
diff options
context:
space:
mode:
authorMasahiro Yamada2018-05-28 11:21:44 +0200
committerMasahiro Yamada2018-05-28 20:31:19 +0200
commit137c0118a900bc4a3d1673573e22a03fbae3e8fd (patch)
tree90100fbb37d4fce208b84b223a18889f0068e5ce /scripts/kconfig/zconf.y
parentkconfig: remove sym_expand_string_value() (diff)
downloadkernel-qcow2-linux-137c0118a900bc4a3d1673573e22a03fbae3e8fd.tar.gz
kernel-qcow2-linux-137c0118a900bc4a3d1673573e22a03fbae3e8fd.tar.xz
kernel-qcow2-linux-137c0118a900bc4a3d1673573e22a03fbae3e8fd.zip
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 <sam@ravnborg.org> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/zconf.y')
-rw-r--r--scripts/kconfig/zconf.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y
index 22e318c1d3d1..8a82aaf27581 100644
--- a/scripts/kconfig/zconf.y
+++ b/scripts/kconfig/zconf.y
@@ -532,7 +532,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);