mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:17:35 +00:00
Kernel+LibPartition: Move PartitionTable into LibPartition
This commit is contained in:
parent
be1c5c6b9f
commit
940dde9947
8 changed files with 42 additions and 43 deletions
|
@ -14,10 +14,10 @@
|
|||
#include <Kernel/Storage/Partition/DiskPartition.h>
|
||||
#include <Kernel/Storage/StorageController.h>
|
||||
#include <Kernel/Storage/StorageDevice.h>
|
||||
#include <LibPartition/PartitionTable.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
class PartitionTable;
|
||||
class StorageManagement {
|
||||
|
||||
public:
|
||||
|
@ -47,7 +47,7 @@ private:
|
|||
|
||||
void dump_storage_devices_and_partitions() const;
|
||||
|
||||
ErrorOr<NonnullOwnPtr<PartitionTable>> try_to_initialize_partition_table(StorageDevice const&) const;
|
||||
ErrorOr<NonnullOwnPtr<Partition::PartitionTable>> try_to_initialize_partition_table(StorageDevice const&) const;
|
||||
|
||||
RefPtr<BlockDevice> boot_block_device() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue