aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Deiminger <tdmg@linutronix.de>2023-06-20 00:41:04 +0200
committerTom Rini <trini@konsulko.com>2023-07-07 16:25:56 -0400
commit45e636f41fe84895f49d565a6b3e4dacbce8a1fd (patch)
tree82d2ea2aaa5c2ef1170c678b9508329b8c7a93a7
parentc623642d29be5c8036104351d27cea6b55adf769 (diff)
downloadu-boot-45e636f41fe84895f49d565a6b3e4dacbce8a1fd.zip
u-boot-45e636f41fe84895f49d565a6b3e4dacbce8a1fd.tar.gz
u-boot-45e636f41fe84895f49d565a6b3e4dacbce8a1fd.tar.bz2
Kbuild: Fix cleanup of VPL
VPL artifacts like example vpl/u-boot-vpl are currently not removed by 'make clean'. We can clean them just as it's already done for SPL and TPL. Fixes: f86ca5ad8f78 ("Introduce Verifying Program Loader (VPL)") Signed-off-by: Tobias Deiminger <tdmg@linutronix.de>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 813ad3e..8d9aef4 100644
--- a/Makefile
+++ b/Makefile
@@ -2152,7 +2152,7 @@ CHANGELOG:
# Directories & files removed with 'make clean'
CLEAN_DIRS += $(MODVERDIR) \
- $(foreach d, spl tpl, $(patsubst %,$d/%, \
+ $(foreach d, spl tpl vpl, $(patsubst %,$d/%, \
$(filter-out include, $(shell ls -1 $d 2>/dev/null))))
CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \
@@ -2167,7 +2167,7 @@ CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \
idbloader-spi.img lib/efi_loader/helloworld_efi.S
# Directories & files removed with 'make mrproper'
-MRPROPER_DIRS += include/config include/generated spl tpl \
+MRPROPER_DIRS += include/config include/generated spl tpl vpl \
.tmp_objdiff doc/output include/asm
# Remove include/asm symlink created by U-Boot before v2014.01