summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/install.c
diff options
context:
space:
mode:
authorbrucec <brucec@FreeBSD.org>2011-01-17 00:08:28 +0000
committerbrucec <brucec@FreeBSD.org>2011-01-17 00:08:28 +0000
commitb7a9fb2c1af8b95e56b3bd3eb3ab706da030e1f3 (patch)
treebf306aae2237dbb0c63f384145d23463aa19dc23 /usr.sbin/sysinstall/install.c
parent38afc28719a01f41a317de8a7e1cdea25098b423 (diff)
downloadFreeBSD-src-b7a9fb2c1af8b95e56b3bd3eb3ab706da030e1f3.zip
FreeBSD-src-b7a9fb2c1af8b95e56b3bd3eb3ab706da030e1f3.tar.gz
Reduce the amount of text users need to read on each screen. Also try and
make it more relevant to modern systems: for example users will be familiar with the MBR but possibly less so with MS-DOS. After installation has finished don't return to the main menu but exit.
Diffstat (limited to 'usr.sbin/sysinstall/install.c')
-rw-r--r--usr.sbin/sysinstall/install.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c
index daacaa6..df48caa 100644
--- a/usr.sbin/sysinstall/install.c
+++ b/usr.sbin/sysinstall/install.c
@@ -637,10 +637,10 @@ installStandard(dialogMenuItem *self)
variable_set2(SYSTEM_STATE, "standard", 0);
dialog_clear_norefresh();
#ifdef WITH_SLICES
- msgConfirm("In the next menu, you will need to set up a DOS-style (\"fdisk\") partitioning\n"
+ msgConfirm("In the next menu, you will need to set up an MBR partitioning\n"
"scheme for your hard disk. If you simply wish to devote all disk space\n"
- "to FreeBSD (overwriting anything else that might be on the disk(s) selected)\n"
- "then use the (A)ll command to select the default partitioning scheme followed\n"
+ "to FreeBSD (overwriting anything else that might be on the disk selected)\n"
+ "then use the (A)ll command to create a single partition followed\n"
"by a (Q)uit. If you wish to allocate only free space to FreeBSD, move to a\n"
"partition marked \"unused\" and use the (C)reate command.");
@@ -655,7 +655,7 @@ nodisks:
goto nodisks;
}
- msgConfirm("Now you need to create BSD partitions inside of the fdisk partition(s)\n"
+ msgConfirm("Now you need to create BSD partitions inside of the MBR partition(s)\n"
"just created. If you have a reasonable amount of disk space (1GB or more)\n"
"and don't have any special requirements, simply use the (A)uto command to\n"
"allocate space automatically. If you have more specific needs or just don't\n"
@@ -872,6 +872,9 @@ installConfigure(void)
if (!msgNoYes("Visit the general configuration menu for a chance to set\n"
"any last options?"))
dmenuOpenSimple(&MenuConfigure, FALSE);
+ else
+ dmenuExit(NULL);
+
configRC_conf();
sync();
}
OpenPOWER on IntegriCloud