diff options
author | Marvin Borner | 2020-12-06 16:21:06 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-06 16:21:06 +0100 |
commit | c970210a2c6e9c86132470c44a712277f4943d7a (patch) | |
tree | 6efa4ed24a9b62dcdba9672fa4085d6e3629ca1e /boot | |
parent | 652d9d7b7df798d52e6ddb67e07b1ca372ec9dda (diff) |
Removed the necessity for ext2util completely
This is needed for a flexible bootloader and IDE driver. Future
commits will remove the boot/load.c file.
Diffstat (limited to 'boot')
-rw-r--r-- | boot/entry.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/boot/entry.asm b/boot/entry.asm index 0379133..cf632b1 100644 --- a/boot/entry.asm +++ b/boot/entry.asm @@ -268,9 +268,9 @@ lba: times SECTOR_SIZE - ($ - $$) db 0 dw SECTOR_END -; This is the second stage. It tries to load the kernel (inode 5) into memory. +; This is the second stage. It tries to load the kernel into memory. ; To do this, it first checks the integrity of the ext2 fs. Then it has to find -; the address of the fifth inode and load its contents into memory. +; the address of the root inode (2), find the filename in it and load its contents into memory. ; After this is finished, the stage can jump into the protected mode, enable the ; A20 line and finally jump to the kernel! ez stage_two: @@ -283,8 +283,9 @@ stage_two: mov ax, [superblock + EXT2_SB_SIZE + EXT2_TABLE_OFFSET] ; Inode table shl ax, 1 ; Multiply ax by 2 mov [lba], ax ; Sector - mov ax, 2 - mov [count], ax ; Read 1024 bytes + ; TODO: This might only work with smaller inodes + ;mov ax, 4 + ;mov [count], ax ; Read 4kb mov bx, EXT2_INODE_TABLE_LOC ; Copy data to 0x1000 mov [dest], bx call disk_read |