fix(freertos): fix link bss data to IRAM causing crash

Global data of port.c, xtensa_context.S and xtensa_vectors.S should not be linked into IRAM now.
This commit is contained in:
dongheng
2019-10-09 15:27:22 +08:00
parent d6ec931ec7
commit 63b5c1969b

View File

@ -2,4 +2,11 @@
archive: libfreertos.a
entries:
if FREERTOS_GLOBAL_DATA_LINK_IRAM = y:
* (iram_bss)
event_groups (iram_bss)
list (iram_bss)
queue (iram_bss)
stream_buffer (iram_bss)
tasks (iram_bss)
timers (iram_bss)
freertos_hooks (iram_bss)
impure(iram_bss)