diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-03-19 13:33:25 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-28 08:22:17 -0400 |
commit | 0652d44bec7d5af0d0381e1ad6ed2b25a6389178 (patch) | |
tree | 2af8da21c22506e6fb7c3b8f00b46f86422648a2 /Makefile | |
parent | 8b9c77053cb4292309f9046df99861c0ed4756b0 (diff) | |
download | u-boot-0652d44bec7d5af0d0381e1ad6ed2b25a6389178.zip u-boot-0652d44bec7d5af0d0381e1ad6ed2b25a6389178.tar.gz u-boot-0652d44bec7d5af0d0381e1ad6ed2b25a6389178.tar.bz2 |
Makefile: add drivers/video/u_boot_logo.S to clean
make sandbox_defconfig
make mrproper
make tests
fails with
../drivers/video/u_boot_logo.S: Assembler messages:
../drivers/video/u_boot_logo.S:5: Error: file not found: drivers/video/u_boot_logo.bmp
We have to delete the generated file.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2186,7 +2186,8 @@ CLEAN_DIRS += $(MODVERDIR) \ $(foreach d, spl tpl, $(patsubst %,$d/%, \ $(filter-out include, $(shell ls -1 $d 2>/dev/null)))) -CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h tools/version.h \ +CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \ + drivers/video/u_boot_logo.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* \ |