diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2013-02-12 22:22:13 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2013-02-12 22:22:13 +0100 |
commit | 28875e2c4731296ee7ed645d07f1c28c0301f1c4 (patch) | |
tree | 7f80856cdbc7692ed60f0c41a15b516b642d8350 /arch/mips/include | |
parent | 696a3b2a5368360c149335e2a35b8900a78f47fa (diff) | |
download | u-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/include')
-rw-r--r-- | arch/mips/include/asm/u-boot-mips.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/mips/include/asm/u-boot-mips.h b/arch/mips/include/asm/u-boot-mips.h index bfb6a4a..a483166 100644 --- a/arch/mips/include/asm/u-boot-mips.h +++ b/arch/mips/include/asm/u-boot-mips.h @@ -5,9 +5,6 @@ * Copyright (C) 2003 Wolfgang Denk, DENX Software Engineering, wd@denx.de */ -extern ulong uboot_end_data; -extern ulong uboot_end; - static inline unsigned long bss_start(void) { extern ulong __bss_start; |