[source] arc770: build dtb files in Image/Prepare so that they are available for Device/*

LEDE Commits lede-commits at lists.infradead.org
Wed Jan 11 07:35:07 PST 2017


nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/90f0ca0ddca0da290b5b12c4d6c86458438edaa2

commit 90f0ca0ddca0da290b5b12c4d6c86458438edaa2
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Wed Jan 11 16:25:32 2017 +0100

    arc770: build dtb files in Image/Prepare so that they are available for Device/*
    
    Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
 target/linux/arc770/image/Makefile | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/target/linux/arc770/image/Makefile b/target/linux/arc770/image/Makefile
index 4f8fbff..0f3de24 100644
--- a/target/linux/arc770/image/Makefile
+++ b/target/linux/arc770/image/Makefile
@@ -40,6 +40,13 @@ DEVICE_DTS_LIST:= axs101 nsim_700
 FAT32_BLOCK_SIZE=1024
 FAT32_BLOCKS=$(shell echo $$(($(CONFIG_AXS10X_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
 
+define Image/Prepare
+	# Build .dtb for all boards we may run on
+	$(foreach dts,$(DEVICE_DTS_LIST),
+		$(call Image/BuildDTB,$(DTS_DIR)/$(dts).dts,$(DTS_DIR)/$(dts).dtb)
+	)
+endef
+
 define Image/Build/SDCard
 	rm -f $(KDIR_TMP)/$(IMG_PREFIX)-$(PROFILE)-boot.img
 	mkfs.fat $(KDIR_TMP)/$(IMG_PREFIX)-$(PROFILE)-boot.img -C $(FAT32_BLOCKS)
@@ -68,11 +75,6 @@ define Image/BuildKernel
 		$(KDIR)/vmlinux, \
 		$(BIN_DIR)/$(IMG_PREFIX)-uImage \
 	)
-
-	# Build .dtb for all boards we may run on
-	$(foreach dts,$(DEVICE_DTS_LIST),
-		$(call Image/BuildDTB,$(DTS_DIR)/$(dts).dts,$(DTS_DIR)/$(dts).dtb)
-	)
 endef
 
 define Image/Build



More information about the lede-commits mailing list