Skip to content
Snippets Groups Projects
Commit de86765b authored by Michal Simek's avatar Michal Simek
Browse files

bdinfo: Show information about fdt blob via bdinfo


Microblaze target supports both OF and !OF cases
and from log is not clear which version is running.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 7c4dd542
Branches
Tags
No related merge requests found
......@@ -204,6 +204,9 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
printf("baudrate = %u bps\n", gd->baudrate);
print_num("relocaddr", gd->relocaddr);
print_num("reloc off", gd->reloc_off);
print_num("fdt_blob", (ulong)gd->fdt_blob);
print_num("new_fdt", (ulong)gd->new_fdt);
print_num("fdt_size", (ulong)gd->fdt_size);
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment