mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
Revert "Kernel/aarch64: Embed disk image into kernel binary"
This reverts commit 3b65fd64fc
.
This is no longer needed as we don't use the ramdisk anymore
Co-authored-by: Ollrogge <nils-ollrogge@outlook.de>
This commit is contained in:
parent
f3363c1088
commit
d09852642c
4 changed files with 3 additions and 18 deletions
|
@ -45,12 +45,6 @@ uintptr_t __stack_chk_guard;
|
|||
|
||||
READONLY_AFTER_INIT bool g_in_early_boot;
|
||||
|
||||
extern "C" const u32 disk_image_start;
|
||||
extern "C" const u32 disk_image_size;
|
||||
|
||||
multiboot_module_entry_t multiboot_copy_boot_modules_array[16];
|
||||
size_t multiboot_copy_boot_modules_count;
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
static void draw_logo(u8* framebuffer_data);
|
||||
|
@ -119,12 +113,6 @@ extern "C" [[noreturn]] void init()
|
|||
multiboot_memory_map = mmap;
|
||||
multiboot_memory_map_count = 1;
|
||||
|
||||
multiboot_flags = 0x4;
|
||||
multiboot_copy_boot_modules_count = 1;
|
||||
auto disk_image_start_physical_addr = ((FlatPtr)&disk_image_start - kernel_load_base);
|
||||
multiboot_copy_boot_modules_array[0].start = disk_image_start_physical_addr;
|
||||
multiboot_copy_boot_modules_array[0].end = disk_image_start_physical_addr + disk_image_size;
|
||||
|
||||
dbgln("Welcome to Serenity OS!");
|
||||
dbgln("Imagine this being your ideal operating system.");
|
||||
dbgln("Observed deviations from that ideal are shortcomings of your imagination.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue