fix PXE build with multiboot. GRUB supports netboot btw, could be interesting to explore... but the pxe shell doesn't check for the info yet.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32289 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
996aa11b17
commit
2807c5413f
@ -127,7 +127,7 @@ _start(void)
|
||||
console_init();
|
||||
cpu_init();
|
||||
mmu_init();
|
||||
//parse_multiboot_commandline(&args);
|
||||
parse_multiboot_commandline(&args);
|
||||
|
||||
// wait a bit to give the user the opportunity to press a key
|
||||
spin(750000);
|
||||
@ -142,7 +142,7 @@ _start(void)
|
||||
acpi_init();
|
||||
smp_init();
|
||||
//hpet_init(); // TODO: Not yet
|
||||
//dump_multiboot_info();
|
||||
dump_multiboot_info();
|
||||
main(&args);
|
||||
}
|
||||
|
||||
|
@ -26,6 +26,7 @@ local bios_ia32_src =
|
||||
keyboard.cpp
|
||||
menu.cpp
|
||||
mmu.cpp
|
||||
multiboot.cpp
|
||||
cpu.cpp
|
||||
acpi.cpp
|
||||
smp.cpp
|
||||
|
@ -200,6 +200,9 @@ pm_gdt_descriptor:
|
||||
/* global data table */
|
||||
.balign 8
|
||||
|
||||
GLOBAL(gMultiBootInfo):
|
||||
.long 0
|
||||
|
||||
GLOBAL(gBootPartitionOffset):
|
||||
.long 0xffffffff
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user