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

123

/freebsd-11-stable/sys/pc98/include/
H A Dbootinfo.h6 #include <i386/bootinfo.h>
/freebsd-11-stable/stand/mips/beri/loader/
H A Dexec.c37 #include <machine/bootinfo.h>
55 * bootinfo that we will pass onto the kernel; some fields derived from
58 struct bootinfo bootinfo; variable in typeref:struct:bootinfo
101 * Configure bootinfo for the loaded kernel. Some values are
102 * inherited from the bootinfo passed to us by boot2 (e.g., DTB
105 bzero(&bootinfo, sizeof(bootinfo));
106 bootinfo.bi_version = BOOTINFO_VERSION;
107 bootinfo
[all...]
H A Dloader.h56 extern struct bootinfo boot2_bootinfo;
H A Dmain.c38 #include <machine/bootinfo.h>
51 static void extract_currdev(struct bootinfo *);
101 struct bootinfo boot2_bootinfo;
104 main(int argc, char *argv[], char *envv[], struct bootinfo *bootinfop)
155 extract_currdev(struct bootinfo *bootinfop)
/freebsd-11-stable/sys/mips/include/
H A Dbootinfo.h51 * A zero bootinfo field often means that there is no info available.
55 struct bootinfo { struct
56 /* bootinfo meta-data. */
60 /* bootinfo contents. */
82 extern struct bootinfo bootinfo;
/freebsd-11-stable/release/powerpc/
H A Dgenerate-hfs.sh31 cat > bootinfo.txt << EOF
35 <VERSION> $FreeBSD: head/stand/powerpc/boot1.chrp/bootinfo.txt 184490 2008-10
49 hcopy bootinfo.txt :bootinfo.txt
51 hattrib -c chrp -t tbxi bootinfo.txt
54 rm bootinfo.txt
/freebsd-11-stable/stand/powerpc/boot1.chrp/
H A Dgenerate-hfs.sh33 echo 'Bootinfo START' | dd of=bootinfo.txt.tmp cbs=$CHRPBOOT_SIZE count=1 conv=block
37 hcopy bootinfo.txt.tmp :bootinfo.txt
38 hattrib -c chrp -t tbxi bootinfo.txt
41 rm bootinfo.txt.tmp
H A DMakefile22 boot1.hfs: boot1.elf bootinfo.txt
28 ${DD} if=${.CURDIR}/bootinfo.txt of=${.TARGET} seek=${BOOTINFO_OFFSET} \
/freebsd-11-stable/sys/powerpc/booke/
H A Dplatform_bare.c45 extern uint32_t *bootinfo;
97 if (bootinfo != NULL) {
98 if (bootinfo[0] == 1) {
100 ticks = bootinfo[3] >> 3;
103 ticks = bootinfo[5] >> 3;
/freebsd-11-stable/stand/userboot/userboot/
H A Dlibuserboot.h48 struct bootinfo;
50 extern int bi_load(struct bootinfo *, struct preloaded_file *);
/freebsd-11-stable/sys/i386/include/
H A Dbootinfo.h44 * A zero bootinfo field often means that there is no info available.
48 struct bootinfo { struct
78 extern struct bootinfo bootinfo;
/freebsd-11-stable/sys/x86/x86/
H A Dautoconf.c69 #include <machine/bootinfo.h>
135 bios_geom = bootinfo.bi_bios_geom[i];
155 printf(" %d accounted for\n", bootinfo.bi_n_bios_used);
/freebsd-11-stable/stand/efi/loader/arch/i386/
H A Defimd.c36 #include <machine/bootinfo.h>
51 int ldr_bootinfo(struct bootinfo *, uint64_t *);
62 ldr_bootinfo(struct bootinfo *bi, uint64_t *bi_addr)
82 bisz = (sizeof(struct bootinfo) + 0x0f) & ~0x0f;
85 * Allocate enough pages to hold the bootinfo block and the memory
107 * Read the memory map and stash it after bootinfo. Align the
108 * memory map on a 16-byte boundary (the bootinfo block is page
H A Delf32_freebsd.c34 #include <machine/bootinfo.h>
/freebsd-11-stable/stand/i386/isoboot/
H A Disoboot.c24 #include <machine/bootinfo.h>
86 static struct bootinfo bootinfo; variable in typeref:struct:bootinfo
241 bootinfo.bi_version = BOOTINFO_VERSION;
242 bootinfo.bi_size = sizeof(bootinfo);
243 bootinfo.bi_basemem = bios_basemem / 1024;
244 bootinfo.bi_extmem = bios_extmem / 1024;
245 bootinfo.bi_memsizes_valid++;
246 bootinfo
[all...]
/freebsd-11-stable/stand/pc98/loader/
H A Dmain.c38 #include <machine/bootinfo.h>
50 CTASSERT(offsetof(struct bootargs, bootinfo) == BA_BOOTINFO);
52 CTASSERT(offsetof(struct bootinfo, bi_size) == BI_SIZE);
59 static struct bootinfo *initial_bootinfo;
101 initial_bootinfo = kargs->bootinfo ? (struct bootinfo *)PTOV(kargs->bootinfo) : NULL;
154 if (kargs->bootinfo == 0) {
214 if (kargs->bootinfo == 0) {
/freebsd-11-stable/stand/mips/beri/boot2/
H A Dboot2.c54 #include <machine/bootinfo.h>
137 struct bootinfo bootinfo; variable in typeref:struct:bootinfo
220 bootinfo.bi_version = BOOTINFO_VERSION;
221 bootinfo.bi_size = sizeof(bootinfo);
284 bootinfo.bi_kernelname = (bi_ptr_t)kname;
285 bootinfo.bi_boot2opts = opts & RBX_MASK;
286 bootinfo.bi_boot_dev_type = dsk.type;
287 bootinfo
[all...]
/freebsd-11-stable/stand/i386/loader/
H A Dmain.c38 #include <machine/bootinfo.h>
56 CTASSERT(offsetof(struct bootargs, bootinfo) == BA_BOOTINFO);
58 CTASSERT(offsetof(struct bootinfo, bi_size) == BI_SIZE);
65 static struct bootinfo *initial_bootinfo;
98 initial_bootinfo = kargs->bootinfo ? (struct bootinfo *)PTOV(kargs->bootinfo) : NULL;
152 if (kargs->bootinfo == 0) {
270 if (kargs->bootinfo == 0) {
/freebsd-11-stable/stand/i386/gptboot/
H A Dgptboot.c24 #include <machine/bootinfo.h>
86 static struct bootinfo bootinfo; variable in typeref:struct:bootinfo
290 bootinfo.bi_version = BOOTINFO_VERSION;
291 bootinfo.bi_size = sizeof(bootinfo);
292 bootinfo.bi_basemem = bios_basemem / 1024;
293 bootinfo.bi_extmem = bios_extmem / 1024;
294 bootinfo.bi_memsizes_valid++;
295 bootinfo
[all...]
/freebsd-11-stable/sys/i386/i386/
H A Dgenassym.c59 #include <machine/bootinfo.h>
196 ASSYM(BOOTINFO_SIZE, sizeof(struct bootinfo));
197 ASSYM(BI_VERSION, offsetof(struct bootinfo, bi_version));
198 ASSYM(BI_KERNELNAME, offsetof(struct bootinfo, bi_kernelname));
199 ASSYM(BI_NFS_DISKLESS, offsetof(struct bootinfo, bi_nfs_diskless));
200 ASSYM(BI_ENDCOMMON, offsetof(struct bootinfo, bi_endcommon));
202 ASSYM(BI_SIZE, offsetof(struct bootinfo, bi_size));
203 ASSYM(BI_SYMTAB, offsetof(struct bootinfo, bi_symtab));
204 ASSYM(BI_ESYMTAB, offsetof(struct bootinfo, bi_esymtab));
205 ASSYM(BI_KERNEND, offsetof(struct bootinfo, bi_kernen
[all...]
/freebsd-11-stable/stand/pc98/boot2/
H A Dboot2.c26 #include <machine/bootinfo.h>
108 static struct bootinfo bootinfo; variable in typeref:struct:bootinfo
348 bootinfo.bi_bios_geom[i] = bd_getbigeom(i);
350 bootinfo.bi_version = BOOTINFO_VERSION;
351 bootinfo.bi_size = sizeof(bootinfo);
463 bootinfo.bi_symtab = VTOP(p);
479 bootinfo.bi_esymtab = VTOP(p);
485 bootinfo
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dmachdep.c82 #include <machine/bootinfo.h>
172 struct bootinfo bootinfo; variable in typeref:struct:bootinfo
260 SYSCTL_STRUCT(_machdep, OID_AUTO, bootinfo, CTLFLAG_RD, &bootinfo,
261 bootinfo, "Bootinfo struct: kernel filename, BIOS harddisk geometry, etc");
/freebsd-11-stable/stand/i386/boot2/
H A Dboot2.c25 #include <machine/bootinfo.h>
106 static struct bootinfo bootinfo; variable in typeref:struct:bootinfo
215 bootinfo.bi_version = BOOTINFO_VERSION;
216 bootinfo.bi_size = sizeof(bootinfo);
328 bootinfo.bi_symtab = VTOP(p);
344 bootinfo.bi_esymtab = VTOP(p);
350 bootinfo.bi_kernelname = VTOP(kname);
351 bootinfo
[all...]
/freebsd-11-stable/sys/sys/
H A Dvtoc.h79 uint32_t bootinfo[3]; member in struct:vtoc8
/freebsd-11-stable/stand/i386/libi386/
H A Delf32_freebsd.c34 #include <machine/bootinfo.h>

Completed in 144 milliseconds

123