summaryrefslogtreecommitdiffstats
path: root/sys/i386/include/bootinfo.h
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-10-06 09:25:25 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-10-06 09:25:25 +0000
commitf60f3231556e762666c6e3bf8f1cc50afca42210 (patch)
treea42efc1a85d72ae79b13f939a78ddc73315890e9 /sys/i386/include/bootinfo.h
parent5ff3d9fc6c6b0dafbced34298a171ce745f00f3f (diff)
downloadFreeBSD-src-f60f3231556e762666c6e3bf8f1cc50afca42210.zip
FreeBSD-src-f60f3231556e762666c6e3bf8f1cc50afca42210.tar.gz
1. bootinfo.h defines the structure passed in to the kernel by the
new boot code.
Diffstat (limited to 'sys/i386/include/bootinfo.h')
-rw-r--r--sys/i386/include/bootinfo.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/sys/i386/include/bootinfo.h b/sys/i386/include/bootinfo.h
new file mode 100644
index 0000000..204bc88
--- /dev/null
+++ b/sys/i386/include/bootinfo.h
@@ -0,0 +1,44 @@
+/*-
+ * Copyright (C) 1994 by Rodney W. Grimes, Milwaukie, Oregon 97222
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer as
+ * the first lines of this file unmodified.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Rodney W. Grimes.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY RODNEY W. GRIMES ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL RODNEY W. GRIMES BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $Id$
+ */
+
+#ifndef _MACHINE_BOOTINFO_H_
+#define _MACHINE_BOOTINFO_H_
+
+struct bootinfo_t {
+ unsigned int version;
+ unsigned char *kernelname;
+ struct nfs_diskless *nfs_diskless;
+};
+
+#endif /* _MACHINE_BOOTINFO_H_ */
OpenPOWER on IntegriCloud