Hi Denis,
On 2026-05-22T02:42:27, None <[email protected]> wrote:
> .gitignore: exclude logo generated file
>
> Correct the rule in .gitignore to skip generated u_boot_logo.bmp.S
> artifact in sandbox_defconfig environment.
>
> Signed-off-by: Denis Mukhin <[email protected]>
>
> .gitignore | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/.gitignore b/.gitignore
> @@ -80,7 +80,7 @@ fit-dtb.blob*
> /*imx8mimage*
> /*imx8mcst*
> /*rcar4-sa0*
> -/drivers/video/u_boot_logo.S
> +/drivers/video/u_boot_logo.*S
There is only one file, so you could spell it out:
/drivers/video/u_boot_logo.bmp.S
While you are here, the top-level Makefile still lists the stale name
in CLEAN_FILES:
drivers/video/u_boot_logo.S
The commit message says "in sandbox_defconfig environment", but the
file is generated by any board with CONFIG_VIDEO_LOGO enabled, not
just sandbox.
Reviewed-by: Simon Glass <[email protected]>
Regards,
Simon