From a9222cf9d73734457206f4f9692d699313678159 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 1 Feb 2024 09:20:27 +0100 Subject: See below. - Add Mount folder for external filesystems. - Fix Runtime Main init layout. Signed-off-by: Amlal El Mahrouss --- Private/Root/Mount/.gitkeep | 0 Private/Source/RuntimeMain.cxx | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 Private/Root/Mount/.gitkeep diff --git a/Private/Root/Mount/.gitkeep b/Private/Root/Mount/.gitkeep new file mode 100644 index 00000000..e69de29b 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"); -- cgit v1.2.3