diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-25 15:00:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-25 15:00:24 +0000 |
commit | d319a08799295a67e35256e2d64747c66d1ae575 (patch) | |
tree | 62a3dbb7b468028f1796644026b30ba64a54bd48 /sys/arch/alpha/include | |
parent | ff3f064107f9b8aa872ca0a5986c2d7ec1ea1e24 (diff) |
Pass boothowto from bootblock to kernel
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r-- | sys/arch/alpha/include/autoconf.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/autoconf.h b/sys/arch/alpha/include/autoconf.h index 5bfbd0f5f95..c0448bcfa04 100644 --- a/sys/arch/alpha/include/autoconf.h +++ b/sys/arch/alpha/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.12 2001/09/01 05:48:18 jason Exp $ */ +/* $OpenBSD: autoconf.h,v 1.13 2020/05/25 15:00:23 deraadt Exp $ */ /* $NetBSD: autoconf.h,v 1.19 2000/06/08 03:10:06 thorpej Exp $ */ /* @@ -76,7 +76,8 @@ struct bootinfo_v1 { int (*cngetc)(void); /* 160: console getc pointer */ void (*cnputc)(int); /* 168: console putc pointer */ void (*cnpollc)(int); /* 176: console pollc pointer */ - u_long pad[9]; /* 184: rsvd for future use */ + long howto; /* 184: boothowto flags */ + u_long pad[8]; /* 192: rsvd for future use */ /* 256: total size */ }; |