From: Alexander Graf Date: Mon, 20 Aug 2018 12:25:49 +0000 (+0200) Subject: riscv: Include bss subsections in linker script X-Git-Tag: v2018.09-rc3~33^2~10 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=122347f3663e454d73760b4f7ca5c39e680e1e18;p=oweals%2Fu-boot.git riscv: Include bss subsections in linker script When we build with -fdata-sections we may end up with bss subsections. Our linker script explicitly lists only a single consecutive bss section though. Adapt the statement to also include subsections. Signed-off-by: Alexander Graf --- diff --git a/arch/riscv/cpu/ax25/u-boot.lds b/arch/riscv/cpu/ax25/u-boot.lds index 3cc89746b1..c50b9642f1 100644 --- a/arch/riscv/cpu/ax25/u-boot.lds +++ b/arch/riscv/cpu/ax25/u-boot.lds @@ -82,7 +82,7 @@ SECTIONS .bss : { __bss_start = .; - *(.bss) + *(.bss*) . = ALIGN(4); __bss_end = .; }