summaryrefslogtreecommitdiffstats
path: root/release/sysinstall/system.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-26 20:31:02 +0000
committerjkh <jkh@FreeBSD.org>1995-05-26 20:31:02 +0000
commit9a596693ad74d8bcb1b6c3764f0be96f1198f0ac (patch)
treee5b00ce261c9035a980e2ece6294990ed10a2d5d /release/sysinstall/system.c
parent022b48b9827c88c7d4d9709724686de1bd2a45cf (diff)
downloadFreeBSD-src-9a596693ad74d8bcb1b6c3764f0be96f1198f0ac.zip
FreeBSD-src-9a596693ad74d8bcb1b6c3764f0be96f1198f0ac.tar.gz
Ask name of "other" ftp site in correct place.
Make TIOCCONS redirection for console messages work properly; we no longer open /dev/console for all I/O - we use the VTYs directly.
Diffstat (limited to 'release/sysinstall/system.c')
-rw-r--r--release/sysinstall/system.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/sysinstall/system.c b/release/sysinstall/system.c
index 3ce3555..b4ee445 100644
--- a/release/sysinstall/system.c
+++ b/release/sysinstall/system.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: system.c,v 1.35 1995/05/26 08:41:49 jkh Exp $
+ * $Id: system.c,v 1.36 1995/05/26 19:28:05 jkh Exp $
*
* Jordan Hubbard
*
@@ -63,7 +63,7 @@ systemInitialize(int argc, char **argv)
OnCDROM = TRUE;
chroot("/bootcd");
} else {
- close(0); open("/dev/console", O_RDWR);
+ close(0); open("/dev/ttyv0", O_RDWR);
close(1); dup(0);
close(2); dup(0);
}
OpenPOWER on IntegriCloud