Fixes bootloader version

Adds a note about using a custom physical memory offset and its caveats
This commit is contained in:
seewishnew
2022-11-24 20:42:22 -08:00
committed by GitHub
parent a108367d71
commit b63ce2dc3c
8 changed files with 9 additions and 8 deletions

View File

@@ -403,7 +403,7 @@ Instead of writing our own bootloader, which is a project on its own, we use the
# in Cargo.toml
[dependencies]
bootloader = "0.9.8"
bootloader = "0.9.23"
```
Adding the bootloader as a dependency is not enough to actually create a bootable disk image. The problem is that we need to link our kernel with the bootloader after compilation, but cargo has no support for [post-build scripts].