[PATCH v2 02/18] Makefile: Build SPL dtbs in the spl/ directory

Simon Glass sjg at chromium.org
Wed Dec 23 03:30:14 CET 2020


Rather than putting these in the top-level dts/ directory (which is
intended for U-Boot proper), put them in the correct subdirectory for
SPL (either spl/ or tpl/). This is where other SPL targets are kept,
so this is more consistent.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

(no changes since v1)

 dts/Makefile         | 9 +++++----
 scripts/Makefile.spl | 2 +-
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/dts/Makefile b/dts/Makefile
index 4cd65ce73d4..c0a953ffac9 100644
--- a/dts/Makefile
+++ b/dts/Makefile
@@ -16,10 +16,11 @@ else
 DTB := arch/$(ARCH)/dts/$(DEVICE_TREE).dtb
 endif
 
-$(obj)/dt-spl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
+spl/$(obj)/dt-spl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
+	mkdir -p $(dir $@)
 	$(call if_changed,fdtgrep)
 
-$(obj)/dt-tpl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
+tpl/$(obj)/dt-tpl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
 	$(call if_changed,fdtgrep)
 
 ifeq ($(CONFIG_OF_DTB_PROPS_REMOVE),y)
@@ -55,8 +56,8 @@ obj-$(CONFIG_OF_EMBED) := dt.dtb.o
 endif
 
 dtbs: $(obj)/dt.dtb \
-		$(if $(CONFIG_SPL),$(obj)/dt-spl.dtb) \
-		$(if $(CONFIG_TPL),$(obj)/dt-tpl.dtb)
+		$(if $(CONFIG_SPL),spl/$(obj)/dt-spl.dtb) \
+		$(if $(CONFIG_TPL),tpl/$(obj)/dt-tpl.dtb)
 	@:
 
 clean-files := dt.dtb.S dt-spl.dtb.S dt-tpl.dtb.S
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index 8ebe6a9840e..e83e93e5fc4 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -300,7 +300,7 @@ $(obj)/$(SPL_BIN)-pad.bin: $(obj)/$(SPL_BIN)
 	@bss_size_str=$(shell $(NM) $< | awk 'BEGIN {size = 0} /__bss_size/ {size = $$1} END {print "ibase=16; " toupper(size)}' | bc); \
 	dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null;
 
-$(obj)/$(SPL_BIN).dtb: dts/dt-$(SPL_NAME).dtb FORCE
+$(obj)/$(SPL_BIN).dtb: $(obj)/dts/dt-$(SPL_NAME).dtb FORCE
 	$(call if_changed,copy)
 
 pythonpath = PYTHONPATH=scripts/dtc/pylibfdt
-- 
2.29.2.729.g45daf8777d-goog



More information about the U-Boot mailing list