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

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: default avatarSimon Glass <sjg@chromium.org>
parent b8f91eb8
No related branches found
No related tags found
No related merge requests found
...@@ -70,6 +70,8 @@ SECTIONS ...@@ -70,6 +70,8 @@ SECTIONS
*(.__rel_dyn_end) *(.__rel_dyn_end)
} }
.hash : { *(.hash*) }
.end : .end :
{ {
*(.__end) *(.__end)
...@@ -100,7 +102,7 @@ SECTIONS ...@@ -100,7 +102,7 @@ SECTIONS
.dynbss : { *(.dynbss) } .dynbss : { *(.dynbss) }
.dynstr : { *(.dynstr*) } .dynstr : { *(.dynstr*) }
.dynamic : { *(.dynamic*) } .dynamic : { *(.dynamic*) }
.hash : { *(.hash*) } .gnu.hash : { *(.gnu.hash) }
.plt : { *(.plt*) } .plt : { *(.plt*) }
.interp : { *(.interp*) } .interp : { *(.interp*) }
.gnu : { *(.gnu*) } .gnu : { *(.gnu*) }
......
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