From 7d929d0fc8eb97330dfe9344332412f0240da795 Mon Sep 17 00:00:00 2001 From: ruthgrace Date: Mon, 12 Oct 2015 15:37:40 -0400 Subject: [PATCH] fixed grammar mistakes in last prep before kernel decomposition section of linux-bootstrap-5.md --- Booting/linux-bootstrap-5.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Booting/linux-bootstrap-5.md b/Booting/linux-bootstrap-5.md index a94ee12..8b52ee5 100644 --- a/Booting/linux-bootstrap-5.md +++ b/Booting/linux-bootstrap-5.md @@ -164,7 +164,7 @@ After it we get `.text` section address and jump to it: Last preparation before kernel decompression -------------------------------------------------------------------------------- -`.text` sections starts with the `relocated` label. For the start there is clearing of the `bss` section with: +`.text` sections start with the `relocated` label. For the start there is clearing of the `bss` section with: ```assembly xorl %eax, %eax @@ -194,7 +194,7 @@ In the end we can see the call of the `decompress_kernel` routine: popq %rsi ``` -Again we save `rsi` with pointer to `boot_params` structure and call `decompress_kernel` from the [arch/x86/boot/compressed/misc.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/compressed/misc.c) with seven arguments. All arguments will be passed through the registers. We finished all preparation and now can look on the kernel decompression. +Again we save `rsi` with a pointer to the `boot_params` structure and call `decompress_kernel` from the [arch/x86/boot/compressed/misc.c](https://github.com/torvalds/linux/blob/master/arch/x86/boot/compressed/misc.c) with seven arguments. All arguments will be passed through the registers. We finished all preparation and now can look on the kernel decompression. Kernel decompression --------------------------------------------------------------------------------