aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sade/menus.c
diff options
context:
space:
mode:
authorRebecca Cran <brucec@FreeBSD.org>2010-04-21 19:03:34 +0000
committerRebecca Cran <brucec@FreeBSD.org>2010-04-21 19:03:34 +0000
commit4e64643386fa2011f313d4f0c7f85ffb4d3d3b29 (patch)
tree65280c91752e42787bb14567cb44936c6bb63b65 /usr.sbin/sade/menus.c
parentaff644837180af24e083c9b877d96d8e2605581e (diff)
downloadsrc-4e64643386fa2011f313d4f0c7f85ffb4d3d3b29.tar.gz
src-4e64643386fa2011f313d4f0c7f85ffb4d3d3b29.zip
Remove the reference to DD mode, and replace with Expert mode. Also, make
sure the "Q = Finish" text is visible. Reword the boot manager screen to try and avoid confusion, and make the order of the menu items match that in sysinstall. PR: bin/142916 Submitted by: Jeremy Chadwick <freebsd at jdc.parodius.com> Reviewed by: randi Approved by: rrs (mentor) MFC after: 1 week
Notes
Notes: svn path=/head/; revision=207006
Diffstat (limited to 'usr.sbin/sade/menus.c')
-rw-r--r--usr.sbin/sade/menus.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/usr.sbin/sade/menus.c b/usr.sbin/sade/menus.c
index f48c772d88e9..df518046561b 100644
--- a/usr.sbin/sade/menus.c
+++ b/usr.sbin/sade/menus.c
@@ -92,24 +92,23 @@ DMenu MenuIPLType = {
DMenu MenuMBRType = {
DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
"overwrite me", /* will be disk specific label */
- "FreeBSD comes with a boot selector that allows you to easily\n"
+ "FreeBSD comes with a boot manager that allows you to easily\n"
"select between FreeBSD and any other operating systems on your machine\n"
"at boot time. If you have more than one drive and want to boot\n"
- "from the second one, the boot selector will also make it possible\n"
+ "from the second one, the boot manager will also make it possible\n"
"to do so (limitations in the PC BIOS usually prevent this otherwise).\n"
- "If you do not want a boot selector, or wish to replace an existing\n"
- "one, select \"standard\". If you would prefer your Master Boot\n"
- "Record to remain untouched then select \"None\".\n\n"
- " NOTE: PC-DOS users will almost certainly require \"None\"!",
- "Press F1 to read about drive setup",
+ "If you have other operating systems installed and would like a choice when\n"
+ "booting, choose \"BootMgr\". If you would prefer to keep your existing\n"
+ "boot manager, select \"None\".\n\n",
+ "",
"drives",
- { { "BootMgr", "Install the FreeBSD Boot Manager",
- dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, 0, 0, 0, 0 },
- { "Standard", "Install a standard MBR (no boot manager)",
+ { { "Standard", "Install a standard MBR (non-interactive boot manager)",
dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 1 },
- { "None", "Leave the Master Boot Record untouched",
+ { "BootMgr", "Install the FreeBSD boot manager",
+ dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 0 },
+ { "None", "Do not install a boot manager",
dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 2 },
- { NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0 } },
+ { NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0 } }
};
#endif /* PC98 */
#endif /* __i386__ */