View | Details | Raw Unified | Return to bug 142916
Collapse All | Expand All

(-)src/usr.sbin/sade/menus.c (-8 / +11 lines)
Lines 92-112 Link Here
92
DMenu MenuMBRType = {
92
DMenu MenuMBRType = {
93
    DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
93
    DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
94
    "overwrite me",		/* will be disk specific label */
94
    "overwrite me",		/* will be disk specific label */
95
    "FreeBSD comes with a boot selector that allows you to easily\n"
95
    "FreeBSD comes with a boot manager that allows you to easily\n"
96
    "select between FreeBSD and any other operating systems on your machine\n"
96
    "select between FreeBSD and any other operating systems on your machine\n"
97
    "at boot time.  If you have more than one drive and want to boot\n"
97
    "at boot time.  If you have more than one drive and want to boot\n"
98
    "from the second one, the boot selector will also make it possible\n"
98
    "from the second one, the boot manager will also make it possible\n"
99
    "to do so (limitations in the PC BIOS usually prevent this otherwise).\n"
99
    "to do so (limitations in the PC BIOS usually prevent this otherwise).\n"
100
    "If you do not want a boot selector, or wish to replace an existing\n"
100
    "If you will only have FreeBSD on the machine the boot manager is\n"
101
    "one, select \"standard\".  If you would prefer your Master Boot\n"
101
    "not needed and it slows down the boot while offering you the choice\n"
102
    "Record to remain untouched then select \"None\".\n\n"
102
    "of which operating system to boot.  If you do not want a boot\n"
103
    "manager, or wish to replace an existing one, select \"standard\".\n"
104
    "If you would prefer your Master Boot Record remain untouched then\n"
105
    "select \"None\".\n\n"
103
    "  NOTE:  PC-DOS users will almost certainly require \"None\"!",
106
    "  NOTE:  PC-DOS users will almost certainly require \"None\"!",
104
    "Press F1 to read about drive setup",
107
    "Press F1 to read about drive setup",
105
    "drives",
108
    "drives",
106
    { { "BootMgr",	"Install the FreeBSD Boot Manager",
109
    { { "Standard",	"Install a standard MBR (no boot manager)",
107
	dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, 0, 0, 0, 0 },
108
      { "Standard",	"Install a standard MBR (no boot manager)",
109
	dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 1 },
110
	dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 1 },
111
      { "BootMgr",      "Install the FreeBSD Boot Manager",
112
        dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 0 },
110
      { "None",		"Leave the Master Boot Record untouched",
113
      { "None",		"Leave the Master Boot Record untouched",
111
	dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 2 },
114
	dmenuRadioCheck, dmenuSetValue, NULL, &BootMgr, '(', '*', ')', 2 },
112
      { NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0 } },
115
      { NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0 } },

Return to bug 142916