diff options
author | Gabe Black <gabeblack@google.com> | 2013-07-30 13:46:58 -0700 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2013-12-21 19:56:24 +0100 |
commit | 74dbfc252ff07a9c9b7fcf4511e561991d5bd46d (patch) | |
tree | adef4976fe971fd4fa34ff2c649d822254aaabac /src/arch/armv7 | |
parent | 80e6293a89fd3e0dc564b2ac04063aa4aa7cafab (diff) | |
download | coreboot-74dbfc252ff07a9c9b7fcf4511e561991d5bd46d.tar.xz |
arm: Remove __image_copy_end from the ARM linker script
That symbol isn't used by anything and doesn't appear in other linker scripts.
Change-Id: Iab54ecb3be2e262d7674ef8ee7ed13ea2e5b56f3
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-on: https://gerrit.chromium.org/gerrit/63776
Commit-Queue: Gabe Black <gabeblack@chromium.org>
Reviewed-by: Gabe Black <gabeblack@chromium.org>
Tested-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/4399
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/arch/armv7')
-rw-r--r-- | src/arch/armv7/romstage.ld | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/arch/armv7/romstage.ld b/src/arch/armv7/romstage.ld index 146ba77b36..14c5bde3a6 100644 --- a/src/arch/armv7/romstage.ld +++ b/src/arch/armv7/romstage.ld @@ -73,9 +73,6 @@ SECTIONS _car_data_end = .; } - - __image_copy_end = .; - /* bss does not contain data, it is just a space that should be zero * initialized on startup. (typically uninitialized global variables) * crt0.S fills between _bss and _ebss with zeroes. |