diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-10-17 15:03:29 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-10-17 15:03:29 +0000 |
commit | 41093f286d691912ac4dbf211375b21dbff49e4e (patch) | |
tree | 2921090c2b4c87b93ba68120400a50ef8a5cfec7 /sys/arch/i386/stand/libsa/libsa.h | |
parent | 82b80c5d2e1dea90de4bcb7b3dda8c4854d6564a (diff) |
Use BIOS to probe for memory map.
Probe for BIOS supported disks.
Use BIOS to get geometry for supported disks.
All in preparation to passing the whole thing
to the kernel.
Diffstat (limited to 'sys/arch/i386/stand/libsa/libsa.h')
-rw-r--r-- | sys/arch/i386/stand/libsa/libsa.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/stand/libsa/libsa.h b/sys/arch/i386/stand/libsa/libsa.h index 911a59e9cb8..15ac5f6d5ca 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.17 1997/09/17 17:56:10 mickey Exp $ */ +/* $OpenBSD: libsa.h,v 1.18 1997/10/17 15:03:26 weingart Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -35,7 +35,9 @@ #include <lib/libsa/stand.h> void gateA20 __P((int)); +void smpprobe __P((void)); void memprobe __P((void)); +void diskprobe __P((void)); void devboot __P((dev_t, char *)); void *alloca __P((size_t)); void machdep __P((void)); @@ -43,6 +45,7 @@ void time_print __P((void)); extern const char bdevs[][4]; extern const int nbdevs; +extern struct BIOS_MAP *memory_map; extern int bootdev; /* XXX pass through the global to exec_i386 */ extern u_int cnvmem, extmem; /* XXX global pass memprobe()->machdep_start() */ |