mirror of
https://xff.cz/git/u-boot/
synced 2025-09-19 01:22:09 +02:00
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: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -78,6 +78,8 @@ SECTIONS
|
|||||||
*(.__rel_dyn_end)
|
*(.__rel_dyn_end)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hash : { *(.hash*) }
|
||||||
|
|
||||||
.end :
|
.end :
|
||||||
{
|
{
|
||||||
*(.__end)
|
*(.__end)
|
||||||
@@ -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*) }
|
||||||
|
Reference in New Issue
Block a user