diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1999-09-12 19:44:05 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1999-09-12 19:44:05 +0000 |
commit | 32244ca4856ee717e790f916e1bd1de8d9c56519 (patch) | |
tree | 6a7282ff12f33be3faf63824d43b2172adecf93e /sys/arch/i386/include | |
parent | 32a51369368a4f765e6e4ea2d3e323b3d36ee4d8 (diff) |
Fix rootdev handling, use disk checksums to find the device we were booted
from. Hopefully this will fix all the hangs/panics where the root device
was not found.
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r-- | sys/arch/i386/include/cpu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h index aa7e25d5f86..3cea1adab7d 100644 --- a/sys/arch/i386/include/cpu.h +++ b/sys/arch/i386/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.27 1999/07/06 07:59:54 deraadt Exp $ */ +/* $OpenBSD: cpu.h,v 1.28 1999/09/12 19:44:04 weingart Exp $ */ /* $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $ */ /*- @@ -175,6 +175,9 @@ void fix_f00f __P((void)); /* autoconf.c */ void configure __P((void)); +/* dkcsum.c */ +void dkcsumattach __P((void)); + /* machdep.c */ void delay __P((int)); void dumpconf __P((void)); |