diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-06 11:41:50 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-06 11:41:50 +0100 |
commit | 9e570d0d6dcdaf2adce8d72430e84d2d487ea56c (patch) | |
tree | 43b5f959d8df1a144b52b1180a7c116644f51f01 /Kernel | |
parent | 2ad0ec325a00628eed113984e03cd6a222acfe5a (diff) | |
download | serenity-9e570d0d6dcdaf2adce8d72430e84d2d487ea56c.zip |
Kernel+SystemServer: Get rid of two virtual consoles
Having four virtual (text) consoles by default seems really overkill
for a system that can't even switch to them anyway (yet!)
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/init.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/init.cpp b/Kernel/init.cpp index 1393d14be5..16b497bf03 100644 --- a/Kernel/init.cpp +++ b/Kernel/init.cpp @@ -46,8 +46,6 @@ VirtualConsole* tty0; VirtualConsole* tty1; -VirtualConsole* tty2; -VirtualConsole* tty3; KeyboardDevice* keyboard; PS2MouseDevice* ps2mouse; SB16* sb16; @@ -267,8 +265,6 @@ extern "C" [[noreturn]] void init() VirtualConsole::initialize(); tty0 = new VirtualConsole(0, VirtualConsole::AdoptCurrentVGABuffer); tty1 = new VirtualConsole(1); - tty2 = new VirtualConsole(2); - tty3 = new VirtualConsole(3); VirtualConsole::switch_to(0); kprintf("Starting Serenity Operating System...\n"); |