浏览代码

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>
Masahiro Yamada 7 年之前
父节点
当前提交
137c0118a9
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      scripts/kconfig/tests/no_write_if_dep_unmet/expected_config
  2. 1 1
      scripts/kconfig/zconf.y

+ 1 - 1
scripts/kconfig/tests/no_write_if_dep_unmet/expected_config

@@ -1,5 +1,5 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux Kernel Configuration
+# Main menu
 #
 # CONFIG_A is not set

+ 1 - 1
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);