blob: d3c8aee24793610291f039a3c291807fcd735502 [file] [log] [blame]
Caleb Connolly2688d332021-09-30 14:01:06 +01001ifndef TARGET_KERNEL_USE
2TARGET_KERNEL_USE := mainline
3endif
4
5KERNEL_MODS := $(wildcard device/generic/sdm845/prebuilt-kernel/android-$(TARGET_KERNEL_USE)/*.ko)
6
7# Following modules go to vendor partition
8# msm.ko is too big (31M) for ramdisk
9VENDOR_KERN_MODS := %/qcom_q6v5_adsp.ko %/qcom_q6v5_mss.ko %/qcom_q6v5_pas.ko
10BOARD_VENDOR_KERNEL_MODULES := $(filter $(VENDOR_KERN_MODS),$(KERNEL_MODS))
11
12# All other modules go to ramdisk
13BOARD_GENERIC_RAMDISK_KERNEL_MODULES := $(filter-out $(VENDOR_KERN_MODS),$(KERNEL_MODS))
14
15# Inherit the full_base and device configurations
16$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
17$(call inherit-product, device/generic/sdm845/sdm845/device.mk)
18$(call inherit-product, device/generic/sdm845/device-common.mk)
19$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk)
20
21# Product overrides
22PRODUCT_NAME := sdm845
23PRODUCT_DEVICE := sdm845
24PRODUCT_BRAND := AOSP