aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/zconf.y
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-05-28 18:21:44 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-05-29 03:31:19 +0900
commit137c0118a900bc4a3d1673573e22a03fbae3e8fd (patch)
tree90100fbb37d4fce208b84b223a18889f0068e5ce /scripts/kconfig/zconf.y
parentkconfig: remove sym_expand_string_value() (diff)
downloadlinux-dev-137c0118a900bc4a3d1673573e22a03fbae3e8fd.tar.xz
linux-dev-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 '')
-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);