From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexey Brodkin Date: Wed, 13 May 2020 13:55:59 +0000 Subject: [PATCH] BDINFO: ARC: print info about relocations In-Reply-To: <20200424211040.31294-1-Eugeniy.Paltsev@synopsys.com> References: <20200424211040.31294-1-Eugeniy.Paltsev@synopsys.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Eugeniy, > -----Original Message----- > From: Eugeniy Paltsev > Sent: Saturday, April 25, 2020 12:11 AM > To: Alexey Brodkin > Cc: u-boot at lists.denx.de; uboot-snps-arc at synopsys.com; Eugeniy Paltsev > 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 > --- I guess we're getting similar functionality with Simon's series, see https://patchwork.ozlabs.org/project/uboot/patch/20200510201702.196031-9-sjg at 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