soc: xtensa: nxp_adsp: rt595: move .noinit
Mark .noinit section as NOLOAD and move it next to the other NOLOAD sections. This way it is removed from a generated image that is embedded in the rt595 app image. Signed-off-by: Mike J. Chen <mjchen@google.com>
This commit is contained in:
parent
55fa9b6149
commit
385ceb7145
1 changed files with 6 additions and 6 deletions
|
@ -329,12 +329,6 @@ SECTIONS
|
|||
KEEP (*(.fw_ready_metadata))
|
||||
} >sdram0 :sdram0_phdr
|
||||
|
||||
.noinit : ALIGN(4)
|
||||
{
|
||||
*(.noinit)
|
||||
*(.noinit.*)
|
||||
} >sdram0 :sdram0_phdr
|
||||
|
||||
.data : ALIGN(4)
|
||||
{
|
||||
__data_start = ABSOLUTE(.);
|
||||
|
@ -391,6 +385,12 @@ SECTIONS
|
|||
_bss_end = ABSOLUTE(.);
|
||||
} >sdram0 :sdram0_phdr
|
||||
|
||||
.noinit (NOLOAD) : ALIGN(4)
|
||||
{
|
||||
*(.noinit)
|
||||
*(.noinit.*)
|
||||
} >sdram0 :sdram0_phdr
|
||||
|
||||
.heap_mem (NOLOAD) : ALIGN(8)
|
||||
{
|
||||
. = ALIGN (8);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue