[U-Boot-Users] [PATCH 18/24] Don't set gd->reloc_off if relocation of .fixup works correctly

Grant Likely grant.likely at secretlab.ca
Tue Jul 3 08:34:19 CEST 2007


From: Grant Likely <grant.likely at secretlab.ca>

Signed-off-by: Grant Likely <grant.likely at secretlab.ca>
---

 lib_ppc/board.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/lib_ppc/board.c b/lib_ppc/board.c
index c4fc580..208e24b 100644
--- a/lib_ppc/board.c
+++ b/lib_ppc/board.c
@@ -620,7 +620,12 @@ void board_init_r (gd_t *id, ulong dest_addr)
 	bd = gd->bd;
 
 	gd->flags |= GD_FLG_RELOC;	/* tell others: relocation done */
+
+#if defined(CONFIG_RELOC_FIXUP_WORKS)
+	gd->reloc_off = 0;
+#else
 	gd->reloc_off = dest_addr - CFG_MONITOR_BASE;
+#endif
 
 #ifdef CONFIG_SERIAL_MULTI
 	serial_initialize();




More information about the U-Boot mailing list