kmain - fix a missing include

This commit is contained in:
RaphProductions 2025-05-13 11:24:20 +02:00
parent 6a77b066e8
commit 0772a48c29

View file

@ -24,7 +24,6 @@
#include <sys/log.h> #include <sys/log.h>
#include <sys/printf.h> #include <sys/printf.h>
#include <fs/vfs.h> #include <fs/vfs.h>
#include <fs/hellofs.h>
__attribute__(( __attribute__((
used, section(".limine_requests"))) static volatile LIMINE_BASE_REVISION(3); used, section(".limine_requests"))) static volatile LIMINE_BASE_REVISION(3);
@ -91,14 +90,9 @@ void kmain(void) {
pit_init(1000); pit_init(1000);
sched_init(); sched_init();
vfs_init(); //vfs_init();
if (hellofs_init() < 0) {
log("kernel - Failed to initialize HelloFS\n");
} else {
log("kernel - HelloFS initialized successfully\n");
}
panic("No working initialization program found. (This is normal due to " panic("No working initialization program found. (This is normal due to "
"Soaplin's current state, so please do not report this as a bug)"); "Soaplin's current state, so please do not report this as a bug)");