From e0abbebf36d7d54d89a5e0294331c2279fe881ad Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Fri, 18 Nov 1994 05:26:52 +0000 Subject: [PATCH] Declare the bootinfo structure in the kernel. --- sys/i386/include/bootinfo.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys/i386/include/bootinfo.h b/sys/i386/include/bootinfo.h index 1dd1958877dc..b86a034715f7 100644 --- a/sys/i386/include/bootinfo.h +++ b/sys/i386/include/bootinfo.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootinfo.h,v 1.1 1994/10/06 09:25:25 rgrimes Exp $ + * $Id: bootinfo.h,v 1.2 1994/11/18 05:02:43 phk Exp $ */ #ifndef _MACHINE_BOOTINFO_H_ @@ -44,4 +44,7 @@ struct bootinfo_t { unsigned long bios_geom[N_BIOS_GEOM]; }; +#ifdef KERNEL +extern struct bootinfo_t bootinfo; +#endif #endif /* _MACHINE_BOOTINFO_H_ */