
20 Oct
2018
20 Oct
'18
12:07 a.m.
Print the address of the u-boot device tree.
Signed-off-by: Lukas Auer lukas.auer@aisec.fraunhofer.de ---
cmd/bdinfo.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 60b438766d..a9692f7662 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -430,6 +430,8 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) print_num("reloc off", gd->reloc_off); print_eth_ip_addr(); print_baudrate(); + if (gd->fdt_blob) + print_num("fdt_blob", (ulong)gd->fdt_blob);
return 0; }
--
2.17.2