Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / mvmeppc / include / bootinfo.h
blob637112b478a06200f10cb518ad5ae16ef854c84d
1 /* $NetBSD: bootinfo.h,v 1.1.20.3 2004/09/21 13:19:17 skrll Exp $ */
3 #ifndef _MVMEPPC_BOOTINFO
4 #define _MVMEPPC_BOOTINFO
6 #define BOOTLINE_LEN 32
7 #define CONSOLEDEV_LEN 16
9 struct mvmeppc_bootinfo {
10 u_int32_t bi_boothowto;
11 u_int32_t bi_bootaddr;
12 u_int16_t bi_bootclun;
13 u_int16_t bi_bootdlun;
14 char bi_bootline[BOOTLINE_LEN];
15 char bi_consoledev[CONSOLEDEV_LEN];
16 u_int32_t bi_consoleaddr;
17 u_int32_t bi_consolechan;
18 u_int32_t bi_consolespeed;
19 u_int32_t bi_consolecflag;
20 u_int16_t bi_modelnumber;
21 u_int32_t bi_memsize;
22 u_int32_t bi_mpuspeed;
23 u_int32_t bi_busspeed;
24 u_int32_t bi_clocktps;
25 } __attribute__((packed));
27 #ifdef _KERNEL
28 extern struct mvmeppc_bootinfo bootinfo;
29 #endif
31 #endif /* _MVMEPPC_BOOTINFO */