[PATCH] zynqmp: Save "bootseq" environment variable in dec format
Simon Glass
sjg at chromium.org
Tue Feb 4 01:38:57 CET 2025
Hi Benjamin,
On Mon, 3 Feb 2025 at 09:33, <egyszeregy at freemail.hu> wrote:
>
> From: Benjamin Szőke <egyszeregy at freemail.hu>
>
> Save "bootseq" environment variable in decimal format.
>
> Signed-off-by: Benjamin Szőke <egyszeregy at freemail.hu>
> ---
> board/xilinx/zynqmp/zynqmp.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c
> index 8cdd9d8600..820fb252a3 100644
> --- a/board/xilinx/zynqmp/zynqmp.c
> +++ b/board/xilinx/zynqmp/zynqmp.c
> @@ -488,7 +488,7 @@ static int boot_targets_setup(void)
> if (bootseq >= 0) {
> bootseq_len = snprintf(NULL, 0, "%i", bootseq);
> debug("Bootseq len: %x\n", bootseq_len);
> - env_set_hex("bootseq", bootseq);
> + env_set_ulong("bootseq", (unsigned long)bootseq);
> }
>
> /*
> --
> 2.47.1.windows.2
>
That seems confusing; why use decimal?
Regards,
Simon
More information about the U-Boot
mailing list