summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand/libsa/machdep.c
diff options
context:
space:
mode:
authorTobias Weingartner <weingart@cvs.openbsd.org>1998-02-24 22:06:57 +0000
committerTobias Weingartner <weingart@cvs.openbsd.org>1998-02-24 22:06:57 +0000
commit0bb9b7b7dca2172711ad9e6d3a1f6326861f5583 (patch)
tree7fc87e984297ab2cbb4798168fc77310dcb716f9 /sys/arch/i386/stand/libsa/machdep.c
parent56d872e11254cc8a8ca03e06d9b6ae78fb8a078a (diff)
Changes/updates to /boot stuff. More to come.
Fixes many divide by zero and pointer bugs.
Diffstat (limited to 'sys/arch/i386/stand/libsa/machdep.c')
-rw-r--r--sys/arch/i386/stand/libsa/machdep.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/libsa/machdep.c b/sys/arch/i386/stand/libsa/machdep.c
index 366c04e6574..5e4aec98b31 100644
--- a/sys/arch/i386/stand/libsa/machdep.c
+++ b/sys/arch/i386/stand/libsa/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.22 1997/11/30 21:51:46 mickey Exp $ */
+/* $OpenBSD: machdep.c,v 1.23 1998/02/24 22:06:55 weingart Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
@@ -55,11 +55,13 @@ machdep()
cninit(); CKPT('3');
#ifndef _TEST
memprobe(); CKPT('4');
- diskprobe(); CKPT('6');
+ diskprobe(); CKPT('5');
printf("bios:");
- apmprobe(); CKPT('7');
- printf("\n");
+ apmprobe(); CKPT('6');
+ pciprobe(); CKPT('7');
+ smpprobe(); CKPT('8');
+ printf("\n\n");
#endif
- CKPT('9');
+ CKPT('Z');
}