[coreboot-gerrit] Patch set updated for coreboot: lib/program.ld: add .sdata sections

Aaron Durbin (adurbin@chromium.org) gerrit at coreboot.org
Sat Oct 29 00:37:25 CEST 2016


Aaron Durbin (adurbin at chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17180

-gerrit

commit e28c471039d3c48e9da9bbd0d712ec544195064e
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Fri Oct 28 12:24:48 2016 -0500

    lib/program.ld: add .sdata sections
    
    Ron reported some toolchain emitting .sdata sections. Let's ensure
    we catch objects in those sections instead of getting dropped on the
    floor for architectures which emit those sections.
    
    Change-Id: I0680228f8424f99611914ef5fc31adf5d3891eee
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/lib/program.ld | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/lib/program.ld b/src/lib/program.ld
index 4668aea..1526aad 100644
--- a/src/lib/program.ld
+++ b/src/lib/program.ld
@@ -100,6 +100,8 @@
 
 	*(.data);
 	*(.data.*);
+	*(.sdata);
+	*(.sdata.*);
 
 #ifdef __PRE_RAM__
 	PROVIDE(_preram_cbmem_console = .);



More information about the coreboot-gerrit mailing list