summaryrefslogtreecommitdiffstats
path: root/src/occ_gpe0/link.cmd
diff options
context:
space:
mode:
authorWilliam Bryan <wilbryan@us.ibm.com>2016-07-26 15:02:15 -0500
committerWilliam A. Bryan <wilbryan@us.ibm.com>2016-07-29 15:05:27 -0400
commit9ad0d6f666fcd2392a5d6d3634df82264a5729eb (patch)
tree97a99d6aa273436c55a30ce5db064f59b141b0c8 /src/occ_gpe0/link.cmd
parenta545aa59ce8788c4bfe6fd9bb2f64413bff47189 (diff)
downloadtalos-occ-9ad0d6f666fcd2392a5d6d3634df82264a5729eb.tar.gz
talos-occ-9ad0d6f666fcd2392a5d6d3634df82264a5729eb.zip
Delete unused files, update PK, and use new compilers
Change-Id: I9e4951a2cebd204d1ea752c63e3f2b532ad3a2db Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27465 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Martha Broyles <mbroyles@us.ibm.com> Reviewed-by: Wael El-Essawy <welessa@us.ibm.com>
Diffstat (limited to 'src/occ_gpe0/link.cmd')
-rw-r--r--src/occ_gpe0/link.cmd14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/occ_gpe0/link.cmd b/src/occ_gpe0/link.cmd
index 344c060..96eec61 100644
--- a/src/occ_gpe0/link.cmd
+++ b/src/occ_gpe0/link.cmd
@@ -72,7 +72,7 @@ SECTIONS
////////////////////////////////
// All non-vector code goes here
////////////////////////////////
- .text : { *(.text) . = ALIGN(128); } > sram
+ .text : { *(.text*) . = ALIGN(128); } > sram
////////////////////////////////
// Read-only Data
@@ -85,12 +85,12 @@ SECTIONS
// offsets.
_SDA2_BASE_ = .;
- .sdata2 . : { *(.sdata2) . = ALIGN(128); } > sram
- .sbss2 . : { *(.sbss2 ) . = ALIGN(128); } > sram
+ .sdata2 . : { *(.sdata2* ) . = ALIGN(128); } > sram
+ .sbss2 . : { *(.sbss2* ) . = ALIGN(128); } > sram
// Other read-only data.
- .rodata . : { *(.rodata*) *(.got2) . = ALIGN(128); } > sram
+ .rodata . : { *(.rodata*) *(.got2*) . = ALIGN(128); } > sram
__READ_ONLY_DATA_LEN__ = . - _RODATA_SECTION_BASE;
__WRITEABLE_DATA_ADDR__ = .;
@@ -107,14 +107,14 @@ SECTIONS
// offsets.
_SDA_BASE_ = .;
- .sdata . : { *(.sdata) . = ALIGN(128); } > sram
- .sbss . : { *(.sbss) . = ALIGN(128); } > sram
+ .sdata . : { *(.sdata*) . = ALIGN(128); } > sram
+ .sbss . : { *(.sbss*) . = ALIGN(128); } > sram
// Other read-write data
// It's not clear why boot.S is generating empty .glink,.iplt
.rela . : { *(.rela*) . = ALIGN(128); } > sram
- .rwdata . : { *(.data) *(.bss) . = ALIGN(128); } > sram
+ .rwdata . : { *(.data*) *(.bss*) . = ALIGN(128); } > sram
// .iplt . : { *(.iplt) ALIGN(128); } > sram
_PK_INITIAL_STACK_LIMIT = .;
OpenPOWER on IntegriCloud