mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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>
This commit is contained in:
parent
11a932fb18
commit
a0af08b9db
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ SECTIONS
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__image_copy_end = .;
|
__image_copy_end = .;
|
||||||
|
__init_end = .;
|
||||||
|
|
||||||
.rel.dyn : {
|
.rel.dyn : {
|
||||||
__rel_dyn_start = .;
|
__rel_dyn_start = .;
|
||||||
|
|
Loading…
Reference in a new issue