diff options
| author | Denis Mukhin <[email protected]> | 2026-05-26 14:00:02 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-06-02 17:30:17 -0600 |
| commit | 5188b96cdb7884cdcad2a068450e66516edf74f9 (patch) | |
| tree | b3e562d0e2c761b60909362b7891b98187240124 | |
| parent | 81d60060831afa50a43a6dcaf8e34932e6b8ccc2 (diff) | |
.gitignore: exclude logo generated file
Correct the rule in .gitignore to skip u_boot_logo.bmp.S artifact which
is generated for any board with CONFIG_VIDEO_LOGO enabled.
Also, correct the stale u_boot_logo name in CLEAN_FILES in top-level
Makefile.
Signed-off-by: Denis Mukhin <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index e5d22dbe8e9..d57d3be0291 100644 --- 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.bmp.S /test/fdt_overlay/test-fdt-overlay-stacked.dtbo.S /test/fdt_overlay/test-fdt-overlay.dtbo.S capsule_esl_file @@ -2544,7 +2544,7 @@ CLEAN_FILES += $(MODVERDIR) \ $(filter-out include, $(shell ls -1 $d 2>/dev/null)))) CLEAN_FILES += include/autoconf.mk* include/bmp_logo.h include/bmp_logo_data.h \ - include/config.h include/generated/env.* drivers/video/u_boot_logo.S \ + include/config.h include/generated/env.* drivers/video/u_boot_logo.bmp.S \ tools/version.h u-boot* MLO* SPL System.map fit-dtb.blob* \ u-boot-ivt.img.log u-boot-dtb.imx.log SPL.log u-boot.imx.log \ lpc32xx-* bl31.c bl31.elf bl31_*.bin image.map tispl.bin* \ |
