Searched refs:bootinfo (Results 1 - 25 of 246) sorted by relevance

12345678910

/netbsd-6-1-5-RELEASE/sys/arch/emips/stand/common/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.2 1999/11/27 03:06:56 simonb Exp $ */
39 #include <machine/bootinfo.h>
43 extern char *bootinfo;
/netbsd-6-1-5-RELEASE/sys/arch/mvmeppc/stand/libsa/
H A Dlibsa.h43 extern struct mvmeppc_bootinfo bootinfo;
/netbsd-6-1-5-RELEASE/sys/arch/hpcarm/include/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.1 2001/02/23 03:48:14 ichiro Exp $ */
3 #include <hpc/include/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/hpcmips/include/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.4 2001/01/28 02:52:37 uch Exp $ */
3 #include <hpc/include/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dbootinfo.h3 #include <x86/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/mmeye/stand/boot/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.5 2008/04/28 20:23:16 martin Exp $ */
32 #include <machine/bootinfo.h>
H A Dbootinfo.c1 /* $NetBSD: bootinfo.c,v 1.7 2010/01/10 09:34:45 tsutsui Exp $ */
37 #include "bootinfo.h"
39 static char *bootinfo = NULL; variable
49 if ((bootinfo = (char *)alloc(BOOTINFO_SIZE)) != NULL) {
50 bi = (struct btinfo_common *)bootinfo;
52 bi_next = bootinfo;
59 return bootinfo;
69 if (bootinfo != NULL) {
/netbsd-6-1-5-RELEASE/sys/arch/cobalt/stand/boot/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.4 2007/10/17 19:54:09 garbled Exp $ */
32 #include <machine/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/lib/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.8 2005/12/11 12:17:48 christos Exp $ */
29 #include <machine/bootinfo.h>
31 struct bootinfo { struct
36 extern struct bootinfo *bootinfo;
38 #define BI_ALLOC(max) (bootinfo = alloc(sizeof(struct bootinfo) \
42 #define BI_FREE() dealloc(bootinfo, 0)
H A Dbootinfo.c1 /* $NetBSD: bootinfo.c,v 1.3 2005/12/11 12:17:48 christos Exp $ */
33 #include "bootinfo.h"
35 struct bootinfo *bootinfo; variable in typeref:struct:bootinfo
43 if (bootinfo)
44 bootinfo->entry[bootinfo->nentries++] = vtophys(what);
/netbsd-6-1-5-RELEASE/sys/arch/zaurus/stand/zboot/
H A Dbootinfo.c30 #include "bootinfo.h"
32 struct btinfo *bootinfo; variable in typeref:struct:btinfo
40 for (i = 0; i < bootinfo->nentries; i++) {
41 btinfo = (struct btinfo_common *)(bootinfo->entry[i]);
57 if (bootinfo) {
60 idx = bootinfo->nentries++;
62 bootinfo->entry[idx] = (u_long)what;
72 if (bootinfo) {
75 for (i = idx + 1; i < bootinfo->nentries; i++) {
76 bootinfo
[all...]
H A Dbootinfo.h32 #include <machine/bootinfo.h>
39 extern struct btinfo *bootinfo;
41 #define BI_ALLOC(max) (bootinfo = ALLOC(sizeof(struct btinfo) \
45 #define BI_FREE() DEALLOC(bootinfo, 0)
/netbsd-6-1-5-RELEASE/sys/arch/pmax/stand/common/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.3 2008/04/28 20:23:31 martin Exp $ */
32 #include <machine/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/sgimips/stand/common/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.3 2008/01/26 14:35:25 tsutsui Exp $ */
32 #include <machine/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/hpcsh/include/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.6 2002/02/01 18:16:06 uch Exp $ */
3 #include <hpc/include/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/mipsco/stand/common/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.2 2008/04/28 20:23:29 martin Exp $ */
32 #include <machine/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/hp700/stand/boot/
H A Dbootinfo.c1 /* $NetBSD: bootinfo.c,v 1.1 2008/02/03 12:09:41 skrll Exp $ */
37 #include "bootinfo.h"
39 struct bootinfo bootinfo; variable in typeref:struct:bootinfo
46 memset(&bootinfo, 0, sizeof(bootinfo));
58 memcpy(&bootinfo.bi_data[bootinfo.bi_offset], what, size);
60 bootinfo.bi_offset += what->len;
61 bootinfo
[all...]
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.1 2008/02/03 12:09:41 skrll Exp $ */
32 #include <machine/bootinfo.h>
40 struct bootinfo { struct
44 /* Raw data of bootinfo entries. The first one (if any) is
51 extern struct bootinfo bootinfo;
/netbsd-6-1-5-RELEASE/sys/arch/arc/stand/boot/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.3 2006/07/22 18:15:06 tsutsui Exp $ */
32 #include <machine/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/ofppc/stand/
H A DMakefile3 SUBDIR= ofwboot bootinfo
/netbsd-6-1-5-RELEASE/sys/arch/landisk/stand/boot/
H A Dbootinfo.c32 #include "bootinfo.h"
34 struct btinfo *bootinfo; variable in typeref:struct:btinfo
43 if (bootinfo) {
44 bootinfo->entry[bootinfo->nentries++] = (u_long)what;
H A Dbootinfo.h32 #include <machine/bootinfo.h>
39 extern struct btinfo *bootinfo;
41 #define BI_ALLOC(max) (bootinfo = ALLOC(sizeof(struct btinfo) \
45 #define BI_FREE() DEALLOC(bootinfo, 0)
/netbsd-6-1-5-RELEASE/sys/arch/amd64/include/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.2 2003/02/26 21:29:34 fvdl Exp $ */
6 #include <x86/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/arch/sparc/stand/boot/
H A Dbootinfo.h1 /* $NetBSD: bootinfo.h,v 1.2 2006/07/13 20:03:34 uwe Exp $ */
32 #include <machine/bootinfo.h>
/netbsd-6-1-5-RELEASE/sys/dev/
H A Dkloader.h33 struct bootinfo { struct
37 #include <machine/bootinfo.h>
86 struct bootinfo bootinfo; member in struct:kloader_bootinfo
110 struct bootinfo *, int);

Completed in 327 milliseconds

12345678910