Specify bootloader version as v0.9 (without patch version) in all posts

Cargo automatically chooses the latest patch version, but beginners might not know that. So this hopefully avoids some confusion.
This commit is contained in:
Philipp Oppermann
2024-02-16 13:24:48 +01:00
parent 3556211904
commit 1f6402f746
9 changed files with 9 additions and 9 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.23"
bootloader = "0.9"
```
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].