From 019aa1865e035646a9488930bfbcfb4d9faa7a7b Mon Sep 17 00:00:00 2001 From: Z Date: Sun, 29 Nov 2020 13:39:19 +0800 Subject: [PATCH] Update linux-bootstrap-1.md --- Booting/linux-bootstrap-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index cacf373..1a60814 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -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)