File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
targets/TARGET_Realtek/TARGET_AMEBA/TARGET_RTL8195A/device/TOOLCHAIN_GCC_ARM Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,15 @@ SECTIONS
70
70
*rtl8195a_crypto.o (.text* .rodata*)
71
71
*mbedtls*.o (.text* .rodata*)
72
72
*libc.a : (.text* .rodata*)
73
+ *Ticker.o (.text*)
74
+ *Timeout.o (.text*)
75
+ *TimerEvent.o (.text*)
76
+ *mbed_ticker_api.o (.text*)
77
+ *mbed_critical.o (.text*)
78
+
79
+ *us_ticker.o (.text*)
80
+ *lib_peripheral_mbed_gcc.a : (.text*)
81
+
73
82
} > SRAM1
74
83
75
84
.text.sram2 :
@@ -109,17 +118,18 @@ SECTIONS
109
118
.data.sram1 :
110
119
{
111
120
. = ALIGN (4);
112
- __sdram_data_start__ = .;
121
+ __sram_data_start__ = .;
113
122
*rtl8195a_crypto*.o (.data*)
114
123
*mbedtls*.o (.data*)
115
- *(.sdram.data*)
116
- __sdram_data_end__ = .;
124
+ __sram_data_end__ = .;
117
125
} > SRAM1
118
126
119
127
.data.sram2 :
120
128
{
129
+ __sdram_data_start__ = .;
121
130
*(vtable)
122
131
*(.data*)
132
+ *(.sdram.data*)
123
133
124
134
. = ALIGN (4);
125
135
/* preinit data */
@@ -143,6 +153,7 @@ SECTIONS
143
153
144
154
. = ALIGN (4);
145
155
156
+ __sdram_data_end__ = .;
146
157
/* All data end */
147
158
} > SRAM2
148
159
__data_end__ = .;
You can’t perform that action at this time.
0 commit comments