You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
442 B
18 lines
442 B
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
|
|
|
|
# Images will be packed into target_files zip, and hikey-img.zip.
|
|
INSTALLED_RADIOIMAGE_TARGET += $(PRODUCT_OUT)/dt.img
|
|
BOARD_PACK_RADIOIMAGES += dt.img
|
|
|
|
endif
|
|
endif
|