From: Simon Glass Date: Tue, 3 Jun 2014 04:04:44 +0000 (-0600) Subject: ti: am335x: Fix the U-Boot binary output X-Git-Tag: submit/tizen/20140613.130021~63 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad3cd07f04e31c7f68c3cadc2f88475dd9205d5a;p=platform%2Fkernel%2Fu-boot.git ti: am335x: Fix the U-Boot binary output This should include the hash so that image_binary_size is really at the end of the image, and not some 300 bytes earlier. Signed-off-by: Simon Glass --- diff --git a/board/ti/am335x/u-boot.lds b/board/ti/am335x/u-boot.lds index 2c5a0f8..78f294a 100644 --- a/board/ti/am335x/u-boot.lds +++ b/board/ti/am335x/u-boot.lds @@ -78,6 +78,8 @@ SECTIONS *(.__rel_dyn_end) } + .hash : { *(.hash*) } + .end : { *(.__end) @@ -118,7 +120,6 @@ SECTIONS .dynbss : { *(.dynbss) } .dynstr : { *(.dynstr*) } .dynamic : { *(.dynamic*) } - .hash : { *(.hash*) } .gnu.hash : { *(.gnu.hash) } .plt : { *(.plt*) } .interp : { *(.interp*) }