Re: [PATCH 1/1] riscv: add RISC-V fields to bdinfo command

2024-07-08 Thread Leo Liang
On Fri, Jun 07, 2024 at 10:41:17AM +0200, Heinrich Schuchardt wrote: > The firmware invoking main U-Boot uses > > * a0 to pass the boot hart > * a1 to pass a device-tree > > Let the bdinfo command print this information, e.g. > > boot hart = 0x001b > firmware fdt= 0x000

[PATCH 1/1] riscv: add RISC-V fields to bdinfo command

2024-06-07 Thread Heinrich Schuchardt
The firmware invoking main U-Boot uses * a0 to pass the boot hart * a1 to pass a device-tree Let the bdinfo command print this information, e.g. boot hart = 0x001b firmware fdt= 0x87e0 The firmware fdt field will only be printed if it is non-zero. Signed-off-b