Commit 5d7cdf3af64efb58fc272db1f74954401d7877f7

Authored by Fabien Parent
Committed by Tom Rini
1 parent a5ab44f69b

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>

Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff

board/davinci/da8xxevm/u-boot-spl-da850evm.lds
... ... @@ -34,6 +34,9 @@
34 34 .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram
35 35  
36 36 . = ALIGN(4);
  37 + .u_boot_list : { KEEP(*(SORT(.u_boot_list*))); } >.sram
  38 +
  39 + . = ALIGN(4);
37 40 .rel.dyn : {
38 41 __rel_dyn_start = .;
39 42 *(.rel*)