diff options
author | Conrad Pankoff <deoxxa@fknsrs.biz> | 2019-06-02 22:57:44 +1000 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-02 14:57:44 +0200 |
commit | c02b8b715da8e1a6604b8b58c5c66cf44f823f77 (patch) | |
tree | 842727cb55fad1c9dd3e2fa3d1cb7df9e1356215 /Kernel/Makefile | |
parent | 466a8179506647d33ee4511c6945f111d31d9500 (diff) | |
download | serenity-c02b8b715da8e1a6604b8b58c5c66cf44f823f77.zip |
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.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 4da36b2020..ac124001d7 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -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 \ |