summaryrefslogtreecommitdiff
path: root/Kernel/Devices
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2021-04-16 22:58:51 +0300
committerAndreas Kling <kling@serenityos.org>2021-05-16 19:58:33 +0200
commit20743e8aede1de46195dd61ad18002cd52db7d3a (patch)
tree49ea710e88949b49c136b0b3b793059c24f6daa1 /Kernel/Devices
parentdac129e10bdef313dff65b34f1fa17608d3608c2 (diff)
downloadserenity-20743e8aede1de46195dd61ad18002cd52db7d3a.zip
Kernel/Graphics + SystemServer: Support text mode properly
As we removed the support of VBE modesetting that was done by GRUB early on boot, we need to determine if we can modeset the resolution with our drivers, and if not, we should enable text mode and ensure that SystemServer knows about it too. Also, SystemServer should first check if there's a framebuffer device node, which is an indication that text mode was not even if it was requested. Then, if it doesn't find it, it should check what boot_mode argument the user specified (in case it's self-test). This way if we try to use bochs-display device (which is not VGA compatible) and request a text mode, it will not honor the request and will continue with graphical mode. Also try to print critical messages with mininum memory allocations possible. In LibVT, We make the implementation flexible for kernel-specific methods that are implemented in ConsoleImpl class.
Diffstat (limited to 'Kernel/Devices')
-rw-r--r--Kernel/Devices/HID/PS2KeyboardDevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Devices/HID/PS2KeyboardDevice.cpp b/Kernel/Devices/HID/PS2KeyboardDevice.cpp
index 8ff6d5b3b0..a20c9e6044 100644
--- a/Kernel/Devices/HID/PS2KeyboardDevice.cpp
+++ b/Kernel/Devices/HID/PS2KeyboardDevice.cpp
@@ -15,7 +15,7 @@
#include <Kernel/Devices/HID/HIDManagement.h>
#include <Kernel/Devices/HID/PS2KeyboardDevice.h>
#include <Kernel/IO.h>
-#include <Kernel/TTY/VirtualConsole.h>
+#include <Kernel/TTY/ConsoleManagement.h>
namespace Kernel {
@@ -69,7 +69,7 @@ void PS2KeyboardDevice::irq_handle_byte_read(u8 byte)
if (m_modifiers & Mod_Alt) {
switch (ch) {
case 0x02 ... 0x07: // 1 to 6
- VirtualConsole::switch_to(ch - 0x02);
+ ConsoleManagement::the().switch_to(ch - 0x02);
break;
default:
key_state_changed(ch, pressed);