From 058b77a9b8f5f225cd9f97b48afb891c2fc00927 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 26 Sep 2018 06:55:10 -0700 Subject: [PATCH] riscv: cmd: bdinfo: Print the relocation address Add printing of U-Boot relocation address. Signed-off-by: Bin Meng Reviewed-by: Lukas Auer --- cmd/bdinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index bc440e4..60b4387 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();