[PATCH] .gitignore: exclude logo generated file
Simon Glass
sjg at chromium.org
Mon May 25 17:13:37 CEST 2026
Hi Denis,
On 2026-05-22T02:42:27, None <dmukhin at ford.com> 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 <dmukhin at ford.com>
>
> .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 <sjg at chromium.org>
Regards,
Simon
More information about the U-Boot
mailing list