From: Piotr Dymacz Date: Tue, 26 Feb 2019 12:04:54 +0000 (+0100) Subject: build: qsdk-ipq-*: include dtc in PATH before calling mkimage X-Git-Tag: v19.07.0-rc1~1211 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=fe90e48c39c46b3c253b65f38e392c43f6abe2f0 build: qsdk-ipq-*: include dtc in PATH before calling mkimage Use 'dtc' from kernel sources instead of relying on host tool. Fixes: bf4630e5adb4 ("build: add helpers for generating QSDK sysupgrade compatible images") Signed-off-by: Piotr Dymacz --- diff --git a/include/image-commands.mk b/include/image-commands.mk index 47d7193434..ade370cc0d 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -297,14 +297,14 @@ endef define Build/qsdk-ipq-factory-nand $(TOPDIR)/scripts/mkits-qsdk-ipq-image.sh \ $@.its ubi $@ - mkimage -f $@.its $@.new + PATH=$(LINUX_DIR)/scripts/dtc:$(PATH) mkimage -f $@.its $@.new @mv $@.new $@ endef define Build/qsdk-ipq-factory-nor $(TOPDIR)/scripts/mkits-qsdk-ipq-image.sh \ $@.its hlos $(IMAGE_KERNEL) rootfs $(IMAGE_ROOTFS) - mkimage -f $@.its $@.new + PATH=$(LINUX_DIR)/scripts/dtc:$(PATH) mkimage -f $@.its $@.new @mv $@.new $@ endef