use boot_ctx

This commit is contained in:
2026-01-04 11:18:20 +01:00
parent d9dfd4c749
commit 0f72987bc1
2 changed files with 9 additions and 9 deletions

View File

@@ -53,8 +53,6 @@ static volatile LIMINE_REQUESTS_START_MARKER;
__attribute__((used, section(".limine_requests_end")))
static volatile LIMINE_REQUESTS_END_MARKER;
struct limine_framebuffer* framebuffer;
// Panic (should dump registers etc. in the future)
void hcf()
{
@@ -64,6 +62,8 @@ void hcf()
}
}
const char* splash = "pepperOS version "PEPPEROS_VERSION_MAJOR"."PEPPEROS_VERSION_MINOR"."PEPPEROS_VERSION_PATCH"\n";
struct boot_context boot_ctx;
// This is our entry point
@@ -77,9 +77,6 @@ void kmain()
boot_ctx.hhdm = hhdm_request.response ? hhdm_request.response : NULL;
boot_ctx.kaddr = kerneladdr_request.response ? kerneladdr_request.response : NULL;
// Get the first framebuffer from the response
framebuffer = framebuffer_request.response->framebuffers[0];
serial_init();
memmap_display(boot_ctx.mmap);
@@ -109,7 +106,7 @@ void kmain()
keyboard_init(FR);
term_init();
kputs("pepperOS version "PEPPEROS_VERSION_MAJOR"."PEPPEROS_VERSION_MINOR"."PEPPEROS_VERSION_PATCH"\n");
kputs(splash);
hcf();
}