From 0772a48c29810e0b6c33fa90f603990981b10a35 Mon Sep 17 00:00:00 2001 From: RaphProductions <81994075+RaphProductions@users.noreply.github.com> Date: Tue, 13 May 2025 11:24:20 +0200 Subject: [PATCH] kmain - fix a missing include --- kernel/src/main.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/kernel/src/main.c b/kernel/src/main.c index 4e122bd..c1a7d5c 100644 --- a/kernel/src/main.c +++ b/kernel/src/main.c @@ -24,7 +24,6 @@ #include #include #include -#include __attribute__(( used, section(".limine_requests"))) static volatile LIMINE_BASE_REVISION(3); @@ -91,14 +90,9 @@ void kmain(void) { pit_init(1000); sched_init(); - vfs_init(); - if (hellofs_init() < 0) { - log("kernel - Failed to initialize HelloFS\n"); - } else { - log("kernel - HelloFS initialized successfully\n"); - } + //vfs_init(); + - panic("No working initialization program found. (This is normal due to " "Soaplin's current state, so please do not report this as a bug)");