Update bootloader dependency in post to 0.4.0

This commit is contained in:
Philipp Oppermann
2019-03-14 11:20:36 +01:00
parent 2e9e8d7f45
commit 7b88ebcaf6

View File

@@ -341,7 +341,7 @@ Instead of writing our own bootloader, which is a project on its own, we use the
# in Cargo.toml # in Cargo.toml
[dependencies] [dependencies]
bootloader = "0.3.12" bootloader = "0.4.0"
``` ```
Adding the bootloader as dependency is not enough to actually create a bootable disk image. The problem is that we need to combine the bootloader with the kernel after it has been compiled, but cargo has no support for additional build steps after successful compilation (see [this issue][post-build script] for more information). Adding the bootloader as dependency is not enough to actually create a bootable disk image. The problem is that we need to combine the bootloader with the kernel after it has been compiled, but cargo has no support for additional build steps after successful compilation (see [this issue][post-build script] for more information).