Rename multiboot section to multiboot_header

See phil-opp/blog_os#14
This commit is contained in:
Philipp Oppermann
2015-10-27 18:45:37 +01:00
parent ba938a2aeb
commit 592bae3f87

View File

@@ -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.