summaryrefslogtreecommitdiff
path: root/firmware/test/kernel/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/test/kernel/app.lds')
-rw-r--r--firmware/test/kernel/app.lds9
1 files changed, 7 insertions, 2 deletions
diff --git a/firmware/test/kernel/app.lds b/firmware/test/kernel/app.lds
index 8a31ee7a13..2aa374f8c1 100644
--- a/firmware/test/kernel/app.lds
+++ b/firmware/test/kernel/app.lds
@@ -6,8 +6,7 @@ SECTIONS
6 { 6 {
7 *(.vectors) 7 *(.vectors)
8 . = ALIGN(0x200); 8 . = ALIGN(0x200);
9 crt0.o(.text) 9 *(.init.text)
10 *(.rodata)
11 } 10 }
12 11
13 .text : 12 .text :
@@ -17,9 +16,15 @@ SECTIONS
17 16
18 .data : 17 .data :
19 { 18 {
19 *(.rodata)
20 *(.data) 20 *(.data)
21 } 21 }
22 22
23 .rodata :
24 {
25 *(.rodata)
26 }
27
23 .bss : 28 .bss :
24 { 29 {
25 *(.bss) 30 *(.bss)