diff options
author | Marek Vasut <marex@denx.de> | 2024-10-04 02:10:42 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-14 19:32:04 -0600 |
commit | d2061828a4c1b60b44cd2307b6a782ac2efbffbe (patch) | |
tree | d82e869ea83c34a68111408d6ee2a14277ff17d1 /arch/m68k | |
parent | d467f359c4c875a96857ced2b660b4d185b4714f (diff) | |
download | u-boot-d2061828a4c1b60b44cd2307b6a782ac2efbffbe.tar.gz |
dts: Deduplicate dtbs targetWIP/14Oct2024
The dtbs: target is almost identical in all architecture Makefiles.
All architecture Makefiles include scripts/Makefile.dts . Deduplicate
the dtbs: target into scripts/Makefile.dts . No functional change.
Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Caleb Connolly <caleb.connolly@linaro.org> #qcom, OF_UPSTREAM
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/dts/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/m68k/dts/Makefile b/arch/m68k/dts/Makefile index 7988522eb98..8b354b9c570 100644 --- a/arch/m68k/dts/Makefile +++ b/arch/m68k/dts/Makefile @@ -20,12 +20,5 @@ dtb-$(CONFIG_TARGET_STMARK2) += stmark2.dtb include $(srctree)/scripts/Makefile.dts -targets += $(dtb-y) - +# Add any required device tree compiler flags here DTC_FLAGS += -R 4 -p 0x1000 - -PHONY += dtbs -dtbs: $(addprefix $(obj)/, $(dtb-y)) - @: - -clean-files := *.dtb |