#include "InitRD.h" #include "arch/MMU.h" #include "boot/bootboot.h" #include "fs/VFS.h" TarStream g_initrd; extern const BOOTBOOT bootboot; void InitRD::initialize() { u64 virtual_initrd_address = MMU::translate_physical_address(bootboot.initrd_ptr); g_initrd.initialize((void*)virtual_initrd_address, bootboot.initrd_size); } static Result vfs_create_dir_if_not_exists(const char* path) { auto rc = VFS::create_directory(path); if (rc.has_error()) { if (rc.error() == EEXIST) return {}; return rc.release_error(); } return {}; } Result InitRD::populate_vfs() { TarStream::Entry entry; while (TRY(g_initrd.read_next_entry(entry))) { if (entry.type == TarStream::EntryType::RegularFile) { auto file = TRY(VFS::create_file(entry.name)); file->write(entry.data(), 0, entry.size); } else if (entry.type == TarStream::EntryType::Directory) { TRY(vfs_create_dir_if_not_exists(entry.name)); } } return {}; }