mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
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: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
7c4dd54255
commit
de86765bc4
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue