aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/linker.ld')
-rw-r--r--src/kernel/linker.ld20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/kernel/linker.ld b/src/kernel/linker.ld
index ff04c17..eda4b85 100644
--- a/src/kernel/linker.ld
+++ b/src/kernel/linker.ld
@@ -1,28 +1,34 @@
ENTRY(_start)
-SECTIONS {
+SECTIONS
+{
. = 1M;
- .text BLOCK(4K) : ALIGN(4K) {
+ .text BLOCK(4K) : ALIGN(4K)
+ {
*(.multiboot)
*(.start_section)
*(.text)
}
- .rodata BLOCK(4K) : ALIGN(4K) {
+ .rodata BLOCK(4K) : ALIGN(4K)
+ {
*(.rodata)
}
- .data BLOCK(4K) : ALIGN(4K) {
+ .data BLOCK(4K) : ALIGN(4K)
+ {
*(.data)
}
- .bss BLOCK(4K) : ALIGN(4K) {
- *(COMMON)
+ .bss BLOCK(4K) : ALIGN(4K)
+ {
+ *(.COMMON)
*(.bss)
}
- .end_section BLOCK(4K) : ALIGN(4K) {
+ .end_section BLOCK(4K) : ALIGN(4K)
+ {
*(.end_section)
}
} \ No newline at end of file