Bootloader: Implement basic ext2 filesystem

This can search for files in an ext2 filesystem. Only 12 blocks
are currently supported.

Now only ELF loading is missing for loading the actual kernel!
This commit is contained in:
2023-11-15 16:36:53 +02:00
parent c791a1c200
commit 9d4101e0c5
4 changed files with 561 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ set(BOOTLOADER_SOURCES
boot.S
command_line.S
disk.S
ext2.S
memory_map.S
utils.S
)