
4 Sep
2015
4 Sep
'15
2:22 p.m.
Show fdt blob address in board info command.
Signed-off-by: Thomas Chou thomas@wytron.com.tw --- common/cmd_bdinfo.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index ed3b935..74ff229 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -176,6 +176,9 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) #endif
printf("baudrate = %u bps\n", gd->baudrate); +#if defined(CONFIG_OF_CONTROL) + print_num("fdt_blob", (ulong)gd->fdt_blob); +#endif
return 0; }
--
2.1.4