Kernel: Write logs into dmesg from the start of the boot process

This commit is contained in:
Conrad Pankoff 2019-09-08 22:27:27 +10:00 committed by Andreas Kling
commit dfb538a413
Notes: sideshowbarker 2024-07-19 12:11:06 +09:00

View file

@ -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);
}