We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95e6b69 commit df74a61Copy full SHA for df74a61
1 file changed
bsp/at91/at91sam9260/link_scripts/at91sam9260_ram.ld
@@ -6,12 +6,13 @@ SECTIONS
6
. = 0x20000000;
7
8
. = ALIGN(4);
9
- .text :
+ .text :
10
{
11
*(.init)
12
+ *(.vectors)
13
*(.text)
14
*(.gnu.linkonce.t*)
-
15
+
16
/* section information for finsh shell */
17
18
__fsymtab_start = .;
@@ -21,7 +22,7 @@ SECTIONS
21
22
__vsymtab_start = .;
23
KEEP(*(VSymTab))
24
__vsymtab_end = .;
- . = ALIGN(4);
25
+ . = ALIGN(4);
26
27
28
__rt_init_start = .;
@@ -74,11 +75,13 @@ SECTIONS
74
75
76
77
.nobss : { *(.nobss) }
78
79
80
__bss_start__ = .;
81
+ __bss_start = .;
82
.bss : { *(.bss)}
83
__bss_end__ = .;
84
+ __bss_end = .;
85
86
/* stabs debugging sections. */
87
.stab 0 : { *(.stab) }
0 commit comments