summaryrefslogtreecommitdiff
path: root/build/tasks/dtimage.mk
blob: 9dc6668b65f7ab4eb77b866298cdf6555d154a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
ifneq ($(filter hikey%, $(TARGET_DEVICE)),)
ifneq ($(TARGET_NO_DTIMAGE), true)

MKDTIMG := device/linaro/hikey/installer/hikey960/mkdtimg
DTB := $(PRODUCT_OUT)/hi3660-hikey960.dtb

$(PRODUCT_OUT)/dt.img: $(DTB)
	$(MKDTIMG) -c -d $(DTB) -o $@

droidcore: $(PRODUCT_OUT)/dt.img
endif
endif