common: board_f: print kern.dtb address

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: I8f593632676cad3758c37d5a027932bc1302f0d5
This commit is contained in:
Joseph Chen 2020-11-11 12:28:07 +00:00 committed by Jianhong Chen
parent cab35d601e
commit d6e082ceff
1 changed files with 6 additions and 1 deletions

View File

@ -689,8 +689,13 @@ static int setup_reloc(void)
memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
#ifndef CONFIG_SUPPORT_USBPLUG
printf("Relocation Offset: %08lx, fdt: %08lx\n",
printf("Relocation Offset: %08lx, fdt: %08lx ",
gd->reloc_off, (ulong)gd->new_fdt);
#ifdef CONFIG_USING_KERNEL_DTB
if (!fdt_check_header((void *)gd->fdt_blob_kern))
printf("kfdt: %08lx", (ulong)gd->fdt_blob_kern);
#endif
puts("\n");
#endif
debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),