x86: Set GD_FLG_RELOC after entering in-RAM copy of U-Boot

--
Changes for v2:
 - None
This commit is contained in:
Graeme Russ 2012-01-01 15:49:43 +11:00
parent 9e6c572ff0
commit 3766bb33a5

View File

@ -252,8 +252,6 @@ void board_init_f(ulong boot_flags)
hang(); hang();
} }
gd->flags |= GD_FLG_RELOC;
/* /*
* SDRAM is now initialised, U-Boot has been copied into SDRAM, * SDRAM is now initialised, U-Boot has been copied into SDRAM,
* the BSS has been cleared etc. The final stack can now be setup * the BSS has been cleared etc. The final stack can now be setup
@ -322,6 +320,8 @@ void board_init_r(gd_t *id, ulong dest_addr)
/* compiler optimization barrier needed for GCC >= 3.4 */ /* compiler optimization barrier needed for GCC >= 3.4 */
__asm__ __volatile__("" : : : "memory"); __asm__ __volatile__("" : : : "memory");
gd->flags |= GD_FLG_RELOC;
gd->bd = &bd_data; gd->bd = &bd_data;
memset(gd->bd, 0, sizeof(bd_t)); memset(gd->bd, 0, sizeof(bd_t));
show_boot_progress(0x22); show_boot_progress(0x22);