Update bootloader version in 'Minimal Rust Kernel' post to 0.9.8

This commit is contained in:
Philipp Oppermann
2020-07-17 12:37:24 +02:00
parent 6e2edf03a9
commit 580f58f7ab

View File

@@ -393,7 +393,7 @@ Instead of writing our own bootloader, which is a project on its own, we use the
# in Cargo.toml
[dependencies]
bootloader = "0.9.3"
bootloader = "0.9.8"
```
Adding the bootloader as 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].