commit | c6477a09f0f92652431c374a39153d3760fc38f0 | [log] [tgz] |
---|---|---|
author | Heiko Schocher <hs@denx.de> | Wed Jun 21 06:22:41 2017 +0200 |
committer | Tom Rini <trini@konsulko.com> | Fri Jun 23 10:38:08 2017 -0400 |
tree | 733a07f5958e027f3368177844aba8f365005780 | |
parent | 709b1e43a058403e255416e79489b0ceb12e7ab0 [diff] |
bdinfo: print fdt_blob for debugging it is handy to know the fdt_blob address. So print it in bdinfo. Signed-off-by: Heiko Schocher <hs@denx.de> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 48dba20..45baa2e 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c
@@ -375,6 +375,8 @@ printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, CONFIG_SYS_MALLOC_F_LEN); #endif + if (gd->fdt_blob) + printf("fdt_blob = %p\n", gd->fdt_blob); return 0; }