diff options
author | Simon Glass <sjg@chromium.org> | 2014-06-02 22:04:46 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-11 16:25:39 -0400 |
commit | 6469a34678e77ae3e10dd8e5ced89b2c348b46ea (patch) | |
tree | 0bc4a719765eb86db9dfaf9f5a9988b18de5f526 /board | |
parent | b8f91eb8675dd63f1ac31c749b2b3f146a908273 (diff) | |
download | u-boot-imx-6469a34678e77ae3e10dd8e5ced89b2c348b46ea.zip u-boot-imx-6469a34678e77ae3e10dd8e5ced89b2c348b46ea.tar.gz u-boot-imx-6469a34678e77ae3e10dd8e5ced89b2c348b46ea.tar.bz2 |
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>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx31ads/u-boot.lds | 4 |
1 files changed, 3 insertions, 1 deletions
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*) } |