File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
bsp/at91/at91sam9260/link_scripts Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,13 @@ SECTIONS
6
6
. = 0x20000000;
7
7
8
8
. = ALIGN (4);
9
- .text :
9
+ .text :
10
10
{
11
11
*(.init)
12
+ *(.vectors)
12
13
*(.text)
13
14
*(.gnu.linkonce.t*)
14
-
15
+
15
16
/* section information for finsh shell */
16
17
. = ALIGN (4);
17
18
__fsymtab_start = .;
@@ -21,7 +22,7 @@ SECTIONS
21
22
__vsymtab_start = .;
22
23
KEEP(*(VSymTab))
23
24
__vsymtab_end = .;
24
- . = ALIGN (4);
25
+ . = ALIGN (4);
25
26
26
27
. = ALIGN (4);
27
28
__rt_init_start = .;
@@ -74,11 +75,13 @@ SECTIONS
74
75
75
76
. = ALIGN (4);
76
77
.nobss : { *(.nobss) }
77
-
78
+
78
79
. = ALIGN (4);
79
80
__bss_start__ = .;
81
+ __bss_start = .;
80
82
.bss : { *(.bss)}
81
83
__bss_end__ = .;
84
+ __bss_end = .;
82
85
83
86
/* stabs debugging sections. */
84
87
.stab 0 : { *(.stab) }
You can’t perform that action at this time.
0 commit comments