diff options
author | Fabien Parent | 2016-11-29 14:23:40 +0100 |
---|---|---|
committer | Tom Rini | 2016-12-03 13:21:14 -0500 |
commit | 5d7cdf3af64efb58fc272db1f74954401d7877f7 (patch) | |
tree | ef42e5b42711dd8111cd5b37ce0004ebccfda7d3 /board/davinci | |
parent | a5ab44f69bc4809cfaeea2fdb4e391dc828f49a1 (diff) |
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>
Diffstat (limited to 'board/davinci')
-rw-r--r-- | board/davinci/da8xxevm/u-boot-spl-da850evm.lds | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds index ab4f50cbbeb..85a6be90c59 100644 --- a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds +++ b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds @@ -34,6 +34,9 @@ SECTIONS .data : { *(SORT_BY_ALIGNMENT(.data*)) } >.sram . = ALIGN(4); + .u_boot_list : { KEEP(*(SORT(.u_boot_list*))); } >.sram + + . = ALIGN(4); .rel.dyn : { __rel_dyn_start = .; *(.rel*) |