From dfb538a413e8fefee8ee3af4338495ac9df52295 Mon Sep 17 00:00:00 2001 From: Conrad Pankoff Date: Sun, 8 Sep 2019 22:27:27 +1000 Subject: [PATCH] Kernel: Write logs into dmesg from the start of the boot process --- Kernel/kprintf.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Kernel/kprintf.cpp b/Kernel/kprintf.cpp index 0cf012ed40..69dffbcf7e 100644 --- a/Kernel/kprintf.cpp +++ b/Kernel/kprintf.cpp @@ -70,10 +70,6 @@ static void console_putch(char*&, char ch) { if (serial_debug) serial_putch(ch); - if (!current) { - IO::out8(0xe9, ch); - return; - } Console::the().put_char(ch); }