diff options
Diffstat (limited to 'board/actux2/u-boot.lds')
-rw-r--r-- | board/actux2/u-boot.lds | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/actux2/u-boot.lds b/board/actux2/u-boot.lds index 0e20670..aff773c 100644 --- a/board/actux2/u-boot.lds +++ b/board/actux2/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/actux2/libactux2.o(.text*) @@ -62,7 +63,10 @@ SECTIONS . = ALIGN (4); - __image_copy_end = .; + .image_copy_end : + { + *(.__image_copy_end) + } .rel.dyn : { __rel_dyn_start = .; |