diff options
author | Marvin Borner | 2020-04-14 23:42:03 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-14 23:42:03 +0200 |
commit | b11a2a876e7bd14078d26e12eab62db997a4dc76 (patch) | |
tree | f2ba2781d3d059810e3a0ccb04f637444c448e5e /src/kernel/kernel.c | |
parent | 4391a5a374b7b75ca8fa69d35dcb5c5f9ad7f765 (diff) |
Switched to grub
This really isn't what I wanted because grub is very big and bloaty but
my own bootloader was very poorly written and I really want to implement
a filesystem like ext2 which wouldn't work with my own bootloader.
Furthermore this commit fixes many small issues including the one
occurring due to the statically linked user binary (I just removed
the linking for now).
Diffstat (limited to 'src/kernel/kernel.c')
-rw-r--r-- | src/kernel/kernel.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c index 80439bc..d06ea4d 100644 --- a/src/kernel/kernel.c +++ b/src/kernel/kernel.c @@ -1,3 +1,4 @@ +#include <kernel/multiboot.h> #include <kernel/graphics/vesa.h> #include <kernel/gdt/gdt.h> #include <kernel/interrupts/interrupts.h> @@ -15,20 +16,24 @@ #include <kernel/fs/elf.h> #include <kernel/lib/stdio.h> -void kernel_main(uint32_t initial_stack) +void kernel_main(uint32_t magic, multiboot_info_t *grub_header) { - initial_esp = initial_stack; + if (magic != MULTIBOOT_BOOTLOADER_MAGIC) { + vga_log("Invalid boot magic!"); + halt_loop(); + } vga_log("Installing basic features of Melvix..."); // Install features - memory_init(); gdt_install(); init_serial(); acpi_install(); idt_install(); isrs_install(); irq_install(); + memory_init(grub_header); paging_install(); + memory_print(); load_binaries(); set_optimal_resolution(); @@ -49,6 +54,7 @@ void kernel_main(uint32_t initial_stack) // Print total memory info("Total memory found: %dMiB", (memory_get_all() >> 10) + 1); + serial_printf("Total memory found: %dMiB", (memory_get_all() >> 10) + 1); #ifdef INSTALL_MELVIX #include <kernel/fs/install.h> @@ -57,12 +63,12 @@ void kernel_main(uint32_t initial_stack) install_melvix(); #endif - load_elf((char *)userspace); + // load_elf((char *)userspace); // syscalls_install(); // exec(userspace); - panic("This should NOT happen!"); + // panic("This should NOT happen!"); // asm ("div %0" :: "r"(0)); // Exception testing x/0 }
\ No newline at end of file |