aboutsummaryrefslogtreecommitdiff
path: root/dts
diff options
context:
space:
mode:
authorTobias Deiminger <tdmg@linutronix.de>2023-06-20 00:41:05 +0200
committerTom Rini <trini@konsulko.com>2023-07-07 16:25:56 -0400
commit3d3eeae9bf61f472cea2e16fdce8615312f84ac8 (patch)
tree87ccf79707c422e57aac8319988e291242a59f46 /dts
parent45e636f41fe84895f49d565a6b3e4dacbce8a1fd (diff)
downloadu-boot-3d3eeae9bf61f472cea2e16fdce8615312f84ac8.zip
u-boot-3d3eeae9bf61f472cea2e16fdce8615312f84ac8.tar.gz
u-boot-3d3eeae9bf61f472cea2e16fdce8615312f84ac8.tar.bz2
Kbuild: Fix cleanup of *.dtb for some archs
'make clean' did not descend into arch/$ARCH/dts for arc, m68k, nios2, sh, xtensa. Fix it by adding the missing archs to the explicit clean-dirs list. Signed-off-by: Tobias Deiminger <tdmg@linutronix.de>
Diffstat (limited to 'dts')
-rw-r--r--dts/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile
index cb31113..3437e54 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -63,4 +63,6 @@ spl_dtbs: $(obj)/dt-$(SPL_NAME).dtb
clean-files := dt.dtb.S
# Let clean descend into dts directories
-subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/mips/dts ../arch/sandbox/dts ../arch/x86/dts ../arch/powerpc/dts ../arch/riscv/dts
+subdir- += ../arch/arc/dts ../arch/arm/dts ../arch/m68k/dts ../arch/microblaze/dts \
+ ../arch/mips/dts ../arch/nios2/dts ../arch/powerpc/dts ../arch/riscv/dts \
+ ../arch/sandbox/dts ../arch/sh/dts ../arch/x86/dts ../arch/xtensa/dts