diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2010-10-20 19:36:39 +0200 |
---|---|---|
committer | Marek Vasut <marek.vasut@gmail.com> | 2010-10-22 01:37:58 +0200 |
commit | 6e96cf9a812757d98dc9504648d3c39d5f2768f4 (patch) | |
tree | 0974327ccc9ec3dabf51459397c8b5474f8d8e4b /arch/arm/cpu/pxa/u-boot.lds | |
parent | fff6ec382c139eb242bd85356e66a0bc43becb63 (diff) |
PXA: Implement ELF relocation
Based on patch by: Albert Aribaud <albert.aribaud@free.fr>
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'arch/arm/cpu/pxa/u-boot.lds')
-rw-r--r-- | arch/arm/cpu/pxa/u-boot.lds | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/arch/arm/cpu/pxa/u-boot.lds b/arch/arm/cpu/pxa/u-boot.lds index 74a4c6e90c..d6643f9529 100644 --- a/arch/arm/cpu/pxa/u-boot.lds +++ b/arch/arm/cpu/pxa/u-boot.lds @@ -41,21 +41,18 @@ 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) } + __rel_dyn_start = .; + .rel.dyn : { *(.rel.dyn) } + __rel_dyn_end = .; + + __dynsym_start = .; + .dynsym : { *(.dynsym) } + + . = ALIGN(4); - __got_end = .; . = .; __u_boot_cmd_start = .; .u_boot_cmd : { *(.u_boot_cmd) } |