From 3d015be1fc239a4166cca59f3f8cf0ace724dd1e Mon Sep 17 00:00:00 2001 From: William Mbotta Date: Tue, 30 Jul 2019 11:14:12 +0200 Subject: [PATCH] Fix wrong location for bootimage (#647) --- .../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 ebeffcc8..b36c091b 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 @@ -409,7 +409,7 @@ We can now boot the disk image in a virtual machine. To boot it in [QEMU], execu [QEMU]: https://www.qemu.org/ ``` -> qemu-system-x86_64 -drive format=raw,file=bootimage-blog_os.bin +> qemu-system-x86_64 -drive format=raw,file=target/x86_64-blog_os/debug/bootimage-blog_os.bin warning: TCG doesn't support requested feature: CPUID.01H:ECX.vmx [bit 5] ```