summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/install.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1999-07-06 08:45:40 +0000
committerjkh <jkh@FreeBSD.org>1999-07-06 08:45:40 +0000
commit44f61065e9f9be0ac85c4b9d76abe1c312ae14db (patch)
tree038d64bc623e28df4da8054900b2f6326e72d7a0 /usr.sbin/sysinstall/install.c
parentce4c3d5a3feac2c321385e47ef97e01fa5720ddf (diff)
downloadFreeBSD-src-44f61065e9f9be0ac85c4b9d76abe1c312ae14db.zip
FreeBSD-src-44f61065e9f9be0ac85c4b9d76abe1c312ae14db.tar.gz
Add an option for more fully enabling linux compatibility.
Diffstat (limited to 'usr.sbin/sysinstall/install.c')
-rw-r--r--usr.sbin/sysinstall/install.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c
index 9e97459..b1bbaa0 100644
--- a/usr.sbin/sysinstall/install.c
+++ b/usr.sbin/sysinstall/install.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: install.c,v 1.237 1999/05/27 10:32:47 jkh Exp $
+ * $Id: install.c,v 1.238 1999/06/17 19:04:53 markm Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -574,6 +574,10 @@ nodisks:
}
dialog_clear_norefresh();
+ if (!msgYesNo("Would you like to enable Linux binary compatibility?"))
+ (void)configLinux(self);
+
+ dialog_clear_norefresh();
if (!msgYesNo("Does this system have a mouse attached to it?")) {
WINDOW *w = savescr();
@@ -588,21 +592,21 @@ nodisks:
if (directory_exists("/usr/X11R6")) {
dialog_clear_norefresh();
if (!msgYesNo("Would you like to configure your X server at this time?"))
- configXSetup(self);
+ (void)configXSetup(self);
}
dialog_clear_norefresh();
if (!msgYesNo("The FreeBSD package collection is a collection of hundreds of ready-to-run\n"
"applications, from text editors to games to WEB servers and more. Would you\n"
"like to browse the collection now?"))
- configPackages(self);
+ (void)configPackages(self);
dialog_clear_norefresh();
if (!msgYesNo("Would you like to add any initial user accounts to the system?\n"
"Adding at least one account for yourself at this stage is suggested\n"
"since working as the \"root\" user is dangerous (it is easy to do\n"
"things which adversely affect the entire system)."))
- configUsers(self);
+ (void)configUsers(self);
dialog_clear_norefresh();
msgConfirm("Now you must set the system manager's password.\n"
OpenPOWER on IntegriCloud