summaryrefslogtreecommitdiffhomepage
path: root/Private
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-01 09:20:27 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-01 09:20:27 +0100
commita9222cf9d73734457206f4f9692d699313678159 (patch)
tree6e40a6ae071eeba8e9b4adf8b805628bec426b4d /Private
parentfcc8bad0b5e0af4f1f68c96449ce086375cb4b81 (diff)
See below.
- Add Mount folder for external filesystems. - Fix Runtime Main init layout. Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private')
-rw-r--r--Private/Root/Mount/.gitkeep0
-rw-r--r--Private/Source/RuntimeMain.cxx4
2 files changed, 2 insertions, 2 deletions
diff --git a/Private/Root/Mount/.gitkeep b/Private/Root/Mount/.gitkeep
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/Private/Root/Mount/.gitkeep
diff --git a/Private/Source/RuntimeMain.cxx b/Private/Source/RuntimeMain.cxx
index 94f8ba67..02a7ce09 100644
--- a/Private/Source/RuntimeMain.cxx
+++ b/Private/Source/RuntimeMain.cxx
@@ -25,11 +25,11 @@ extern "C" void RuntimeMain() {
__SYSTEM_INIT[index_init]();
}
- MUST_PASS(HCore::ke_init_hal());
-
HCore::ke_init_heap();
HCore::ke_init_ke_heap();
+ MUST_PASS(HCore::ke_init_hal());
+
HCore::IFilesystemManager::Mount(new HCore::NewFilesystemManager());
HCore::PEFLoader img("/System/Shell.exe");