aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1999-08-05 10:07:09 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1999-08-05 10:07:09 +0000
commit88ed36c1ec5303ee16a4259624bc58e13b5b503e (patch)
treeb6dd9026659de51173b8ab14d111e03778a78da0 /release/sysinstall
parentec3e2c5d4fcc3dbeabe4491a01680bdaa4d34362 (diff)
Notes
Diffstat (limited to 'release/sysinstall')
-rw-r--r--release/sysinstall/install.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index aba70fda87430..bce4e1cdad6a2 100644
--- a/release/sysinstall/install.c
+++ b/release/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.241 1999/07/16 11:13:09 jkh Exp $
+ * $Id: install.c,v 1.242 1999/07/18 10:18:05 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -754,6 +754,8 @@ installFixupBin(dialogMenuItem *self)
if ((fp = fopen("/boot/loader.conf", "a")) != NULL) {
fprintf(fp, "# -- sysinstall generated deltas -- #\n");
fprintf(fp, "userconfig_script_load=\"YES\"\n");
+ if (!OnVTY)
+ fprintf(fp, "console=\"serial\"\n");
fclose(fp);
}
}