mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 19:27:35 +00:00
Kernel: Don't instantiate and throw away ProcFS + DevPtsFS on boot
Oops, we were creating these and then throwing them away. They will get instantiated a bit later, when we bring up the mounts in /etc/fstab from userspace.
This commit is contained in:
parent
9a4b117f48
commit
4f4d4670fe
1 changed files with 0 additions and 6 deletions
|
@ -303,12 +303,6 @@ extern "C" [[noreturn]] void init()
|
||||||
auto e1000 = E1000NetworkAdapter::autodetect();
|
auto e1000 = E1000NetworkAdapter::autodetect();
|
||||||
auto rtl8139 = RTL8139NetworkAdapter::autodetect();
|
auto rtl8139 = RTL8139NetworkAdapter::autodetect();
|
||||||
|
|
||||||
NonnullRefPtr<ProcFS> new_procfs = ProcFS::create();
|
|
||||||
new_procfs->initialize();
|
|
||||||
|
|
||||||
auto devptsfs = DevPtsFS::create();
|
|
||||||
devptsfs->initialize();
|
|
||||||
|
|
||||||
Process::initialize();
|
Process::initialize();
|
||||||
Thread::initialize();
|
Thread::initialize();
|
||||||
Process::create_kernel_process("init_stage2", init_stage2);
|
Process::create_kernel_process("init_stage2", init_stage2);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue