1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-01 00:42:11 +00:00

Kernel: Remove DebugLogDevice

This was a cute idea but ultimately it's just not useful since we
already have the dbgputch() and dbgputstr() syscalls.
This commit is contained in:
Andreas Kling 2020-04-08 14:09:22 +02:00
parent c8087a42fc
commit befe4c6709
5 changed files with 0 additions and 109 deletions

View file

@ -33,7 +33,6 @@
#include <Kernel/CMOS.h>
#include <Kernel/CommandLine.h>
#include <Kernel/Devices/BXVGADevice.h>
#include <Kernel/Devices/DebugLogDevice.h>
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/Devices/EBRPartitionTable.h>
#include <Kernel/Devices/FullDevice.h>
@ -125,7 +124,6 @@ extern "C" [[noreturn]] void init()
new KeyboardDevice;
new PS2MouseDevice;
setup_vmmouse();
new DebugLogDevice;
new Console;
klog() << "Starting SerenityOS...";