diff options
author | Wolfgang Denk <wd@denx.de> | 2010-11-26 21:33:14 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-11-26 21:33:14 +0100 |
commit | 41bb7531e1382e730b8a6b06d249ea72d936c468 (patch) | |
tree | 2a4fe1e8c16802e76aff9fd790e23e34c18c7d37 /arch/arm/cpu/lh7a40x/u-boot.lds | |
parent | c70e7ddb7e15e768d79edcbc4322d735e65ec31f (diff) | |
parent | e42a7dff09dd7306f8eaffbe8aaf44148dbfba35 (diff) | |
download | u-boot-imx-41bb7531e1382e730b8a6b06d249ea72d936c468.zip u-boot-imx-41bb7531e1382e730b8a6b06d249ea72d936c468.tar.gz u-boot-imx-41bb7531e1382e730b8a6b06d249ea72d936c468.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'arch/arm/cpu/lh7a40x/u-boot.lds')
-rw-r--r-- | arch/arm/cpu/lh7a40x/u-boot.lds | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/arch/arm/cpu/lh7a40x/u-boot.lds b/arch/arm/cpu/lh7a40x/u-boot.lds index cb55b0a..463237d 100644 --- a/arch/arm/cpu/lh7a40x/u-boot.lds +++ b/arch/arm/cpu/lh7a40x/u-boot.lds @@ -41,28 +41,38 @@ SECTIONS . = ALIGN(4); .data : { *(.data) - __datarel_start = .; - *(.data.rel) - __datarelrolocal_start = .; - *(.data.rel.ro.local) - __datarellocal_start = .; - *(.data.rel.local) - __datarelro_start = .; - *(.data.rel.ro) } - __got_start = .; . = ALIGN(4); - .got : { *(.got) } - __got_end = .; . = .; __u_boot_cmd_start = .; .u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_end = .; . = ALIGN(4); - __bss_start = .; - .bss (NOLOAD) : { *(.bss) . = ALIGN(4); } - _end = .; + + .rel.dyn : { + __rel_dyn_start = .; + *(.rel*) + __rel_dyn_end = .; + } + + .dynsym : { + __dynsym_start = .; + *(.dynsym) + } + + .bss __rel_dyn_start (OVERLAY) : { + __bss_start = .; + *(.bss) + . = ALIGN(4); + _end = .; + } + + /DISCARD/ : { *(.dynstr*) } + /DISCARD/ : { *(.dynamic*) } + /DISCARD/ : { *(.plt*) } + /DISCARD/ : { *(.interp*) } + /DISCARD/ : { *(.gnu*) } } |