From 078f3f586230695a5271ce3385f5dc022f589745 Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 9 Nov 2022 16:07:49 +0100 Subject: [PATCH] Kernel: Add a remainder to refactor the initial ramdisk code --- kernel/src/fs/InitRD.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/src/fs/InitRD.cpp b/kernel/src/fs/InitRD.cpp index 8de3b957..6235f91a 100644 --- a/kernel/src/fs/InitRD.cpp +++ b/kernel/src/fs/InitRD.cpp @@ -12,6 +12,8 @@ #include "std/string.h" #include "utils/StringParsing.h" +// FIXME: A lot of this code was written before the VFS was created and thus is quite messy and assumes other stuff. + extern BOOTBOOT bootboot; static void* initrd_base;