diff options
author | Dino Li <dino.li@ite.com.tw> | 2015-11-12 13:32:58 +0800 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2015-11-12 17:55:02 -0800 |
commit | 21c0f8e69c7bceb626fcc0bcbada2a2ad83c9369 (patch) | |
tree | 9fee0f3dda8e89e58ba1b9db48022fd8e9e87e46 /core | |
parent | f175ca810ac71fcfeae36273826c843314637164 (diff) | |
download | chrome-ec-21c0f8e69c7bceb626fcc0bcbada2a2ad83c9369.tar.gz |
nds32: fix lds
symptom:
.bss.slow won't be cleared during initialization.
Signed-off-by: Dino Li <dino.li@ite.com.tw>
BRANCH=none
BUG=none
TEST=.bss.slow = 0.
Change-Id: I6a8b84807b36a64f29732f09f56947e17d5ba898
Reviewed-on: https://chromium-review.googlesource.com/312155
Commit-Ready: Dino Li <dino.li@ite.com.tw>
Tested-by: Dino Li <dino.li@ite.com.tw>
Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/nds32/ec.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
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 = .; |