From: Sandeep Sheriker M Date: Sat, 22 Aug 2020 19:55:50 +0000 (-0700) Subject: at91: change dtb file path X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=0d0a0d6649a9e92c58a20e488d90f39e6334d2f4;p=openwrt%2Fstaging%2Fneocturne.git at91: change dtb file path Changing dtb file path since the dtb files are build in KDIR folder with image- prefix. Signed-off-by: Sandeep Sheriker M [remove commented lines] Signed-off-by: Adrian Schmutzler --- diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile index ff801dae86..959b1cb0a3 100644 --- a/target/linux/at91/image/Makefile +++ b/target/linux/at91/image/Makefile @@ -55,17 +55,14 @@ endef define Device/evaluation-dtb $(Device/evaluation) $(Device/dtb) - $(Device/evaluation-zImage) - IMAGES += dtb - IMAGE/dtb := install-dtb KERNEL_SUFFIX := -fit-zImage.itb - KERNEL := kernel-bin | gzip | fit gzip $$(DTS_DIR)/$$(DEVICE_DTS).dtb + KERNEL := kernel-bin | gzip | fit gzip $$(KDIR)/image-$$(DEVICE_DTS).dtb endef define Device/evaluation-fit $(Device/evaluation) KERNEL_SUFFIX := -fit-uImage.itb - KERNEL := kernel-bin | lzma | fit lzma $$(DTS_DIR)/$$(DEVICE_DTS).dtb + KERNEL := kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(DEVICE_DTS).dtb endef define Device/production