1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:47:35 +00:00

Kernel: Implement MBR partition loader (#168)

This implements a basic MBR partition loader, which removes the reliance
on a hard-coded filesystem offset in the stage2 init.
This commit is contained in:
Conrad Pankoff 2019-06-02 22:57:44 +10:00 committed by Andreas Kling
parent 466a817950
commit c02b8b715d
4 changed files with 133 additions and 9 deletions

View file

@ -66,6 +66,7 @@ VFS_OBJS = \
Devices/RandomDevice.o \
Devices/DebugLogDevice.o \
Devices/DiskPartition.o \
Devices/MBRPartitionTable.o \
FileSystem/FileSystem.o \
FileSystem/DiskBackedFileSystem.o \
FileSystem/Ext2FileSystem.o \