summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-06-02 22:04:46 -0600
committerTom Rini <trini@ti.com>2014-06-11 16:25:39 -0400
commit6469a34678e77ae3e10dd8e5ced89b2c348b46ea (patch)
tree0bc4a719765eb86db9dfaf9f5a9988b18de5f526
parentb8f91eb8675dd63f1ac31c749b2b3f146a908273 (diff)
downloadblackbird-obmc-uboot-6469a34678e77ae3e10dd8e5ced89b2c348b46ea.tar.gz
blackbird-obmc-uboot-6469a34678e77ae3e10dd8e5ced89b2c348b46ea.zip
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 <sjg@chromium.org>
-rw-r--r--board/freescale/mx31ads/u-boot.lds4
1 files changed, 3 insertions, 1 deletions
diff --git a/board/freescale/mx31ads/u-boot.lds b/board/freescale/mx31ads/u-boot.lds
index 61b83bfc63..8a4a8a2f07 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*) }
OpenPOWER on IntegriCloud