• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisionbf59956b77873634bbbe738cdfba133498120755 (tree)
l'heure2016-04-17 19:24:46
AuteurYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Message de Log

board_f: return in GD_FLG_SKIP_RELOC is set.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

Change Summary

Modification

--- a/common/board_f.c
+++ b/common/board_f.c
@@ -1062,7 +1062,8 @@ void board_init_f(ulong boot_flags)
10621062 #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \
10631063 !defined(CONFIG_EFI_APP)
10641064 /* NOTREACHED - jump_to_copy() does not return */
1065- hang();
1065+ if ((gd->flags & GD_FLG_SKIP_RELOC) == 0)
1066+ hang();
10661067 #endif
10671068 }
10681069