forked from Imagelibrary/rtems
bsps: Fix some linker set descriptions
Fix broken RTEMS linker set descriptions introduced by
b618d8cfc5.
This commit is contained in:
@@ -52,7 +52,8 @@ SECTIONS
|
||||
*(.plt)
|
||||
KEEP (*(.init))
|
||||
KEEP (*(.fini))
|
||||
*(.rodata .rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r.*)
|
||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||||
KEEP (*(SORT(.rtemsroset.*)))
|
||||
*(.rodata1)
|
||||
*(.eh_frame_hdr)
|
||||
KEEP (*(.eh_frame))
|
||||
|
||||
@@ -78,7 +78,7 @@ SECTIONS
|
||||
PROVIDE (__etext = .);
|
||||
PROVIDE (_etext = .);
|
||||
PROVIDE (etext = .);
|
||||
.rodata : { *(.rodata .rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r.*) }
|
||||
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) KEEP (*(SORT(.rtemsroset.*))) }
|
||||
.rodata1 : { *(.rodata1) }
|
||||
.tdata : {
|
||||
_TLS_Data_begin = .;
|
||||
|
||||
@@ -193,8 +193,9 @@ SECTIONS
|
||||
{
|
||||
PROVIDE (__ram_rodata_start = ABSOLUTE(.));
|
||||
. = ALIGN(32 / 8);
|
||||
*(.rodata .rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r.*)
|
||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||||
*(.rodata1)
|
||||
KEEP (*(SORT(.rtemsroset.*)))
|
||||
} > onchip_memory_0
|
||||
|
||||
.tdata : {
|
||||
|
||||
@@ -95,8 +95,9 @@ SECTIONS
|
||||
|
||||
.rodata :
|
||||
{
|
||||
*(.rodata .rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r.*)
|
||||
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||||
*(.rodata1)
|
||||
KEEP (*(SORT(.rtemsroset.*)))
|
||||
. = ALIGN (bsp_section_align);
|
||||
__rodata_end = .;
|
||||
} >ROM =0
|
||||
|
||||
@@ -91,7 +91,7 @@ SECTIONS
|
||||
} > RAM
|
||||
|
||||
/* Miscellaneous read-only data */
|
||||
.rodata : { *(.rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r*) } > RAM
|
||||
.rodata : { *(.rodata.* .gnu.linkonce.r*) KEEP (*(SORT(.rtemsroset.*))) } > RAM
|
||||
.rodata1 : { *(.rodata1) } > RAM
|
||||
|
||||
.tdata : {
|
||||
|
||||
@@ -91,7 +91,7 @@ SECTIONS
|
||||
} > RAM
|
||||
|
||||
/* Miscellaneous read-only data */
|
||||
.rodata : { *(.rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r*) } > RAM
|
||||
.rodata : { *(.rodata.* .gnu.linkonce.r*) KEEP (*(SORT(.rtemsroset.*))) } > RAM
|
||||
.rodata1 : { *(.rodata1) } > RAM
|
||||
|
||||
.tdata : {
|
||||
|
||||
@@ -89,7 +89,7 @@ SECTIONS
|
||||
*(.call_table_text)
|
||||
}
|
||||
.fini : { KEEP (*(.fini)) } =0
|
||||
.rodata : { *(.rodata .rodata.* KEEP (*(SORT(.rtemsroset.*))) .gnu.linkonce.r.*) }
|
||||
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) KEEP (*(SORT(.rtemsroset.*))) }
|
||||
.rodata1 : { *(.rodata1) }
|
||||
.tdata : {
|
||||
__TLS_Data_begin = .;
|
||||
|
||||
Reference in New Issue
Block a user