/src/share/man/man8/man8.x86/ |
Makefile | 4 MAN= boot.8 dosboot.8 boot_console.8 multiboot.8 pxeboot.8 mbr.8
|
/src/sys/arch/i386/stand/lib/ |
multiboot.S | 1 /* $NetBSD: multiboot.S,v 1.3 2019/09/13 02:19:46 manu Exp $ */ 89 * multiboot(entry, header, stack, magic) 92 ENTRY(multiboot) function
|
Makefile | 27 SRCS+= startprog.S multiboot.S
|
libi386.h | 42 void multiboot(physaddr_t, physaddr_t, physaddr_t, uint32_t); 76 /* multiboot */
|
exec_multiboot1.c | 32 #include <i386/multiboot.h> 203 multiboot(mbp->mbp_marks[MARK_ENTRY], vtophys(mbi),
|
exec_multiboot2.c | 1436 multiboot(entry, vtophys(mbi), 1589 * multiboot header fully supported 1605 printf("Unsupported multiboot address header\n"); 1624 printf("Unsupported multiboot relocatable header\n");
|
/src/sys/arch/i386/stand/efiboot/bootx64/ |
efibootx64.c | 89 multiboot(physaddr_t entry, physaddr_t header, physaddr_t sp, uint32_t magic) function in typeref:typename:void
|
/src/sys/arch/i386/stand/efiboot/bootia32/ |
efibootia32.c | 84 multiboot(physaddr_t entry, physaddr_t header, physaddr_t sp, uint32_t magic) function in typeref:typename:void
|
/src/sys/arch/i386/include/ |
Makefile | 18 math.h mcontext.h mutex.h mtrr.h multiboot.h multiboot2.h \
|
/src/sys/arch/i386/i386/ |
multiboot.c | 1 /* $NetBSD: multiboot.c,v 1.26 2019/10/18 01:38:28 manu Exp $ */ 33 __KERNEL_RCSID(0, "$NetBSD: multiboot.c,v 1.26 2019/10/18 01:38:28 manu Exp $"); 47 #include <machine/multiboot.h> 49 #if !defined(MULTIBOOT) 50 # error "MULTIBOOT not defined; this cannot happen." 85 * Copy of the Multiboot information structure passed to us by the boot 117 * Sets up the kernel if it was booted by a Multiboot-compliant boot 172 * Sets up the kernel if it was booted by a Multiboot-compliant boot 200 * Prints a summary of the information collected in the Multiboot 213 printf("multiboot: Information structure flags: 0x%08x\n" [all...] |
machdep.c | 146 #include <machine/multiboot.h> 418 #ifdef MULTIBOOT 1104 #if defined(MULTIBOOT)
|
locore.S | 157 #include <machine/multiboot.h> 366 #if defined(MULTIBOOT) 412 /* Check if we are being executed by a Multiboot-compliant boot 424 * Indeed, a multiboot-compliant boot loader executed us. We switch 425 * to the temporary stack, and copy the received Multiboot information 431 pushl %ebx /* Address of Multiboot information */ 584 * Reload multiboot info from target location 608 pushl %ebx /* Address of Multiboot information */ 612 #endif /* MULTIBOOT */ 1078 #if defined(MULTIBOOT) [all...] |