commit | 32f72f5854b3285f3a35838a0c44c97c4da3a89c | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Jun 23 15:39:11 2015 -0600 |
committer | Simon Glass <sjg@chromium.org> | Tue Jul 21 17:39:29 2015 -0600 |
tree | 12d0a00156791c2aec88f22bfacdd87104f72f1f | |
parent | fa2a4db5ba7eb9fb657185e65236dd6726f88185 [diff] |
spl: Add a debug string before the jump to U-Boot As a debug option, add positive confirmation that SPL has completed execution. This can help with diagnosing the location of unexpected hangs. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/common/spl/spl.c b/common/spl/spl.c index 074c41d..94b01da 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c
@@ -298,6 +298,7 @@ gd->malloc_ptr / 1024); #endif + debug("loaded - jumping to U-Boot..."); jump_to_image_no_args(&spl_image); }