1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-04-21 23:49:01 +00:00

Merge pull request from yash1120/patch-1

typo fix
This commit is contained in:
0xAX 2022-02-20 16:25:56 +06:00 committed by GitHub
commit 1dde1f6559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ This is the third part of the `Kernel booting process` series. In the previous [
In this part, we will look at:
* video mode initialization in the kernel setup code,
* Video mode initialization in the kernel setup code,
* the preparations made before switching into protected mode,
* the transition to protected mode
@ -35,7 +35,7 @@ vga=<mode>
<mode> here is either an integer (in C notation, either
decimal, octal, or hexadecimal) or one of the strings
"normal" (meaning 0xFFFF), "ext" (meaning 0xFFFE) or "ask"
(meaning 0xFFFD). This value should be entered into the
(meaning 0xFFFD). This value should be entered into the
vid_mode field, as it is used by the kernel before the command
line is parsed.
```