Message ID | 20200424211040.31294-1-Eugeniy.Paltsev@synopsys.com |
---|---|
State | New |
Headers | show |
Series | BDINFO: ARC: print info about relocations | expand |
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 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
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[]) {
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> --- cmd/bdinfo.c | 4 ++++ 1 file changed, 4 insertions(+)