summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorkensmith <kensmith@FreeBSD.org>2008-12-31 20:47:48 +0000
committerkensmith <kensmith@FreeBSD.org>2008-12-31 20:47:48 +0000
commit30697b9f55864da537c885c0dae1f04038908365 (patch)
tree3cc8b31ade8168a7b995569b64152b57f8198ce8 /usr.sbin
parent0e452256601fd1d74676df847c0ebc715ec5f41c (diff)
downloadFreeBSD-src-30697b9f55864da537c885c0dae1f04038908365.zip
FreeBSD-src-30697b9f55864da537c885c0dae1f04038908365.tar.gz
Explicitly tell the users what a "down side" to using the boot manager
is, consistently call it the boot manager, and switch the order the options are presented so no boot manager is first in the list (and hence more or less the default). This area will probably be rototilled more before 8.0 comes out.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sysinstall/menus.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/usr.sbin/sysinstall/menus.c b/usr.sbin/sysinstall/menus.c
index 7cec25a..ae09392 100644
--- a/usr.sbin/sysinstall/menus.c
+++ b/usr.sbin/sysinstall/menus.c
@@ -1074,21 +1074,24 @@ 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"
+ "If you will only have FreeBSD on the machine the boot manager is\n"
+ "not needed and it slows down the boot while offering you the choice\n"
+ "of which operating system to boot. If you do not want a boot\n"
+ "manager, or wish to replace an existing one, select \"standard\".\n"
+ "If you would prefer your Master Boot Record remain untouched then\n"
+ "select \"None\".\n\n"
" NOTE: PC-DOS users will almost certainly require \"None\"!",
"Press F1 to read about drive setup",
"drives",
- { { "BootMgr", "Install the FreeBSD Boot Manager",
- dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr },
- { "Standard", "Install a standard MBR (no boot manager)",
+ { { "Standard", "Install a standard MBR (no boot manager)",
dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 1 },
+ { "BootMgr", "Install the FreeBSD Boot Manager",
+ dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 0 },
{ "None", "Leave the Master Boot Record untouched",
dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 2 },
{ NULL } },
OpenPOWER on IntegriCloud