-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathBoardConfig.mk
More file actions
34 lines (25 loc) · 823 Bytes
/
BoardConfig.mk
File metadata and controls
34 lines (25 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# Copyright (C) 2023 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
DEVICE_PATH := device/lge/timelm
# inherit from common tree
-include device/lge/sm8250-common/BoardConfigCommon.mk
# Display
TARGET_SCREEN_DENSITY := 420
# HIDL
ODM_MANIFEST_FILES += $(DEVICE_PATH)/manifest_odm.xml
# Kernel
BOARD_KERNEL_CMDLINE += androidboot.hardware=timelm
TARGET_KERNEL_CONFIG := vendor/timelm-perf_defconfig
# Lights
$(call soong_config_set,LGE_LIGHTS_HAL,INCLUDE_DIR,$(DEVICE_PATH)/include)
# Properties
TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop
TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop
# Recovery
TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab.timelm
TARGET_RECOVERY_UI_MARGIN_HEIGHT := 90
# inherit from the proprietary version
-include vendor/lge/timelm/BoardConfigVendor.mk