mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-07 13:41:54 +02:00
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>
This commit is contained in:
parent
b8f91eb867
commit
6469a34678
@ -70,6 +70,8 @@ SECTIONS
|
|||||||
*(.__rel_dyn_end)
|
*(.__rel_dyn_end)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hash : { *(.hash*) }
|
||||||
|
|
||||||
.end :
|
.end :
|
||||||
{
|
{
|
||||||
*(.__end)
|
*(.__end)
|
||||||
@ -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*) }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user