blob: ff47cc50f5fe8cbd38f79a3219d017c76f905637 [file] [log] [blame]
Caleb Connolly726fc212021-08-02 10:03:37 +01001ifneq ($(filter enchilada, $(TARGET_DEVICE)),)
Amit Pundir8e3de692020-02-01 18:25:51 +05302
Caleb Connolly726fc212021-08-02 10:03:37 +01003IMAGE_GZ := device/oneplus/enchilada/prebuilt-kernel/android-$(TARGET_KERNEL_USE)/Image.gz
4DTB := device/oneplus/enchilada/prebuilt-kernel/android-$(TARGET_KERNEL_USE)/sdm845-oneplus-enchilada.dtb
Amit Pundir8e3de692020-02-01 18:25:51 +05305
6$(PRODUCT_OUT)/kernel: $(IMAGE_GZ) $(DTB)
7 cat $(IMAGE_GZ) $(DTB) > $@
8
9droidcore: $(PRODUCT_OUT)/kernel
10
11endif