From: Simon Glass Date: Tue, 3 Jun 2014 04:04:46 +0000 (-0600) Subject: mx31ads: Fix the U-Boot binary output X-Git-Tag: submit/tizen/20140613.130021~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6469a34678e77ae3e10dd8e5ced89b2c348b46ea;p=platform%2Fkernel%2Fu-boot.git mx31ads: Fix the U-Boot binary output Correct the binary output so that image_binary_size is really at the end of the image. Signed-off-by: Simon Glass --- diff --git a/board/freescale/mx31ads/u-boot.lds b/board/freescale/mx31ads/u-boot.lds index 61b83bf..8a4a8a2 100644 --- a/board/freescale/mx31ads/u-boot.lds +++ b/board/freescale/mx31ads/u-boot.lds @@ -70,6 +70,8 @@ SECTIONS *(.__rel_dyn_end) } + .hash : { *(.hash*) } + .end : { *(.__end) @@ -100,7 +102,7 @@ SECTIONS .dynbss : { *(.dynbss) } .dynstr : { *(.dynstr*) } .dynamic : { *(.dynamic*) } - .hash : { *(.hash*) } + .gnu.hash : { *(.gnu.hash) } .plt : { *(.plt*) } .interp : { *(.interp*) } .gnu : { *(.gnu*) }