diff options
author | seedshope <bocui107@gmail.com> | 2011-01-22 10:06:12 +0000 |
---|---|---|
committer | Albert Aribaud <albert.aribaud@free.fr> | 2011-03-27 19:19:16 +0200 |
commit | 6dde5074cce290839afdd8e329efb7301cb9fcce (patch) | |
tree | 35079feffd654125c39353e69b766f21a71d31f6 /nand_spl | |
parent | fb3527575dce5ced00bf3c2e92ce13a1fc491747 (diff) |
SMDK6400: Add some labels to u-boot.lds to support nand_spl
In the nand_spl feature of SMDK6400. Add some relocation symbols to
nand_spl/board/samsung/smdk6400/u-boot.lds to fix the compile error.
Signed-off-by: Zhong Hongbo <bocui107@gmail.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'nand_spl')
-rw-r--r-- | nand_spl/board/samsung/smdk6400/u-boot.lds | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/nand_spl/board/samsung/smdk6400/u-boot.lds b/nand_spl/board/samsung/smdk6400/u-boot.lds index 4cb686c7e51..0153e0e09b4 100644 --- a/nand_spl/board/samsung/smdk6400/u-boot.lds +++ b/nand_spl/board/samsung/smdk6400/u-boot.lds @@ -55,7 +55,22 @@ SECTIONS __u_boot_cmd_end = .; . = ALIGN(4); + + .rel.dyn : { + __rel_dyn_start = .; + *(.rel*) + __rel_dyn_end = .; + } + + .dynsym : { + __dynsym_start = .; + *(.dynsym) + } + + .bss __rel_dyn_start (OVERLAY) : { __bss_start = .; - .bss : { *(.bss) . = ALIGN(4); } + *(.bss) + . = ALIGN(4); __bss_end__ = .; + } } |