summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-05-10 22:34:24 +0200
committerWolfgang Denk <wd@denx.de>2011-05-10 22:34:24 +0200
commit8c65b8a937c3d717c2507e4d8ed600ec664dbf43 (patch)
tree60179650825ae2afe3814b3ea9effe42dc6635a3 /examples
parent909e9bf3ae6195ac6d52f9e453fba2be8e7e947f (diff)
parent68cebb8027c282a949ac0ca7dcb5baabd1c6879a (diff)
downloadblackbird-obmc-uboot-8c65b8a937c3d717c2507e4d8ed600ec664dbf43.tar.gz
blackbird-obmc-uboot-8c65b8a937c3d717c2507e4d8ed600ec664dbf43.zip
Merge branch 'master' of git://git.denx.de/u-boot-mips
Diffstat (limited to 'examples')
-rw-r--r--examples/standalone/mips.lds10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/standalone/mips.lds b/examples/standalone/mips.lds
index 63a1c92ab6..5f766ed378 100644
--- a/examples/standalone/mips.lds
+++ b/examples/standalone/mips.lds
@@ -30,14 +30,14 @@ SECTIONS
{
.text :
{
- *(.text)
+ *(.text*)
}
. = ALIGN(4);
.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
. = ALIGN(4);
- .data : { *(.data) }
+ .data : { *(.data*) }
. = .;
_gp = ALIGN(16) + 0x7ff0;
@@ -48,12 +48,12 @@ SECTIONS
__got_end = .;
}
- .sdata : { *(.sdata) }
+ .sdata : { *(.sdata*) }
. = ALIGN(4);
__bss_start = .;
- .sbss (NOLOAD) : { *(.sbss) }
- .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
+ .sbss (NOLOAD) : { *(.sbss*) }
+ .bss (NOLOAD) : { *(.bss*) . = ALIGN(4); }
_end = .;
}
OpenPOWER on IntegriCloud