aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-30 10:29:24 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-03-30 10:29:24 +0200
commitba0349b0dfaac8bc28befb7b9065a548496aadbb (patch)
tree1f9ad5315db0b05f872902132a1057f889b50a0a
parent4479829af47b0cc2855cde9eeb1b9afdd233e601 (diff)
added "map_physical_memory" as a required feature of the bootloader crate in Cargo.toml
-rw-r--r--StrixKernel/Cargo.toml2
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"