aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld5
1 files changed, 4 insertions, 1 deletions
diff --git a/linker.ld b/linker.ld
index 732e5a0..7e07efc 100644
--- a/linker.ld
+++ b/linker.ld
@@ -15,9 +15,12 @@ SECTIONS
/* First put the multiboot header, as it is required to be put very early
early in the image or the bootloader won't recognize the file format.
Next we'll put the .text section. */
+ .boot :
+ {
+ *(.multiboot)
+ }
.text :
{
- *(.multiboot)
*(.text)
}