From: Denis Mukhin <[email protected]> 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]> --- Changes since v1: - Added Simon's R-b (update in v2 is minimal) - Updated commit message - Included fixup u_boot_logo.bmp.S in top-level Makefile - Link to v1: https://lore.kernel.org/u-boot/[email protected]/ --- .gitignore | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e5d22dbe8e96..d57d3be0291a 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 diff --git a/Makefile b/Makefile index f07faada3d54..45b5be6317ef 100644 --- a/Makefile +++ b/Makefile @@ -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* \ -- 2.54.0

