refactor(kernel): ramfs loading

This commit is contained in:
2025-04-07 05:04:23 +00:00
parent b1a30059ed
commit d4346202ca
5 changed files with 95 additions and 38 deletions

View File

@ -127,11 +127,11 @@ namespace vfs
bool TestArchive(uintptr_t Address);
void ReadArchive(uintptr_t Address, size_t Size);
USTAR(){};
~USTAR(){};
USTAR() = default;
~USTAR() = default;
};
}
bool TestAndInitializeUSTAR(uintptr_t Address, size_t Size);
bool TestAndInitializeUSTAR(uintptr_t Address, size_t Size, size_t Index);
#endif // !__FENNIX_KERNEL_FILESYSTEM_USTAR_H__