summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2021-10-11 22:14:31 +0000
committerCommit Bot <commit-bot@chromium.org>2021-10-19 17:04:33 +0000
commit7dcbbb899b5ee0c68c490a88343305f20074f371 (patch)
tree5fd80f48d98226d7f80a81031e13d01f2f3a29d1 /core
parent01d23cbdea6fc63110733fd6d0701e7cf2612651 (diff)
downloadchrome-ec-7dcbbb899b5ee0c68c490a88343305f20074f371.tar.gz
tree: Remove .bss.slow
The config option to enable .bss.slow was removed in commit b224441aaaa5dd08274811d65bb795b4abc231d8 because the option was only used with kunimitsu, which was removed from the EC codebase a long time ago. Remove the reference in the linker maps to complete the cleanup. BRANCH=none BUG=b:172020503, b:172221339 TEST=make buildall Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: Ibc519f9974cb26e6d15180e2ce0c359867ced1ac Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3219263 Reviewed-by: Ting Shen <phoenixshen@chromium.org>
Diffstat (limited to 'core')
-rw-r--r--core/cortex-m/ec.lds.S9
-rw-r--r--core/cortex-m0/ec.lds.S1
-rw-r--r--core/nds32/ec.lds.S1
-rw-r--r--core/riscv-rv32i/ec.lds.S1
4 files changed, 0 insertions, 12 deletions
diff --git a/core/cortex-m/ec.lds.S b/core/cortex-m/ec.lds.S
index b97f17382c..dd3811bb78 100644
--- a/core/cortex-m/ec.lds.S
+++ b/core/cortex-m/ec.lds.S
@@ -408,16 +408,7 @@ SECTIONS
__deferred_until = .;
. += (__deferred_funcs_end - __deferred_funcs) * (8 / 4);
__deferred_until_end = .;
- } > IRAM
- .bss.slow : {
- /* Region of RAM reclaimed from the little firmware(LFW). */
- *(.bss.slow)
- /*
- * Not replacing the loader, so .bss.slow is part of .bss.
- * It needs to be followed by __bss_end so that .bss.slow
- * will be zeroed by init.
- */
. = ALIGN(4);
__bss_end = .;
} > IRAM
diff --git a/core/cortex-m0/ec.lds.S b/core/cortex-m0/ec.lds.S
index 031cb6b1b3..a04b92f5ff 100644
--- a/core/cortex-m0/ec.lds.S
+++ b/core/cortex-m0/ec.lds.S
@@ -264,7 +264,6 @@ SECTIONS
*(.bss.system_stack)
/* Rest of .bss takes care of its own alignment */
*(.bss)
- *(.bss.slow)
/*
* Reserve space for deferred function firing times.
diff --git a/core/nds32/ec.lds.S b/core/nds32/ec.lds.S
index da65f1a1f0..fbc5ceaafd 100644
--- a/core/nds32/ec.lds.S
+++ b/core/nds32/ec.lds.S
@@ -248,7 +248,6 @@ SECTIONS
*(.bss.task_scratchpad)
/* Rest of .bss takes care of its own alignment */
*(.bss)
- *(.bss.slow)
/*
* Reserve space for deferred function firing times.
diff --git a/core/riscv-rv32i/ec.lds.S b/core/riscv-rv32i/ec.lds.S
index 9e7acd684b..21c3de1143 100644
--- a/core/riscv-rv32i/ec.lds.S
+++ b/core/riscv-rv32i/ec.lds.S
@@ -318,7 +318,6 @@ SECTIONS
. = ALIGN(4);
/* Rest of .bss takes care of its own alignment */
*(.bss)
- *(.bss.slow)
/*
* Reserve space for deferred function firing times.