public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] SMDK6400: fix the compiler error
@ 2011-06-03  7:27 Minkyu Kang
  2011-06-03  8:15 ` Minkyu Kang
  0 siblings, 1 reply; 3+ messages in thread
From: Minkyu Kang @ 2011-06-03  7:27 UTC (permalink / raw)
  To: u-boot

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>
---
 board/samsung/smdk6400/u-boot-nand.lds |    2 ++
 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 21e1ed3..f162815 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)
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-06-08 20:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-03  7:27 [U-Boot] [PATCH] SMDK6400: fix the compiler error Minkyu Kang
2011-06-03  8:15 ` Minkyu Kang
2011-06-08 20:14   ` Albert ARIBAUD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox