1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

Kernel: Rename VFS => VirtualFileSystem

This commit is contained in:
Andreas Kling 2021-07-11 00:25:24 +02:00
parent d53d9d3677
commit 0d39bd04d3
38 changed files with 124 additions and 124 deletions

View file

@ -148,7 +148,7 @@ extern "C" [[noreturn]] UNMAP_AFTER_INIT void init()
PCI::initialize();
PCISerialDevice::detect();
VFS::initialize();
VirtualFileSystem::initialize();
dmesgln("Starting SerenityOS...");
@ -252,11 +252,11 @@ void init_stage2(void*)
SB16::detect();
StorageManagement::initialize(kernel_command_line().root_device(), kernel_command_line().is_force_pio());
if (!VFS::the().mount_root(StorageManagement::the().root_filesystem())) {
PANIC("VFS::mount_root failed");
if (!VirtualFileSystem::the().mount_root(StorageManagement::the().root_filesystem())) {
PANIC("VirtualFileSystem::mount_root failed");
}
Process::current()->set_root_directory(VFS::the().root_custody());
Process::current()->set_root_directory(VirtualFileSystem::the().root_custody());
load_kernel_symbol_table();