aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-06-30 18:14:36 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-06-30 18:14:36 +0000
commit33942bb1fa6e4c5bd0b3b4b82a3137af1b8ce915 (patch)
tree5ab6fe96da9d91813041b00f4346332643f8f6f7
parent2734533491d99fc7628492f88f560c0f08ccdafe (diff)
downloadbusybox-w32-33942bb1fa6e4c5bd0b3b4b82a3137af1b8ce915.tar.gz
busybox-w32-33942bb1fa6e4c5bd0b3b4b82a3137af1b8ce915.tar.bz2
busybox-w32-33942bb1fa6e4c5bd0b3b4b82a3137af1b8ce915.zip
Patch from Pavel Roskin to fixup toplevel help text
git-svn-id: svn://busybox.net/trunk/busybox@7014 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--scripts/config/mconf.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/scripts/config/mconf.c b/scripts/config/mconf.c
index 476e78adc..1ea512eff 100644
--- a/scripts/config/mconf.c
+++ b/scripts/config/mconf.c
@@ -83,7 +83,17 @@ save_config_help[] =
83 "configuration options you have selected at that time.\n" 83 "configuration options you have selected at that time.\n"
84 "\n" 84 "\n"
85 "If you are uncertain what all this means then you should probably\n" 85 "If you are uncertain what all this means then you should probably\n"
86 "leave this blank.\n" 86 "leave this blank.\n",
87top_menu_help[] =
88 "\n"
89 "Use the Up/Down arrow keys (cursor keys) to highlight the item\n"
90 "you wish to change or submenu wish to select and press <Enter>.\n"
91 "Submenus are designated by \"--->\".\n"
92 "\n"
93 "Shortcut: Press the option's highlighted letter (hotkey).\n"
94 "\n"
95 "You may also use the <PAGE UP> and <PAGE DOWN> keys to scroll\n"
96 "unseen options into view.\n"
87; 97;
88 98
89static char filename[PATH_MAX+1] = ".config"; 99static char filename[PATH_MAX+1] = ".config";
@@ -468,8 +478,7 @@ static void show_help(struct menu *menu)
468 478
469static void show_readme(void) 479static void show_readme(void)
470{ 480{
471 while (dialog_textbox(NULL, "scripts/README.Menuconfig", rows, cols) < 0) 481 show_helptext("Help", top_menu_help);
472 ;
473} 482}
474 483
475static void conf_choice(struct menu *menu) 484static void conf_choice(struct menu *menu)