diff options
author | Wolfgang Denk <wd@denx.de> | 2011-05-10 22:34:24 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-05-10 22:34:24 +0200 |
commit | 8c65b8a937c3d717c2507e4d8ed600ec664dbf43 (patch) | |
tree | 60179650825ae2afe3814b3ea9effe42dc6635a3 /board/dbau1x00/u-boot.lds | |
parent | 909e9bf3ae6195ac6d52f9e453fba2be8e7e947f (diff) | |
parent | 68cebb8027c282a949ac0ca7dcb5baabd1c6879a (diff) | |
download | u-boot-imx-8c65b8a937c3d717c2507e4d8ed600ec664dbf43.zip u-boot-imx-8c65b8a937c3d717c2507e4d8ed600ec664dbf43.tar.gz u-boot-imx-8c65b8a937c3d717c2507e4d8ed600ec664dbf43.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-mips
Diffstat (limited to 'board/dbau1x00/u-boot.lds')
-rw-r--r-- | board/dbau1x00/u-boot.lds | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/board/dbau1x00/u-boot.lds b/board/dbau1x00/u-boot.lds index 3c4fbe3..4a59cea 100644 --- a/board/dbau1x00/u-boot.lds +++ b/board/dbau1x00/u-boot.lds @@ -34,14 +34,14 @@ SECTIONS . = ALIGN(4); .text : { - *(.text) + *(.text*) } . = ALIGN(4); .rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) } . = ALIGN(4); - .data : { *(.data) } + .data : { *(.data*) } . = .; _gp = ALIGN(16) + 0x7ff0; @@ -52,7 +52,7 @@ SECTIONS __got_end = .; } - .sdata : { *(.sdata) } + .sdata : { *(.sdata*) } .u_boot_cmd : { __u_boot_cmd_start = .; @@ -64,7 +64,7 @@ SECTIONS num_got_entries = (__got_end - __got_start) >> 2; . = ALIGN(4); - .sbss (NOLOAD) : { *(.sbss) } - .bss (NOLOAD) : { *(.bss) . = ALIGN(4); } + .sbss (NOLOAD) : { *(.sbss*) } + .bss (NOLOAD) : { *(.bss*) . = ALIGN(4); } uboot_end = .; } |