soc: esp32s3: fix heap_sentry reference
Fix heap_sentry value to point final useful stack area. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
This commit is contained in:
parent
d0d3f1446a
commit
bcb59b8f46
1 changed files with 2 additions and 1 deletions
|
@ -468,7 +468,6 @@ SECTIONS
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
_end = ABSOLUTE(.);
|
_end = ABSOLUTE(.);
|
||||||
_heap_sentry = .;
|
|
||||||
__data_end = ABSOLUTE(.);
|
__data_end = ABSOLUTE(.);
|
||||||
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|
||||||
|
|
||||||
|
@ -635,6 +634,8 @@ SECTIONS
|
||||||
#include <zephyr/linker/intlist.ld>
|
#include <zephyr/linker/intlist.ld>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
_heap_sentry = 0x3fceb910;
|
||||||
|
|
||||||
#include <zephyr/linker/debug-sections.ld>
|
#include <zephyr/linker/debug-sections.ld>
|
||||||
|
|
||||||
.xtensa.info 0 : { *(.xtensa.info) }
|
.xtensa.info 0 : { *(.xtensa.info) }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue