From 21c0f8e69c7bceb626fcc0bcbada2a2ad83c9369 Mon Sep 17 00:00:00 2001 From: Dino Li Date: Thu, 12 Nov 2015 13:32:58 +0800 Subject: nds32: fix lds symptom: .bss.slow won't be cleared during initialization. Signed-off-by: Dino Li BRANCH=none BUG=none TEST=.bss.slow = 0. Change-Id: I6a8b84807b36a64f29732f09f56947e17d5ba898 Reviewed-on: https://chromium-review.googlesource.com/312155 Commit-Ready: Dino Li Tested-by: Dino Li Reviewed-by: Aseda Aboagye Reviewed-by: Randall Spangler --- core/nds32/ec.lds.S | 1 + 1 file changed, 1 insertion(+) diff --git a/core/nds32/ec.lds.S b/core/nds32/ec.lds.S index 13f090ee28..5a7f306f42 100644 --- a/core/nds32/ec.lds.S +++ b/core/nds32/ec.lds.S @@ -183,6 +183,7 @@ SECTIONS *(.bss.system_stack) /* Rest of .bss takes care of its own alignment */ *(.bss) + *(.bss.slow) . = ALIGN(4); __bss_end = .; -- cgit v1.2.1