1
0
Fork 0

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>
utp
Simon Glass 2014-06-02 22:04:46 -06:00 committed by Tom Rini
parent b8f91eb867
commit 6469a34678
1 changed files with 3 additions and 1 deletions

View File

@ -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*) }