From 7b88ebcaf6b89b472356501530381bee49b34737 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 14 Mar 2019 11:20:36 +0100 Subject: [PATCH] Update bootloader dependency in post to 0.4.0 --- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md index 2c222f01..e92207b0 100644 --- a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md +++ b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md @@ -341,7 +341,7 @@ Instead of writing our own bootloader, which is a project on its own, we use the # in Cargo.toml [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).