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.
29 lines
911 B
29 lines
911 B
4 months ago
|
ifndef TARGET_KERNEL_USE
|
||
|
TARGET_KERNEL_USE := 5.4
|
||
|
endif
|
||
|
DB845C_KERNEL_DIR := device/linaro/dragonboard-kernel/android-$(TARGET_KERNEL_USE)
|
||
|
|
||
|
# Inherit the full_base and device configurations
|
||
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
|
||
|
$(call inherit-product, device/linaro/dragonboard/db845c/device.mk)
|
||
|
$(call inherit-product, device/linaro/dragonboard/device-common.mk)
|
||
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk)
|
||
|
|
||
|
# Product overrides
|
||
|
PRODUCT_NAME := db845c
|
||
|
PRODUCT_DEVICE := db845c
|
||
|
PRODUCT_BRAND := Android
|
||
|
|
||
|
ifndef DB845C_USES_GKI
|
||
|
DB845C_USES_GKI := true
|
||
|
endif
|
||
|
|
||
|
ifeq ($(DB845C_USES_GKI), true)
|
||
|
DB845C_MODS := $(wildcard $(DB845C_KERNEL_DIR)/*.ko)
|
||
|
ifneq ($(DB845C_MODS),)
|
||
|
BOARD_VENDOR_KERNEL_MODULES += $(DB845C_MODS)
|
||
|
DB845C_ONLY_VENDOR := %/msm.ko
|
||
|
BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(filter-out $(DB845C_ONLY_VENDOR),$(DB845C_MODS))
|
||
|
endif
|
||
|
endif
|