From 3bc6eb544ccfcd2f338652ca109442a8b8a01161 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 25 Mar 2014 14:53:28 -0500 Subject: [PATCH] rmodule: add subsections to linker script Depending on the compiler options, subsections of the form of .section.subsection could be generated. Therefore, include those subsections for .bss, .sbss, and .data. Change-Id: I80dd64d8c62e7bc449ee2bbc0a22a941777e2ea6 Signed-off-by: Aaron Durbin Reviewed-on: http://review.coreboot.org/5407 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Alexandru Gagniuc --- src/lib/rmodule.ld | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/rmodule.ld b/src/lib/rmodule.ld index 63b99b386d..fe5c29f8ec 100644 --- a/src/lib/rmodule.ld +++ b/src/lib/rmodule.ld @@ -62,6 +62,7 @@ SECTIONS /* Data section. */ _sdata = .; *(.data); + *(.data.*); . = ALIGN(4); _edata = .; @@ -72,7 +73,9 @@ SECTIONS /* C uninitialized data of the module. */ _bss = .; *(.bss); - *(.sbss); + *(.bss.*) + *(.sbss) + *(.sbss.*) *(COMMON); . = ALIGN(8); _ebss = .;