diff options
author | Paul Burton <paul.burton@imgtec.com> | 2014-04-07 10:11:19 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2014-04-20 13:16:43 +0200 |
commit | a0af08b9db92c7dc8051a8cfd12d5520d85ab4a9 (patch) | |
tree | 6027af8508d9669bc7348bc8fbdc01120dfbd17f /arch/mips/cpu/u-boot.lds | |
parent | 11a932fb18a497fc1b9ad0c4c0e3c5969e455a42 (diff) | |
download | u-boot-imx-a0af08b9db92c7dc8051a8cfd12d5520d85ab4a9.zip u-boot-imx-a0af08b9db92c7dc8051a8cfd12d5520d85ab4a9.tar.gz u-boot-imx-a0af08b9db92c7dc8051a8cfd12d5520d85ab4a9.tar.bz2 |
MIPS: define __init_end in u-boot.lds
The generic board code uses the __init_end symbol to calculate
monitor_flash_len. Define said symbol for MIPS, equivalent to
__image_copy_end which is used for the same purpose in
arch/mips/lib/board.c.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch/mips/cpu/u-boot.lds')
-rw-r--r-- | arch/mips/cpu/u-boot.lds | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/cpu/u-boot.lds b/arch/mips/cpu/u-boot.lds index 4c9edf8..e504ea7 100644 --- a/arch/mips/cpu/u-boot.lds +++ b/arch/mips/cpu/u-boot.lds @@ -53,6 +53,7 @@ SECTIONS . = ALIGN(4); __image_copy_end = .; + __init_end = .; .rel.dyn : { __rel_dyn_start = .; |