diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-10-18 00:33:17 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-10-18 00:33:17 +0000 |
commit | 471616d7beb9d52cf9822c2da7178f9b1e595954 (patch) | |
tree | 4adbd002eeb842d14d212078646f837175381216 /sys/arch/i386/stand/libsa/libsa.h | |
parent | 885625daa00685cbe93848f489778e853656803c (diff) |
Copy in bios_diskinfo array from /boot space.
Add length field for checksum to same.
Start of making /boot deduce bsd dev_t for
all BIOS drives.
Diffstat (limited to 'sys/arch/i386/stand/libsa/libsa.h')
-rw-r--r-- | sys/arch/i386/stand/libsa/libsa.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h index e423af1810b..01b764dfc0b 100644 --- a/sys/arch/i386/stand/libsa/libsa.h +++ b/sys/arch/i386/stand/libsa/libsa.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libsa.h,v 1.19 1997/10/17 18:46:57 weingart Exp $ */ +/* $OpenBSD: libsa.h,v 1.20 1997/10/18 00:33:16 weingart Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -33,17 +33,23 @@ */ #include <lib/libsa/stand.h> +#include <machine/biosvar.h> void gateA20 __P((int)); + void smpprobe __P((void)); void memprobe __P((void)); void diskprobe __P((void)); void apmprobe __P((void)); + void devboot __P((dev_t, char *)); void *alloca __P((size_t)); void machdep __P((void)); void time_print __P((void)); +bios_diskinfo_t *diskfind __P((int)); + + extern const char bdevs[][4]; extern const int nbdevs; extern int bootdev; /* XXX pass through the global to exec_i386 */ |