From 592bae3f871a12f31c52dc4594ea972a198c654a Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 27 Oct 2015 18:45:37 +0100 Subject: [PATCH] Rename `multiboot` section to `multiboot_header` See phil-opp/blog_os#14 --- _posts/2015-09-02-setup-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2015-09-02-setup-rust.md b/_posts/2015-09-02-setup-rust.md index ee055828..487c74fe 100644 --- a/_posts/2015-09-02-setup-rust.md +++ b/_posts/2015-09-02-setup-rust.md @@ -181,7 +181,7 @@ What happened? Well, the linker removed unused sections. And since we don't use .boot : { /* ensure that the multiboot header is at the beginning */ - KEEP(*(.multiboot)) + KEEP(*(.multiboot_header)) } ``` Now everything should work again (the green `OKAY`). But there is another linking issue, which is triggered by some other example code.