nxp_adsp: linker: Rename text area variables
Use Zephyr's convention for text region start and end. Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
This commit is contained in:
parent
7c55eb5dfa
commit
24f2d2e136
3 changed files with 6 additions and 6 deletions
|
@ -346,7 +346,7 @@ SECTIONS
|
||||||
.text : ALIGN(4)
|
.text : ALIGN(4)
|
||||||
{
|
{
|
||||||
_stext = .;
|
_stext = .;
|
||||||
_text_start = ABSOLUTE(.);
|
__text_region_start = ABSOLUTE(.);
|
||||||
KEEP (*(.ResetVector.text))
|
KEEP (*(.ResetVector.text))
|
||||||
*(.ResetVector.literal)
|
*(.ResetVector.literal)
|
||||||
*(.entry.text)
|
*(.entry.text)
|
||||||
|
@ -356,7 +356,7 @@ SECTIONS
|
||||||
*(.fini.literal)
|
*(.fini.literal)
|
||||||
KEEP(*(.fini))
|
KEEP(*(.fini))
|
||||||
*(.gnu.version)
|
*(.gnu.version)
|
||||||
_text_end = ABSOLUTE(.);
|
__text_region_end = ABSOLUTE(.);
|
||||||
_etext = .;
|
_etext = .;
|
||||||
} >sdram0 :sdram0_phdr
|
} >sdram0 :sdram0_phdr
|
||||||
|
|
||||||
|
|
|
@ -352,7 +352,7 @@ SECTIONS
|
||||||
.text : ALIGN(4)
|
.text : ALIGN(4)
|
||||||
{
|
{
|
||||||
_stext = .;
|
_stext = .;
|
||||||
_text_start = ABSOLUTE(.);
|
__text_region_start = ABSOLUTE(.);
|
||||||
KEEP (*(.ResetVector.text))
|
KEEP (*(.ResetVector.text))
|
||||||
*(.ResetVector.literal)
|
*(.ResetVector.literal)
|
||||||
*(.entry.text)
|
*(.entry.text)
|
||||||
|
@ -362,7 +362,7 @@ SECTIONS
|
||||||
*(.fini.literal)
|
*(.fini.literal)
|
||||||
KEEP(*(.fini))
|
KEEP(*(.fini))
|
||||||
*(.gnu.version)
|
*(.gnu.version)
|
||||||
_text_end = ABSOLUTE(.);
|
__text_region_end = ABSOLUTE(.);
|
||||||
_etext = .;
|
_etext = .;
|
||||||
} >sdram0 :sdram0_phdr
|
} >sdram0 :sdram0_phdr
|
||||||
|
|
||||||
|
|
|
@ -307,7 +307,7 @@ SECTIONS
|
||||||
.text : ALIGN(4)
|
.text : ALIGN(4)
|
||||||
{
|
{
|
||||||
_stext = .;
|
_stext = .;
|
||||||
_text_start = ABSOLUTE(.);
|
__text_region_start = ABSOLUTE(.);
|
||||||
KEEP (*(.ResetVector.text))
|
KEEP (*(.ResetVector.text))
|
||||||
*(.ResetVector.literal)
|
*(.ResetVector.literal)
|
||||||
*(.entry.text)
|
*(.entry.text)
|
||||||
|
@ -317,7 +317,7 @@ SECTIONS
|
||||||
*(.fini.literal)
|
*(.fini.literal)
|
||||||
KEEP(*(.fini))
|
KEEP(*(.fini))
|
||||||
*(.gnu.version)
|
*(.gnu.version)
|
||||||
_text_end = ABSOLUTE(.);
|
__text_region_end = ABSOLUTE(.);
|
||||||
_etext = .;
|
_etext = .;
|
||||||
} >iram_text_start :iram_text_start_phdr
|
} >iram_text_start :iram_text_start_phdr
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue