blob: 3d44eb35518f58d4860b71ee72ed10aa2ac11c53 [file] [log] [blame]
Amit Pundir4e375822019-04-18 16:46:10 +05301# Inherit the full_base and device configurations
2$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
3$(call inherit-product, device/linaro/dragonboard/db845c/device.mk)
4$(call inherit-product, device/linaro/dragonboard/device-common.mk)
5$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk)
6
7# Product overrides
8PRODUCT_NAME := db845c
9PRODUCT_DEVICE := db845c
10PRODUCT_BRAND := Android
John Stultz092e0432019-08-01 18:28:36 +000011
12ifneq ($(DB845C_USES_GKI),)
13# The path here need to be finalized (ideally in the dragonboard-kernel dir)
14DB845C_MOD_DIR := device/linaro/dragonboard/db845c-mods/
15DB845C_MODS := $(wildcard $(DB845C_MOD_DIR)/*.ko)
16ifneq ($(DB845C_MODS),)
17 BOARD_VENDOR_KERNEL_MODULES += $(DB845C_MODS)
18 BOARD_VENDOR_RAMDISK_KERNEL_MODULES += $(DB845C_MODS)
19endif
20endif