diff --git a/arch/powerpc/lib/board.c b/arch/powerpc/lib/board.c index f7325c8bfd069efc8b0db8ed1efffd2ea67be4ae..6cb0ed63444e55a8c131f2a92b9c3b718f183cb8 100644 --- a/arch/powerpc/lib/board.c +++ b/arch/powerpc/lib/board.c @@ -390,6 +390,13 @@ void board_init_f (ulong bootflag) } } +#ifdef CONFIG_POST + post_bootmode_init(); + post_run(NULL, POST_ROM | post_bootmode_get(0)); +#endif + + WATCHDOG_RESET(); + /* * Now that we have DRAM mapped and working, we can * relocate the code and continue running from DRAM. @@ -596,13 +603,6 @@ void board_init_f (ulong bootflag) WATCHDOG_RESET (); -#ifdef CONFIG_POST - post_bootmode_init(); - post_run (NULL, POST_ROM | post_bootmode_get(0)); -#endif - - WATCHDOG_RESET(); - gd->relocaddr = addr; /* Record relocation address, useful for debug */ memcpy (id, (void *)gd, sizeof (gd_t));