summaryrefslogtreecommitdiff
path: root/arch/mips/cpu/u-boot.lds
diff options
context:
space:
mode:
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2013-02-12 22:22:13 +0100
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2013-02-12 22:22:13 +0100
commit28875e2c4731296ee7ed645d07f1c28c0301f1c4 (patch)
tree7f80856cdbc7692ed60f0c41a15b516b642d8350 /arch/mips/cpu/u-boot.lds
parent696a3b2a5368360c149335e2a35b8900a78f47fa (diff)
downloadu-boot-imx-28875e2c4731296ee7ed645d07f1c28c0301f1c4.zip
u-boot-imx-28875e2c4731296ee7ed645d07f1c28c0301f1c4.tar.gz
u-boot-imx-28875e2c4731296ee7ed645d07f1c28c0301f1c4.tar.bz2
MIPS: start.S: use symbol __image_copy_end for U-Boot image relocation
Use the newly introduced symbol __image_copy_end as end address for relocation of U-Boot image. This is needed for dynamic relocation added in later patches. This patch obsoletes the symbols uboot_end and uboot_end_data which are removed. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'arch/mips/cpu/u-boot.lds')
-rw-r--r--arch/mips/cpu/u-boot.lds4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/mips/cpu/u-boot.lds b/arch/mips/cpu/u-boot.lds
index 7b5fca0..4cd983a 100644
--- a/arch/mips/cpu/u-boot.lds
+++ b/arch/mips/cpu/u-boot.lds
@@ -67,8 +67,6 @@ SECTIONS
#include <u-boot.lst>
}
- uboot_end_data = .;
-
. = ALIGN(4);
__image_copy_end = .;
@@ -80,6 +78,4 @@ SECTIONS
. = ALIGN(4);
__bss_end = .;
}
-
- uboot_end = .;
}