Skip to content

Commit 59107e5

Browse files
tmedicciAlan Carvalho de Assis
authored andcommitted
esp32s3: Fix issue regarding IRAM-enabled ISRs by fixing the linker
After apache#11007 was merged, the path for some files changed, requiring the linker to be fixed to make it run from the internal memory once again.
1 parent 607792d commit 59107e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boards/xtensa/esp32s3/common/scripts/legacy_sections.ld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ SECTIONS
8888
*libarch.a:xtensa_testset.*(.literal .text .literal.* .text.*)
8989

9090
#ifdef CONFIG_ESP32S3_BLE
91-
*libc.a:bin/sq_remlast.*(.literal .text .literal.* .text.*)
91+
*libc.a:sq_remlast.*(.literal .text .literal.* .text.*)
9292
#endif
9393

9494
*libdrivers.a:syslog_flush.*(.literal .text .literal.* .text.*)
@@ -121,7 +121,7 @@ SECTIONS
121121
*libsched.a:sched_mergepending.*(.literal.nxsched_merge_pending .text.nxsched_merge_pending)
122122
*libsched.a:sched_resumescheduler.*(.literal.nxsched_resume_scheduler .text.nxsched_resume_scheduler)
123123

124-
*libc.a:bin/sq_remfirst.*(.literal.sq_remfirst .text.sq_remfirst)
124+
*libc.a:sq_remfirst.*(.literal.sq_remfirst .text.sq_remfirst)
125125
#endif
126126

127127
*(.wifirxiram .wifirxiram.*)

0 commit comments

Comments
 (0)