diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 10:29:24 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 10:29:24 +0200 |
| commit | ba0349b0dfaac8bc28befb7b9065a548496aadbb (patch) | |
| tree | 1f9ad5315db0b05f872902132a1057f889b50a0a | |
| parent | 4479829af47b0cc2855cde9eeb1b9afdd233e601 (diff) | |
added "map_physical_memory" as a required feature of the bootloader crate in Cargo.toml
| -rw-r--r-- | StrixKernel/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StrixKernel/Cargo.toml b/StrixKernel/Cargo.toml index bc5294f..9377783 100644 --- a/StrixKernel/Cargo.toml +++ b/StrixKernel/Cargo.toml @@ -12,7 +12,7 @@ name = "stack_overflow" harness = false [dependencies] -bootloader = "0.9" +bootloader = { version = "0.9", features = ["map_physical_memory"] } volatile = "0.2.6" spin = "0.5.2" x86_64 = "0.14.2" |
