Skip to content
Snippets Groups Projects
Commit ad3cd07f authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

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: default avatarSimon Glass <sjg@chromium.org>
parent 18b06652
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,8 @@ SECTIONS ...@@ -78,6 +78,8 @@ SECTIONS
*(.__rel_dyn_end) *(.__rel_dyn_end)
} }
.hash : { *(.hash*) }
.end : .end :
{ {
*(.__end) *(.__end)
...@@ -118,7 +120,6 @@ SECTIONS ...@@ -118,7 +120,6 @@ SECTIONS
.dynbss : { *(.dynbss) } .dynbss : { *(.dynbss) }
.dynstr : { *(.dynstr*) } .dynstr : { *(.dynstr*) }
.dynamic : { *(.dynamic*) } .dynamic : { *(.dynamic*) }
.hash : { *(.hash*) }
.gnu.hash : { *(.gnu.hash) } .gnu.hash : { *(.gnu.hash) }
.plt : { *(.plt*) } .plt : { *(.plt*) }
.interp : { *(.interp*) } .interp : { *(.interp*) }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment