diff --git a/Kernel/subsystem/linux/rootfs.cpp b/Kernel/subsystem/linux/init.cpp similarity index 88% rename from Kernel/subsystem/linux/rootfs.cpp rename to Kernel/subsystem/linux/init.cpp index dccc67c9..c2750856 100644 --- a/Kernel/subsystem/linux/rootfs.cpp +++ b/Kernel/subsystem/linux/init.cpp @@ -16,3 +16,12 @@ */ #include "../../kernel.h" + +namespace Subsystem::Linux +{ + bool Initialized = false; + + void InitializeSubSystem() + { + } +} diff --git a/Kernel/subsystem/windows/rootfs.cpp b/Kernel/subsystem/windows/init.cpp similarity index 87% rename from Kernel/subsystem/windows/rootfs.cpp rename to Kernel/subsystem/windows/init.cpp index dccc67c9..d6f071c2 100644 --- a/Kernel/subsystem/windows/rootfs.cpp +++ b/Kernel/subsystem/windows/init.cpp @@ -16,3 +16,12 @@ */ #include "../../kernel.h" + +namespace Subsystem::Windows +{ + bool Initialized = false; + + void InitializeSubSystem() + { + } +}