From b1a30059eddb03dd261f19fa50e2d6d2fc5337a6 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 7 Apr 2025 04:51:05 +0000 Subject: [PATCH] feat(kernel): add initial subsystem implementation files --- Kernel/subsystem/linux/{rootfs.cpp => init.cpp} | 9 +++++++++ Kernel/subsystem/windows/{rootfs.cpp => init.cpp} | 9 +++++++++ 2 files changed, 18 insertions(+) rename Kernel/subsystem/linux/{rootfs.cpp => init.cpp} (88%) rename Kernel/subsystem/windows/{rootfs.cpp => init.cpp} (87%) 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() + { + } +}