diff options
author | bde <bde@FreeBSD.org> | 1995-01-25 20:05:03 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-01-25 20:05:03 +0000 |
commit | 72785518eb5f63d316d3ceae31c42e85e938a42c (patch) | |
tree | 74ae908b4b0e8318af9d2c86d38a5965b0d84d03 | |
parent | b987bbd15209f34502a60717db687921bab1ce21 (diff) | |
download | FreeBSD-src-72785518eb5f63d316d3ceae31c42e85e938a42c.zip FreeBSD-src-72785518eb5f63d316d3ceae31c42e85e938a42c.tar.gz |
Add flag `RB_BOOTINFO' that tells if the `struct bootinfo' passed by the
boot has a size field.
-rw-r--r-- | sys/sys/reboot.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/reboot.h b/sys/sys/reboot.h index f3cd91e..fbb7e6d 100644 --- a/sys/sys/reboot.h +++ b/sys/sys/reboot.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)reboot.h 8.1 (Berkeley) 6/2/93 - * $Id: reboot.h,v 1.7 1994/11/26 09:08:40 phk Exp $ + * $Id: reboot.h,v 1.8 1995/01/20 07:28:47 wpaul Exp $ */ #ifndef _SYS_REBOOT_H_ @@ -58,6 +58,8 @@ #define RB_VERBOSE 0x800 /* print all potentially useful info */ #define RB_SERIAL 0x1000 /* user serial port as console */ +#define RB_BOOTINFO 0x80000000 /* have `struct bootinfo *' arg */ + /* * Constants for converting boot-style device number to type, * adaptor (uba, mba, etc), unit number and partition number. |