Kernel: Shell is no longer singleton

This commit is contained in:
2023-01-16 15:16:39 +02:00
parent 1545850be3
commit 8881c1e117
3 changed files with 6 additions and 24 deletions

View File

@@ -95,8 +95,7 @@ extern "C" void kernel_main()
kprintln("Hello from the kernel!");
auto& shell = Kernel::Shell::Get();
shell.SetTTY(tty1);
Kernel::Shell shell(tty1);
shell.Run();
for (;;)