[PATCH] BDINFO: ARC: print info about relocations

Alexey Brodkin Alexey.Brodkin at synopsys.com
Wed May 13 15:55:59 CEST 2020


Hi Eugeniy,

> -----Original Message-----
> From: Eugeniy Paltsev <Eugeniy.Paltsev at synopsys.com>
> Sent: Saturday, April 25, 2020 12:11 AM
> To: Alexey Brodkin <abrodkin at synopsys.com>
> Cc: u-boot at lists.denx.de; uboot-snps-arc at synopsys.com; Eugeniy Paltsev <paltsev at 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.Paltsev at synopsys.com>
> ---

I guess we're getting similar functionality with Simon's series,
see https://patchwork.ozlabs.org/project/uboot/patch/20200510201702.196031-9-sjg@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



More information about the U-Boot mailing list