summaryrefslogtreecommitdiffstats
path: root/src/kernel.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel.ld')
-rw-r--r--src/kernel.ld6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/kernel.ld b/src/kernel.ld
index 0f44adb34..dc433807a 100644
--- a/src/kernel.ld
+++ b/src/kernel.ld
@@ -14,6 +14,7 @@ SECTIONS
. = text_load_address;
.text ALIGN(0x1000): {
*(.text)
+ *(.text._*)
*(.rodata)
*(.rodata.*)
@@ -24,13 +25,16 @@ SECTIONS
*(.data)
*(.data.*)
*(.branch_lt)
- *(.bss)
toc_load_address = .;
*(.toc)
opd_load_address = .;
*(.opd)
*(.got)
+
+ *(.bss)
+ *(.bss.*)
+
}
. = hreset_load_address;
OpenPOWER on IntegriCloud