aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2014-08-29 10:01:39 -0500
committerPatrick Georgi <pgeorgi@google.com>2015-03-27 08:04:32 +0100
commitb31001f4b6ff524cf68a84a7f4f152a2756e0ac1 (patch)
treef053aa40543b86d8f650924a9e7c52c6c32b7822
parent474ae2faacd21a5e8b5d8b19701cd84746d6c3f2 (diff)
arm64: remove _stack and _estack symbols in linker script
These symbols should have been removed with the stack refactoring. I'm not sure how it was missed. BUG=chrome-os-partner:31545 BRANCH=None TEST=Built and booted into kernel with both cpus. Change-Id: Ia6c2103d7b5e2c9d74cdc5d1b5f42f8954812231 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: d9432b5cf0cce3bfdbfd5371fb3280e3cc746a42 Original-Change-Id: I17bc9a7aaaf133f427b15f803a6003fa2ca8f8a6 Original-Signed-off-by: Aaron Durbin <adurbin@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/215541 Reviewed-on: http://review.coreboot.org/9024 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r--src/arch/arm64/ramstage.ld4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/arch/arm64/ramstage.ld b/src/arch/arm64/ramstage.ld
index c1c2221dd7..d767778860 100644
--- a/src/arch/arm64/ramstage.ld
+++ b/src/arch/arm64/ramstage.ld
@@ -105,10 +105,6 @@ SECTIONS
_eheap = .;
}
- /* arm64 chipsets need to define CONFIG_RAMSTAGE_STACK_(TOP|BOTTOM) */
- _stack = CONFIG_RAMSTAGE_STACK_BOTTOM;
- _estack = CONFIG_RAMSTAGE_STACK_TOP;
-
/* The ram segment. This includes all memory used by the memory
* resident copy of coreboot, except the tables that are produced on
* the fly, but including stack and heap.