diff options
author | seedshope <bocui107@gmail.com> | 2011-01-22 10:06:11 +0000 |
---|---|---|
committer | Albert Aribaud <albert.aribaud@free.fr> | 2011-03-27 19:19:10 +0200 |
commit | fb3527575dce5ced00bf3c2e92ce13a1fc491747 (patch) | |
tree | 21b9215f6743c38e0a928bd2eef25129eb1990ad /board | |
parent | 6c0db6fb7f72b1b3dde72ccfb3a8bcce0ceee747 (diff) | |
download | u-boot-imx-fb3527575dce5ced00bf3c2e92ce13a1fc491747.zip u-boot-imx-fb3527575dce5ced00bf3c2e92ce13a1fc491747.tar.gz u-boot-imx-fb3527575dce5ced00bf3c2e92ce13a1fc491747.tar.bz2 |
SMDK6400: Fix the mutiple link error
The first, the cpu_init.o have already been link for cmd_link_o_target
atfer compile, But, The link script re-link the point file. So the link
machine will generate multiple definition error information.
The second, Since the first 4kB of nand boot featue code move to nand_spl,
So It is not necessary to force the cpu_init.o in non-nand boot.
Signed-off-by: Zhong Hongbo <bocui107@gmail.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/samsung/smdk6400/u-boot-nand.lds | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/samsung/smdk6400/u-boot-nand.lds b/board/samsung/smdk6400/u-boot-nand.lds index ef99dc9..21e1ed3 100644 --- a/board/samsung/smdk6400/u-boot-nand.lds +++ b/board/samsung/smdk6400/u-boot-nand.lds @@ -35,7 +35,6 @@ SECTIONS .text : { arch/arm/cpu/arm1176/start.o (.text) - arch/arm/cpu/arm1176/s3c64xx/cpu_init.o (.text) *(.text) } |