diff options
author | Tom Rini <trini@ti.com> | 2013-06-22 07:38:12 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-06-22 07:38:12 -0400 |
commit | 348e47f766ac228fb02d1af562b2e9a4c69355db (patch) | |
tree | 778ffb90bb670f45fa7a0dae78010c8128c4d84d /board/dvlhost/u-boot.lds | |
parent | 5707233880090f785c33df32c04549ea1aeef61e (diff) | |
parent | fbf87b1823dd5ebc2a384711ea2c677543019ece (diff) | |
download | u-boot-imx-348e47f766ac228fb02d1af562b2e9a4c69355db.zip u-boot-imx-348e47f766ac228fb02d1af562b2e9a4c69355db.tar.gz u-boot-imx-348e47f766ac228fb02d1af562b2e9a4c69355db.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'board/dvlhost/u-boot.lds')
-rw-r--r-- | board/dvlhost/u-boot.lds | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/board/dvlhost/u-boot.lds b/board/dvlhost/u-boot.lds index 6d4b187..f359112 100644 --- a/board/dvlhost/u-boot.lds +++ b/board/dvlhost/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/dvlhost/libdvlhost.o(.text*) @@ -62,17 +63,23 @@ SECTIONS . = ALIGN (4); - __image_copy_end = .; + .image_copy_end : + { + *(.__image_copy_end) + } + + .rel_dyn_start : + { + *(.__rel_dyn_start) + } .rel.dyn : { - __rel_dyn_start = .; *(.rel*) - __rel_dyn_end = .; } - .dynsym : { - __dynsym_start = .; - *(.dynsym) + .rel_dyn_end : + { + *(.__rel_dyn_end) } _end = .; @@ -96,6 +103,7 @@ SECTIONS KEEP(*(.__bss_end)); } + /DISCARD/ : { *(.dynsym) } /DISCARD/ : { *(.dynstr*) } /DISCARD/ : { *(.dynamic*) } /DISCARD/ : { *(.plt*) } |