From: Barak Wasserstrom Date: Wed, 27 Feb 2013 08:48:41 +0000 (+0000) Subject: common/main: move set_working_fdt_addr to enable usage of $fdtaddr X-Git-Tag: v2013.04-rc2~60 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fe492cee35f0628c9d813f1799e4d49ef6b4e6d4;p=u-boot common/main: move set_working_fdt_addr to enable usage of $fdtaddr When using $fdtaddr in $bootcmd and $bootcmd is automatically called, $fdtaddr is yet not defined. Signed-off-by: Barak Wasserstrom --- diff --git a/common/main.c b/common/main.c index e2d2e09bf9..b0472da8a8 100644 --- a/common/main.c +++ b/common/main.c @@ -378,6 +378,10 @@ void main_loop (void) bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop"); +#if defined CONFIG_OF_CONTROL + set_working_fdt_addr((void *)gd->fdt_blob); +#endif /* CONFIG_OF_CONTROL */ + #ifdef CONFIG_BOOTCOUNT_LIMIT bootcount = bootcount_load(); bootcount++; @@ -500,10 +504,6 @@ void main_loop (void) #endif /* CONFIG_MENUKEY */ #endif /* CONFIG_BOOTDELAY */ -#if defined CONFIG_OF_CONTROL - set_working_fdt_addr((void *)gd->fdt_blob); -#endif /* CONFIG_OF_CONTROL */ - /* * Main Loop for Monitor Command Processing */