summaryrefslogtreecommitdiff
path: root/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2010-11-13 00:38:08 +0100
committerWolfgang Denk <wd@denx.de>2010-11-13 00:38:08 +0100
commitb4770a5224d3216c4e40ecbf15804859271f2436 (patch)
tree931e442f15db867bf797c935d11f7d7affd9a78c /arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
parentbe25083394ad1d1206f9db5b0181296a768f6595 (diff)
parent4b7594c308cbf07d50e80d345116bd9fe48df3bd (diff)
downloadu-boot-imx-b4770a5224d3216c4e40ecbf15804859271f2436.zip
u-boot-imx-b4770a5224d3216c4e40ecbf15804859271f2436.tar.gz
u-boot-imx-b4770a5224d3216c4e40ecbf15804859271f2436.tar.bz2
Merge branch 'master' of /home/wd/git/u-boot/custodians
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds')
-rw-r--r--arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds b/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
index 7d9cee9..b10e0f9 100644
--- a/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
+++ b/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
@@ -28,15 +28,15 @@ SECTIONS
{
. = 0xfff00000;
.text : {
- *(.text)
+ *(.text*)
}
_etext = .;
.reloc : {
_GOT2_TABLE_ = .;
- *(.got2)
+ KEEP(*(.got2))
_FIXUP_TABLE_ = .;
- *(.fixup)
+ KEEP(*(.fixup))
}
__got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
__fixup_entries = (. - _FIXUP_TABLE_) >> 2;
@@ -54,13 +54,13 @@ SECTIONS
__init_end = .;
.resetvec ADDR(.text) + 0xffc : {
- *(.resetvec)
+ KEEP(*(.resetvec))
} = 0xffff
__bss_start = .;
.bss : {
- *(.sbss)
- *(.bss)
+ *(.sbss*)
+ *(.bss*)
}
_end = .;
}