aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinkyu Kang <mk7.kang@samsung.com>2011-06-02 21:27:01 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-06-08 22:10:03 +0200
commit84b80856387a72c38586075c9a6795e4face7693 (patch)
tree5eae6a8676f7c7cabb0d9844586769574916194a
parent43f13e4ad7b5fb5606d6cf4a902b2ccf9c67277c (diff)
SMDK6400: fix the compiler error
This patch adds _end for fix following compiler error arch/arm/cpu/arm1176/start.o: In function `_end_ofs': arch/arm/cpu/arm1176/start.S:61: undefined reference to `_end' Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r--board/samsung/smdk6400/u-boot-nand.lds2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/samsung/smdk6400/u-boot-nand.lds b/board/samsung/smdk6400/u-boot-nand.lds
index 21e1ed3b7..f1628152d 100644
--- a/board/samsung/smdk6400/u-boot-nand.lds
+++ b/board/samsung/smdk6400/u-boot-nand.lds
@@ -67,6 +67,8 @@ SECTIONS
*(.dynsym)
}
+ _end = .;
+
.bss __rel_dyn_start (OVERLAY) : {
__bss_start = .;
*(.bss)