diff options
author | Albert ARIBAUD | 2014-02-22 17:53:42 +0100 |
---|---|---|
committer | Albert ARIBAUD | 2014-02-26 21:18:09 +0100 |
commit | d0b5d9da5de280120b73e776663f6a3024f225f4 (patch) | |
tree | 32cbe0960e201c98f1f6ebe49fad1f3cac94291c /board/samsung/common | |
parent | 62bbc2f25aab6010042dc1d22e9f8449fc946449 (diff) |
arm: make _end compiler-generated
This prevents references to _end from generating absolute
relocation records.
This change is binary invariant for ARM targets.
Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Diffstat (limited to 'board/samsung/common')
-rw-r--r-- | board/samsung/common/exynos-uboot-spl.lds | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/samsung/common/exynos-uboot-spl.lds b/board/samsung/common/exynos-uboot-spl.lds index 8e3b73ecf78..b22f9e07bbb 100644 --- a/board/samsung/common/exynos-uboot-spl.lds +++ b/board/samsung/common/exynos-uboot-spl.lds @@ -42,7 +42,11 @@ SECTIONS . = ALIGN(4); __image_copy_end = .; - _end = .; + + .end : + { + *(.__end) + } >.sram .bss : { |