Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[codespell]
ignore-words-list = inout,hda
2 changes: 1 addition & 1 deletion api/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ pub struct Mappings {
/// Configures the base address of the kernel.
///
/// If a fixed address is set, it must be paged aligned and the kernel must be
/// a position-independent exectuable.
/// a position-independent executable.
pub kernel_base: Mapping,
/// Specifies where the [`crate::BootInfo`] struct should be placed in virtual memory.
pub boot_info: Mapping,
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/kernel/basic-kernel.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A minimal kernel to showcase the usage of bootloader.

The kernel:
- Initalizes a serial port on [COM1](https://wiki.osdev.org/Serial_Ports#Port_Addresses)
- Initializes a serial port on [COM1](https://wiki.osdev.org/Serial_Ports#Port_Addresses)
- Dumps the [`boot_info`](/api/src/info.rs) it received from `bootloader`
- Prints a message
- Exits QEMU with a custom exit code via the `isa-debug-exit` device
Loading