diff options
author | 2006-06-14 19:46:54 +0000 | |
---|---|---|
committer | 2006-06-14 19:46:54 +0000 | |
commit | 028d39ee14af59fec32d602363829cf60bc799ce (patch) | |
tree | cbf7ceae5878435aa7d6b22308acceda5d837a5f | |
parent | * move mixer functions from azalia.c to azalia_codec.c, and (diff) | |
download | wireguard-openbsd-028d39ee14af59fec32d602363829cf60bc799ce.tar.xz wireguard-openbsd-028d39ee14af59fec32d602363829cf60bc799ce.zip |
Missed a part of the kvm86 commit, if option KVM86 is defined it would be
a good idea to actually call the init function, this was lost it was part of
the diff ok toby@, mickey@
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index cef6ce0ca4b..acb029af883 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.63 2006/06/13 03:01:04 gwk Exp $ */ +/* $OpenBSD: autoconf.c,v 1.64 2006/06/14 19:46:54 gwk Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -66,6 +66,7 @@ #include <machine/cpu.h> #include <machine/gdt.h> #include <machine/biosvar.h> +#include <machine/kvm86.h> #include <dev/cons.h> @@ -119,6 +120,10 @@ cpu_configure() /* Set up proc0's TSS and LDT */ i386_proc0_tss_ldt_init(); +#ifdef KVM86 + kvm86_init(); +#endif + #ifndef SMALL_KERNEL pmap_bootstrap_pae(); #endif |