From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabien Parent Date: Tue, 22 Nov 2016 18:13:32 +0100 Subject: [U-Boot] [PATCH v2 3/4] davinci: da850evm: fix empty boot method list in the SPL In-Reply-To: <20161122171333.30192-1-fparent@baylibre.com> References: <20161122171333.30192-1-fparent@baylibre.com> Message-ID: <20161122171333.30192-4-fparent@baylibre.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 Reviewed-by: Tom Rini --- v1 -> v2: * No change --- board/davinci/da8xxevm/u-boot-spl-da850evm.lds | 3 +++ 1 file changed, 3 insertions(+) diff --git a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds index ab4f50c..85a6be9 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*) -- 2.10.2