Hi Eugeniy,

> -----Original Message-----
> From: Eugeniy Paltsev <eugeniy.palt...@synopsys.com>
> Sent: Saturday, April 25, 2020 12:11 AM
> To: Alexey Brodkin <abrod...@synopsys.com>
> Cc: u-boot@lists.denx.de; uboot-snps-...@synopsys.com; Eugeniy Paltsev 
> <palt...@synopsys.com>
> Subject: [PATCH] BDINFO: ARC: print info about relocations
> 
> Print relocation information in bdinfo.
> NOTE: this patch changes only ARC part of bdinfo code.
> 
> Signed-off-by: Eugeniy Paltsev <eugeniy.palt...@synopsys.com>
> ---

I guess we're getting similar functionality with Simon's series,
see 
https://patchwork.ozlabs.org/project/uboot/patch/20200510201702.196031-9-...@chromium.org/

Thus marking this one as deferred.
Though thanks for the patch!

-Alexey


>  cmd/bdinfo.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c
> index d6a7175b379..31ec4615641 100644
> --- a/cmd/bdinfo.c
> +++ b/cmd/bdinfo.c
> @@ -439,20 +439,24 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, 
> char * const argv[])
>       return 0;
>  }
> 
>  #elif defined(CONFIG_ARC)
> 
>  int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
>  {
>       bd_t *bd = gd->bd;
> 
>       print_bi_mem(bd);
> +     if (!(gd->flags & GD_FLG_SKIP_RELOC)) {
> +             print_num("relocaddr", gd->relocaddr);
> +             print_num("reloc off", gd->reloc_off);
> +     }
>       print_eth_ip_addr();
>       print_baudrate();
> 
>       return 0;
>  }
> 
>  #elif defined(CONFIG_XTENSA)
> 
>  int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
>  {
> --
> 2.21.1

Reply via email to