summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-10 07:25:55 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-10 07:25:55 +0000
commit3f7ce3832d2cb85118d384134816f3377e925fb8 (patch)
treeeb80750f953aa19dee77030c8198ece61974ee4b
parent25d24a2bae8fd6306900ca6e3a1b5f254a85bfc0 (diff)
call tty_init() and config_init()
-rw-r--r--sys/kern/init_main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c
index 797422e29da..eb953d519b3 100644
--- a/sys/kern/init_main.c
+++ b/sys/kern/init_main.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: init_main.c,v 1.9 1996/05/27 07:59:02 deraadt Exp $ */
-/* $NetBSD: init_main.c,v 1.84 1996/04/22 01:38:12 christos Exp $ */
+/* $OpenBSD: init_main.c,v 1.10 1996/06/10 07:25:54 deraadt Exp $ */
+/* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou. All rights reserved.
@@ -54,6 +54,7 @@
#include <sys/signalvar.h>
#include <sys/systm.h>
#include <sys/vnode.h>
+#include <sys/tty.h>
#include <sys/conf.h>
#include <sys/buf.h>
#ifdef REAL_CLISTS
@@ -183,6 +184,8 @@ main(framep)
vm_mem_init();
kmeminit();
disk_init(); /* must come before autoconfiguration */
+ tty_init(); /* initialise tty's */
+ config_init(); /* init autoconfiguration data structures */
cpu_startup();
/*