Skip to content

Commit

Permalink
phil-opp#1063: Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
kennystrawnmusic authored Jan 26, 2023
1 parent e18af07 commit 2ab93d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog/content/edition-3/posts/02-booting/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ In this section, we will learn how to combine the [minimal kernel] we created in

Since bootloaders quite complex on their own, we won't create our own bootloader here (but we are planning a separate series of posts on this).
Instead, we will boot our kernel using the [`bootloader`] crate.
This crate is subdivided into multiple crates to support both BIOS (via the multitude of `bootloader-x86_64-bios-*` sub-crates) and UEFI (via the `bootloader-x86_64-uefi` sub-crate) booting, provide all the necessary system information we need (via the `bootloader_api` sub-crate), and creates a reasonable default execution environment for our kernel.
This crate is subdivided into multiple crates to support both BIOS (via the multitude of `bootloader-x86_64-bios-*` sub-crates) and UEFI (via the `bootloader-x86_64-uefi` sub-crate) booting, provide all the necessary system information we need (via the `bootloader_api` sub-crate), and create a reasonable default execution environment for our kernel.
This way, we can focus on the actual kernel design in the following posts instead of spending a lot of time on system initialization.

In order to use this crate in our kernel, we need to add a dependency on `bootloader_api`:
Expand Down

0 comments on commit 2ab93d0

Please sign in to comment.