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:
parent
d53d9d3677
commit
0d39bd04d3
38 changed files with 124 additions and 124 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue