From 2c67e0e7cfa750b006725d3a42f42d3926979b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Mon, 27 Jan 2014 05:48:11 +0100 Subject: arm: Handle .gnu.hash section in ldscripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avoids "could not find output section .gnu.hash" ld.bfd errors on openSUSE. Cc: Albert Aribaud Cc: Tom Rini Signed-off-by: Andreas Färber Acked-by: Simon Glass Tested-by: Simon Glass --- board/ti/am335x/u-boot.lds | 1 + 1 file changed, 1 insertion(+) (limited to 'board') diff --git a/board/ti/am335x/u-boot.lds b/board/ti/am335x/u-boot.lds index ceb20226ff..a9e3d34df9 100644 --- a/board/ti/am335x/u-boot.lds +++ b/board/ti/am335x/u-boot.lds @@ -118,6 +118,7 @@ SECTIONS .dynstr : { *(.dynstr*) } .dynamic : { *(.dynamic*) } .hash : { *(.hash*) } + .gnu.hash : { *(.gnu.hash) } .plt : { *(.plt*) } .interp : { *(.interp*) } .gnu : { *(.gnu*) } -- cgit v1.2.1