mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:57:45 +00:00
Kernel/x86: Bake the Prekernel and the Kernel into one image
The new baked image is a Prekernel and a Kernel baked together now, so essentially we no longer need to pass the Prekernel as -kernel and the actual kernel image as -initrd to QEMU, leaving the option to pass an actual initrd or initramfs module later on with multiboot.
This commit is contained in:
parent
2a1e58f8cc
commit
897c4e5145
10 changed files with 81 additions and 50 deletions
|
@ -41,8 +41,11 @@ struct [[gnu::packed]] BootInfo {
|
|||
u32 multiboot_flags;
|
||||
u64 multiboot_memory_map;
|
||||
u32 multiboot_memory_map_count;
|
||||
u64 multiboot_modules;
|
||||
u64 multiboot_modules_physical_ptr;
|
||||
u32 multiboot_modules_count;
|
||||
u32 multiboot_module_ramdisk_physical_start;
|
||||
u32 multiboot_module_ramdisk_physical_end;
|
||||
u32 multiboot_module_ramdisk_physical_string_addr;
|
||||
u64 multiboot_framebuffer_addr;
|
||||
u32 multiboot_framebuffer_pitch;
|
||||
u32 multiboot_framebuffer_width;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue