diff options
Diffstat (limited to 'Kernel/init.cpp')
-rw-r--r-- | Kernel/init.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 3ec81f8d3c..3e7b8e8d56 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -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(); |