1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09: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
Notes: sideshowbarker 2024-07-19 07:48:29 +09:00
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...";