1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-21 22:28:08 +00:00

Update linux-bootstrap-1.md

This commit is contained in:
Z 2020-11-29 13:39:19 +08:00 committed by GitHub
parent 20945be66f
commit 019aa1865e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -249,7 +249,7 @@ When the bootloader transfers control to the kernel, it starts at:
X + sizeof(KernelBootSector) + 1
```
where `X` is the address of the kernel boot sector being loaded. In my case, `X` is `0x10000`, as we can see in a memory dump:
where `X` is the address of the kernel boot sector being loaded. In my case, `X` is `0x10000`, as we can see in a [memory dump](https://github.com/0xAX/linux-insides/issues/758#issuecomment-732536804):
![kernel first address](images/kernel_first_address.png)