diff options
Diffstat (limited to 'board/actux3/u-boot.lds')
-rw-r--r-- | board/actux3/u-boot.lds | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/actux3/u-boot.lds b/board/actux3/u-boot.lds index b7d29b4afa..9d43e95284 100644 --- a/board/actux3/u-boot.lds +++ b/board/actux3/u-boot.lds @@ -30,6 +30,7 @@ SECTIONS . = ALIGN (4); .text : { + *(.__image_copy_start) arch/arm/cpu/ixp/start.o(.text*) net/libnet.o(.text*) board/actux3/libactux3.o(.text*) @@ -62,7 +63,10 @@ SECTIONS . = ALIGN (4); - __image_copy_end = .; + .image_copy_end : + { + *(.__image_copy_end) + } .rel.dyn : { __rel_dyn_start = .; |