refactor: move filesystem discovery code into separate module

This commit is contained in:
2026-04-01 13:15:31 +02:00
parent 346977a0f9
commit 868d0fd4f5
3 changed files with 102 additions and 50 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
* Boot.hpp
* Boot-time filesystem initialization
* Copyright (c) 2026 Daniel Hammer
*/
#pragma once
#include <limine.h>
namespace Fs {
void InitializeBootFilesystems(const volatile limine_module_response* moduleResponse);
}