1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

Kernel: Don't clear VirtualConsoles when initializing

Instead of calling clear() for each virtual console we initialize, we
only call clear() when activating it from ConsoleManagement.
This commit is contained in:
Sahan Fernando 2021-06-25 22:57:09 +10:00 committed by Andreas Kling
parent bab6fb76b7
commit b569b2df35
2 changed files with 2 additions and 1 deletions

View file

@ -61,6 +61,8 @@ UNMAP_AFTER_INIT void ConsoleManagement::initialize()
m_active_console = m_consoles[tty_number];
ScopedSpinLock lock(m_lock);
m_active_console->set_active(true);
if (!m_active_console->is_graphical())
m_active_console->clear();
}
void ConsoleManagement::switch_to(unsigned index)