soc: esp32: Fix placement for system heap
System heap buffer was moved from dram0_0_seg to dram0_1_seg. This commit fixes system heap buffer placement. Signed-off-by: Shubham Kulkarni <shubham.kulkarni@espressif.com>
This commit is contained in:
parent
e93b41a21a
commit
25d97da7d3
1 changed files with 3 additions and 0 deletions
|
@ -460,6 +460,9 @@ __shell_root_cmds_end = __esp_shell_root_cmds_end;
|
||||||
. = ALIGN (4);
|
. = ALIGN (4);
|
||||||
_btdm_bss_end = ABSOLUTE(.);
|
_btdm_bss_end = ABSOLUTE(.);
|
||||||
|
|
||||||
|
/* Buffer for system heap should be placed in dram0_0_seg */
|
||||||
|
*libkernel.a:mempool.*(.noinit.kheap_buf__system_heap .noinit.*.kheap_buf__system_heap)
|
||||||
|
|
||||||
*(.dynsbss)
|
*(.dynsbss)
|
||||||
*(.sbss)
|
*(.sbss)
|
||||||
*(.sbss.*)
|
*(.sbss.*)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue