mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
davinci: da850evm: fix empty boot method list in the SPL
The list of available boot method is not part of the binary which prevent the SPL from booting u-boot or Linux. Add the missing .u_boot_list* sections to the binary to fix it. Signed-off-by: Fabien Parent <fparent@baylibre.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
a5ab44f69b
commit
5d7cdf3af6
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ SECTIONS
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
|
.data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
|
||||||
|
|
||||||
|
. = ALIGN(4);
|
||||||
|
.u_boot_list : { KEEP(*(SORT(.u_boot_list*))); } >.sram
|
||||||
|
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
.rel.dyn : {
|
.rel.dyn : {
|
||||||
__rel_dyn_start = .;
|
__rel_dyn_start = .;
|
||||||
|
|
Loading…
Add table
Reference in a new issue