mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 02:08:11 +00:00
Kernel/Devices: Move ConsoleDevice into the Devices source directory
This commit is contained in:
parent
aee4786d8e
commit
5e8dcb9ca7
6 changed files with 5 additions and 5 deletions
|
@ -42,11 +42,11 @@ set(KERNEL_SOURCES
|
||||||
Bus/VirtIO/RNG.cpp
|
Bus/VirtIO/RNG.cpp
|
||||||
CMOS.cpp
|
CMOS.cpp
|
||||||
CommandLine.cpp
|
CommandLine.cpp
|
||||||
ConsoleDevice.cpp
|
|
||||||
Coredump.cpp
|
Coredump.cpp
|
||||||
Devices/AsyncDeviceRequest.cpp
|
Devices/AsyncDeviceRequest.cpp
|
||||||
Devices/BlockDevice.cpp
|
Devices/BlockDevice.cpp
|
||||||
Devices/CharacterDevice.cpp
|
Devices/CharacterDevice.cpp
|
||||||
|
Devices/ConsoleDevice.cpp
|
||||||
Devices/Device.cpp
|
Devices/Device.cpp
|
||||||
Devices/DeviceManagement.cpp
|
Devices/DeviceManagement.cpp
|
||||||
Devices/FullDevice.cpp
|
Devices/FullDevice.cpp
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <AK/Singleton.h>
|
#include <AK/Singleton.h>
|
||||||
#include <Kernel/ConsoleDevice.h>
|
#include <Kernel/Devices/ConsoleDevice.h>
|
||||||
#include <Kernel/IO.h>
|
#include <Kernel/IO.h>
|
||||||
#include <Kernel/Locking/Spinlock.h>
|
#include <Kernel/Locking/Spinlock.h>
|
||||||
#include <Kernel/Sections.h>
|
#include <Kernel/Sections.h>
|
|
@ -11,7 +11,7 @@
|
||||||
#include <Kernel/Arch/x86/ProcessorInfo.h>
|
#include <Kernel/Arch/x86/ProcessorInfo.h>
|
||||||
#include <Kernel/Bus/PCI/API.h>
|
#include <Kernel/Bus/PCI/API.h>
|
||||||
#include <Kernel/CommandLine.h>
|
#include <Kernel/CommandLine.h>
|
||||||
#include <Kernel/ConsoleDevice.h>
|
#include <Kernel/Devices/ConsoleDevice.h>
|
||||||
#include <Kernel/Devices/DeviceManagement.h>
|
#include <Kernel/Devices/DeviceManagement.h>
|
||||||
#include <Kernel/Devices/HID/HIDManagement.h>
|
#include <Kernel/Devices/HID/HIDManagement.h>
|
||||||
#include <Kernel/FileSystem/Custody.h>
|
#include <Kernel/FileSystem/Custody.h>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <AK/String.h>
|
#include <AK/String.h>
|
||||||
#include <AK/Vector.h>
|
#include <AK/Vector.h>
|
||||||
#include <Kernel/API/KeyCode.h>
|
#include <Kernel/API/KeyCode.h>
|
||||||
#include <Kernel/ConsoleDevice.h>
|
#include <Kernel/Devices/ConsoleDevice.h>
|
||||||
#include <Kernel/Devices/HID/HIDManagement.h>
|
#include <Kernel/Devices/HID/HIDManagement.h>
|
||||||
#include <Kernel/Graphics/Console/Console.h>
|
#include <Kernel/Graphics/Console/Console.h>
|
||||||
#include <Kernel/TTY/TTY.h>
|
#include <Kernel/TTY/TTY.h>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include <AK/PrintfImplementation.h>
|
#include <AK/PrintfImplementation.h>
|
||||||
#include <AK/StringView.h>
|
#include <AK/StringView.h>
|
||||||
#include <AK/Types.h>
|
#include <AK/Types.h>
|
||||||
#include <Kernel/ConsoleDevice.h>
|
#include <Kernel/Devices/ConsoleDevice.h>
|
||||||
#include <Kernel/Devices/PCISerialDevice.h>
|
#include <Kernel/Devices/PCISerialDevice.h>
|
||||||
#include <Kernel/Graphics/GraphicsManagement.h>
|
#include <Kernel/Graphics/GraphicsManagement.h>
|
||||||
#include <Kernel/IO.h>
|
#include <Kernel/IO.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue