From: Bin Meng Date: Wed, 26 Sep 2018 13:55:10 +0000 (-0700) Subject: riscv: cmd: bdinfo: Print the relocation address X-Git-Tag: v2025.01-rc5-pxa1908~3431^2~14 X-Git-Url: http://git.dujemihanovic.xyz/img/static/%7B%7B?a=commitdiff_plain;h=058b77a9b8f5f225cd9f97b48afb891c2fc00927;p=u-boot.git riscv: cmd: bdinfo: Print the relocation address Add printing of U-Boot relocation address. Signed-off-by: Bin Meng Reviewed-by: Lukas Auer --- diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index bc440e4c04..60b438766d 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -426,6 +426,8 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) print_bi_boot_params(bd); print_bi_dram(bd); + print_num("relocaddr", gd->relocaddr); + print_num("reloc off", gd->reloc_off); print_eth_ip_addr(); print_baudrate();