summaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2004-02-09 20:39:26 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2004-02-09 20:39:26 +0000
commit0b810b0ea1e6c8d8c1ee03a99dff13623af8cf41 (patch)
treeb3ed7bed669b152b91124bb2b8270447d81db733 /sys/arch/amd64
parentccd9d14287d4da7bebfd80c43655864a9561ca45 (diff)
init the clock before autoconf start for delay() to be truly usable; i moved it to after while debugging clocks in the early days
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/autoconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/autoconf.c b/sys/arch/amd64/amd64/autoconf.c
index c35e7a2a3da..21a028d6f78 100644
--- a/sys/arch/amd64/amd64/autoconf.c
+++ b/sys/arch/amd64/amd64/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.3 2004/02/08 03:15:04 deraadt Exp $ */
+/* $OpenBSD: autoconf.c,v 1.4 2004/02/09 20:39:25 mickey Exp $ */
/* $NetBSD: autoconf.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */
/*-
@@ -117,11 +117,11 @@ cpu_configure(void)
x86_64_proc0_tss_ldt_init();
+ startrtclock();
+
if (config_rootfound("mainbus", NULL) == NULL)
panic("configure: mainbus not configured");
- startrtclock();
-
intr_printconfig();
#if NIOAPIC > 0