Symbol: btinfo
sys/arch/bebox/bebox/machdep.c
106
initppc(u_long startkernel, u_long endkernel, u_int args, void *btinfo)
sys/arch/bebox/bebox/machdep.c
111
memcpy(bootinfo, btinfo, sizeof (bootinfo));
sys/arch/epoc32/epoc32/machdep.c
164
struct btinfo_common *btinfo = &bootinfo;
sys/arch/epoc32/epoc32/machdep.c
182
while (btinfo->type != BTINFO_NONE) {
sys/arch/epoc32/epoc32/machdep.c
183
switch (btinfo->type) {
sys/arch/epoc32/epoc32/machdep.c
185
model = (struct btinfo_model *)btinfo;
sys/arch/epoc32/epoc32/machdep.c
186
btinfo = &(model + 1)->common;
sys/arch/epoc32/epoc32/machdep.c
192
memory = (struct btinfo_memory *)btinfo;
sys/arch/epoc32/epoc32/machdep.c
193
btinfo = &(memory + 1)->common;
sys/arch/epoc32/epoc32/machdep.c
205
video = (struct btinfo_video *)btinfo;
sys/arch/epoc32/epoc32/machdep.c
206
btinfo = &(video + 1)->common;
sys/arch/epoc32/epoc32/machdep.c
212
args = (struct btinfo_bootargs *)btinfo;
sys/arch/epoc32/epoc32/machdep.c
213
btinfo = &(args + 1)->common;
sys/arch/epoc32/epoc32/machdep.c
223
btinfo = NEXT_BOOTINFO(btinfo);
sys/arch/evbppc/ev64260/machdep.c
198
initppc(u_int startkernel, u_int endkernel, u_int args, void *btinfo)
sys/arch/evbppc/nintendo/machdep.c
379
initppc(u_int startkernel, u_int endkernel, u_int args, void *btinfo)
sys/arch/evbppc/pmppc/machdep.c
163
initppc(u_int startkernel, u_int endkernel, u_int args, void *btinfo)
sys/arch/ibmnws/ibmnws/machdep.c
88
initppc(u_long startkernel, u_long endkernel, u_int args, void *btinfo)
sys/arch/landisk/stand/boot/bootinfo.c
34
struct btinfo *bootinfo;
sys/arch/landisk/stand/boot/bootinfo.h
39
extern struct btinfo *bootinfo;
sys/arch/landisk/stand/boot/bootinfo.h
41
#define BI_ALLOC(max) (bootinfo = ALLOC(sizeof(struct btinfo) \
sys/arch/mvmeppc/mvmeppc/machdep.c
109
initppc(u_long startkernel, u_long endkernel, void *btinfo)
sys/arch/mvmeppc/mvmeppc/machdep.c
114
memcpy(&bootinfo, btinfo, sizeof(bootinfo));
sys/arch/prep/prep/machdep.c
114
initppc(u_long startkernel, u_long endkernel, u_int args, void *btinfo)
sys/arch/prep/prep/machdep.c
120
memcpy(bootinfo, btinfo, sizeof(bootinfo));
sys/arch/rs6000/rs6000/machdep.c
203
initppc(u_long startkernel, u_long endkernel, u_int args, void *btinfo)
sys/arch/rs6000/rs6000/machdep.c
217
memcpy(bootinfo, btinfo, sizeof(bootinfo));
sys/arch/sandpoint/sandpoint/machdep.c
121
initppc(u_int startkernel, u_int endkernel, u_int args, void *btinfo)
sys/arch/sandpoint/sandpoint/machdep.c
124
struct btinfo_magic *bi_magic = btinfo;
sys/arch/sandpoint/sandpoint/machdep.c
130
if ((unsigned)btinfo != 0 && (unsigned)btinfo < startkernel
sys/arch/sandpoint/sandpoint/machdep.c
132
memcpy(bootinfo, btinfo, sizeof(bootinfo));
sys/arch/zaurus/stand/zboot/bootinfo.c
32
struct btinfo *bootinfo;
sys/arch/zaurus/stand/zboot/bootinfo.c
37
struct btinfo_common *btinfo;
sys/arch/zaurus/stand/zboot/bootinfo.c
41
btinfo = (struct btinfo_common *)(bootinfo->entry[i]);
sys/arch/zaurus/stand/zboot/bootinfo.c
42
if (btinfo->type == type) {
sys/arch/zaurus/stand/zboot/bootinfo.h
39
extern struct btinfo *bootinfo;
sys/arch/zaurus/stand/zboot/bootinfo.h
41
#define BI_ALLOC(max) (bootinfo = ALLOC(sizeof(struct btinfo) \