commit | c64736d154c65022fa873d510c8646f3cefbcce2 | [log] [tgz] |
---|---|---|
author | Bin Meng <bmeng.cn@gmail.com> | Wed Sep 26 06:55:10 2018 -0700 |
committer | Andes <uboot@andestech.com> | Wed Oct 03 17:47:24 2018 +0800 |
tree | 06fd1543f6a02b41ac0f7eb5928c518f205bce67 | |
parent | ebd336f898f3ccc66cfbb4f5ca7aa6b8acf37fef [diff] [blame] |
riscv: cmd: bdinfo: Print the relocation address Add printing of U-Boot relocation address. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
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 @@ 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();