This allows GKI modules to be copied to GKI module partition, that is system_dlkm. Change-Id: Id7e90aa17a60f32bc70d18469c910fa4ed7db1d5
58 lines
2.1 KiB
Makefile
58 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2023 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Include the common OEM chipset BoardConfig.
|
|
include device/samsung/sm8550-common/BoardConfigCommon.mk
|
|
|
|
DEVICE_PATH := device/samsung/dm3q
|
|
|
|
# Assert
|
|
TARGET_OTA_ASSERT_DEVICE := dm3q
|
|
|
|
# Display
|
|
TARGET_SCREEN_DENSITY := 450
|
|
|
|
# Kernel
|
|
TARGET_KERNEL_CONFIG := dm3q_defconfig
|
|
|
|
# Kernel Modules
|
|
BOARD_SYSTEM_KERNEL_MODULES := $(strip $(shell cat $(DEVICE_PATH)/modules.include.system_dlkm))
|
|
BOARD_SYSTEM_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load.system_dlkm))
|
|
BOARD_VENDOR_KERNEL_MODULES_BLOCKLIST_FILE := $(DEVICE_PATH)/modules.blocklist
|
|
BOARD_VENDOR_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load))
|
|
BOARD_VENDOR_RAMDISK_KERNEL_MODULES_BLOCKLIST_FILE := $(BOARD_VENDOR_KERNEL_MODULES_BLOCKLIST_FILE)
|
|
BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load.vendor_boot))
|
|
BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load.recovery))
|
|
BOOT_KERNEL_MODULES := $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD)
|
|
|
|
TARGET_KERNEL_EXT_MODULES := \
|
|
qcom/opensource/mmrm-driver \
|
|
qcom/opensource/mm-drivers/hw_fence \
|
|
qcom/opensource/mm-drivers/msm_ext_display \
|
|
qcom/opensource/mm-drivers/sync_fence \
|
|
qcom/opensource/audio-kernel \
|
|
qcom/opensource/camera-kernel \
|
|
qcom/opensource/dataipa/drivers/platform/msm \
|
|
qcom/opensource/datarmnet/core \
|
|
qcom/opensource/datarmnet-ext/aps \
|
|
qcom/opensource/datarmnet-ext/offload \
|
|
qcom/opensource/datarmnet-ext/shs \
|
|
qcom/opensource/datarmnet-ext/perf \
|
|
qcom/opensource/datarmnet-ext/perf_tether \
|
|
qcom/opensource/datarmnet-ext/sch \
|
|
qcom/opensource/datarmnet-ext/wlan \
|
|
qcom/opensource/securemsm-kernel \
|
|
qcom/opensource/display-drivers/msm \
|
|
qcom/opensource/eva-kernel \
|
|
qcom/opensource/video-driver \
|
|
qcom/opensource/graphics-kernel \
|
|
qcom/opensource/wlan/platform \
|
|
qcom/opensource/wlan/qcacld-3.0/.kiwi_v2 \
|
|
qcom/opensource/bt-kernel
|
|
|
|
# Include the proprietary files BoardConfig.
|
|
include vendor/samsung/dm3q/BoardConfigVendor.mk
|