diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2013-02-12 22:22:12 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2013-02-12 22:22:12 +0100 |
commit | 3420bf1ca0631ef6347fece1e9f0eb38b1051a98 (patch) | |
tree | 2c326211983ea8c1edb3bb412a18bd3759412f0a /arch/mips/cpu | |
parent | a52852c5a65fe6636c7408829eced892deefc1de (diff) | |
download | u-boot-imx-3420bf1ca0631ef6347fece1e9f0eb38b1051a98.zip u-boot-imx-3420bf1ca0631ef6347fece1e9f0eb38b1051a98.tar.gz u-boot-imx-3420bf1ca0631ef6347fece1e9f0eb38b1051a98.tar.bz2 |
MIPS: u-boot.lds: introduce symbol __image_copy_end
This symbol is used in later patches as end address
for relocation of the U-Boot image into RAM.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'arch/mips/cpu')
-rw-r--r-- | arch/mips/cpu/u-boot.lds | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/cpu/u-boot.lds b/arch/mips/cpu/u-boot.lds index 6980b86..7b5fca0 100644 --- a/arch/mips/cpu/u-boot.lds +++ b/arch/mips/cpu/u-boot.lds @@ -70,6 +70,8 @@ SECTIONS uboot_end_data = .; . = ALIGN(4); + __image_copy_end = .; + .bss : { __bss_start = .; *(.sbss.*) |