
19 May
2016
19 May
'16
2:26 p.m.
Signed-off-by: Yoshinori Sato ysato@users.sourceforge.jp --- common/board_f.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/common/board_f.c b/common/board_f.c index fcc69b8..e1122e3 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -1067,7 +1067,8 @@ void board_init_f(ulong boot_flags) #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \ !defined(CONFIG_EFI_APP) /* NOTREACHED - jump_to_copy() does not return */ - hang(); + if (!(gd->flags & GD_FLG_SKIP_RELOC)) + hang(); #endif }
--
2.7.0