diff options
author | Minkyu Kang <mk7.kang@samsung.com> | 2010-11-18 10:22:11 +0900 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2010-11-18 10:22:11 +0900 |
commit | 464ce9489b848f9dfde74da5715b6d1b5db46a5e (patch) | |
tree | 8500e723c560c9ddb4d6455d185d258db11edf48 /nand_spl/board | |
parent | 1032d97496f6d534bf0030a5779ff1cb38cc9ebf (diff) | |
parent | 858ecd9ac3434e011e84d5fd9013bd1ee199dbdc (diff) | |
download | u-boot-imx-464ce9489b848f9dfde74da5715b6d1b5db46a5e.zip u-boot-imx-464ce9489b848f9dfde74da5715b6d1b5db46a5e.tar.gz u-boot-imx-464ce9489b848f9dfde74da5715b6d1b5db46a5e.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'nand_spl/board')
-rw-r--r-- | nand_spl/board/karo/tx25/u-boot.lds | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/nand_spl/board/karo/tx25/u-boot.lds b/nand_spl/board/karo/tx25/u-boot.lds index 5f95c87..ff289fb 100644 --- a/nand_spl/board/karo/tx25/u-boot.lds +++ b/nand_spl/board/karo/tx25/u-boot.lds @@ -43,35 +43,33 @@ 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) } . = ALIGN(4); - __rel_dyn_start = .; - __rel_dyn_end = .; - __dynsym_start = .; - - __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 : { *(.bss) } - _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/ : { *(.bss*) } /DISCARD/ : { *(.dynstr*) } /DISCARD/ : { *(.dynsym*) } |