1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 22:58:12 +00:00

Kernel: Move Partition code files to the Storage folder

This folder is more appropriate for these files.
This commit is contained in:
Liav A 2020-12-25 20:23:35 +02:00 committed by Andreas Kling
parent 247517cd4a
commit 3a19e18d1e
10 changed files with 17 additions and 17 deletions

View file

@ -22,13 +22,9 @@ set(KERNEL_SOURCES
Devices/BlockDevice.cpp
Devices/CharacterDevice.cpp
Devices/Device.cpp
Devices/DiskPartition.cpp
Devices/EBRPartitionTable.cpp
Devices/FullDevice.cpp
Devices/GPTPartitionTable.cpp
Devices/I8042Controller.cpp
Devices/KeyboardDevice.cpp
Devices/MBRPartitionTable.cpp
Devices/MBVGADevice.cpp
Devices/NullDevice.cpp
Devices/PCSpeaker.cpp
@ -39,6 +35,10 @@ set(KERNEL_SOURCES
Devices/UHCIController.cpp
Devices/VMWareBackdoor.cpp
Devices/ZeroDevice.cpp
Storage/Partition/DiskPartition.cpp
Storage/Partition/EBRPartitionTable.cpp
Storage/Partition/GPTPartitionTable.cpp
Storage/Partition/MBRPartitionTable.cpp
Storage/StorageDevice.cpp
Storage/IDEController.cpp
Storage/IDEChannel.cpp

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/FileSystem/FileDescription.h>
#include <Kernel/Storage/Partition/DiskPartition.h>
// #define OFFD_DEBUG

View file

@ -25,7 +25,7 @@
*/
#include <AK/ByteBuffer.h>
#include <Kernel/Devices/EBRPartitionTable.h>
#include <Kernel/Storage/Partition/EBRPartitionTable.h>
#ifndef EBR_DEBUG
# define EBR_DEBUG

View file

@ -28,8 +28,8 @@
#include <AK/RefPtr.h>
#include <AK/Vector.h>
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/Devices/MBRPartitionTable.h>
#include <Kernel/Storage/Partition/DiskPartition.h>
#include <Kernel/Storage/Partition/MBRPartitionTable.h>
namespace Kernel {

View file

@ -25,7 +25,7 @@
*/
#include <AK/ByteBuffer.h>
#include <Kernel/Devices/GPTPartitionTable.h>
#include <Kernel/Storage/Partition/GPTPartitionTable.h>
#ifndef GPT_DEBUG
# define GPT_DEBUG

View file

@ -29,7 +29,7 @@
#include <AK/RefPtr.h>
#include <AK/Types.h>
#include <AK/Vector.h>
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/Storage/Partition/DiskPartition.h>
namespace Kernel {

View file

@ -25,7 +25,7 @@
*/
#include <AK/ByteBuffer.h>
#include <Kernel/Devices/MBRPartitionTable.h>
#include <Kernel/Storage/Partition/MBRPartitionTable.h>
#ifndef MBR_DEBUG
# define MBR_DEBUG

View file

@ -28,7 +28,7 @@
#include <AK/RefPtr.h>
#include <AK/Vector.h>
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/Storage/Partition/DiskPartition.h>
namespace Kernel {

View file

@ -32,12 +32,8 @@
#include <Kernel/CMOS.h>
#include <Kernel/CommandLine.h>
#include <Kernel/Devices/BXVGADevice.h>
#include <Kernel/Devices/DiskPartition.h>
#include <Kernel/Devices/EBRPartitionTable.h>
#include <Kernel/Devices/FullDevice.h>
#include <Kernel/Devices/GPTPartitionTable.h>
#include <Kernel/Devices/I8042Controller.h>
#include <Kernel/Devices/MBRPartitionTable.h>
#include <Kernel/Devices/MBVGADevice.h>
#include <Kernel/Devices/NullDevice.h>
#include <Kernel/Devices/RandomDevice.h>
@ -65,6 +61,10 @@
#include <Kernel/RTC.h>
#include <Kernel/Random.h>
#include <Kernel/Scheduler.h>
#include <Kernel/Storage/Partition/DiskPartition.h>
#include <Kernel/Storage/Partition/EBRPartitionTable.h>
#include <Kernel/Storage/Partition/GPTPartitionTable.h>
#include <Kernel/Storage/Partition/MBRPartitionTable.h>
#include <Kernel/Storage/StorageManagement.h>
#include <Kernel/TTY/PTYMultiplexer.h>
#include <Kernel/TTY/VirtualConsole.h>