diff options
author | Vagrant Cascadian <vagrant@reproducible-builds.org> | 2019-05-02 11:14:11 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-09 20:22:04 -0400 |
commit | 3ee8d913283f724dbf9401088decee806246b6db (patch) | |
tree | c02dab233dbc57b9b32e56fe99f5686eacb73fbd /Makefile | |
parent | c6833e762f682f45f4f05fea21d9a3e901b02d5a (diff) | |
download | u-boot-3ee8d913283f724dbf9401088decee806246b6db.zip u-boot-3ee8d913283f724dbf9401088decee806246b6db.tar.gz u-boot-3ee8d913283f724dbf9401088decee806246b6db.tar.bz2 |
Remove fit-dtb.blob* in clean target.
Support for compressed fit-dtb.blob was added in:
commit 95f4bbd581cf ("lib: fdt: Allow LZO and GZIP DT compression in
U-Boot")
Adjust Makefile to also clean compressed blobs.
Signed-off-by: Vagrant Cascadian <vagrant@reproducible-builds.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1791,7 +1791,7 @@ CLEAN_DIRS += $(MODVERDIR) \ $(filter-out include, $(shell ls -1 $d 2>/dev/null)))) CLEAN_FILES += include/bmp_logo.h include/bmp_logo_data.h \ - boot* u-boot* MLO* SPL System.map fit-dtb.blob + boot* u-boot* MLO* SPL System.map fit-dtb.blob* # Directories & files removed with 'make mrproper' MRPROPER_DIRS += include/config include/generated spl tpl \ |