aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/boot/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/boot/linker.ld')
-rw-r--r--arch/x86_64/boot/linker.ld12
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/x86_64/boot/linker.ld b/arch/x86_64/boot/linker.ld
index 5d788f1..0ad745e 100644
--- a/arch/x86_64/boot/linker.ld
+++ b/arch/x86_64/boot/linker.ld
@@ -6,11 +6,19 @@ SECTIONS {
.boot :
{
/* ensure that the multiboot header is at the beginning */
- *(.multiboot_header)
+ KEEP(*(.multiboot_header))
}
.text :
{
- *(.text)
+ *(.text .text.*)
+ }
+
+ .rodata : {
+ *(.rodata .rodata.*)
+ }
+
+ .data.rel.ro : {
+ *(.data.rel.ro.local*) *(.data.rel.ro .data.rel.ro.*)
}
}