From dc50747c78f5e2b16bb4b7f648f34dbd4aff0e86 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sat, 10 Feb 2018 16:09:22 +0100 Subject: [PATCH] Link to the github issue from the UEFI section --- .../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 15befc68..dd79bb26 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 @@ -77,7 +77,7 @@ Because of these drawbacks we decided to not use GRUB or the Multiboot standard. ### UEFI -TODO +(We don't provide UEFI support at the moment, but we would love to! If you'd like to help, please tell us in the [Github issue](https://github.com/phil-opp/blog_os/issues/349).) ## A Minimal Kernel Now that we roughly know how a computer boots, it's time to create our own minimal kernel. Our goal is to create a disk image that prints a green “Hello” to the screen when booted. For that we build upon the [freestanding Rust binary] from the previous post.