mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_tissot
synced 2026-01-27 15:45:32 +00:00
46 lines
897 B
Makefile
46 lines
897 B
Makefile
#
|
|
# Copyright (C) 2023 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
DEVICE_PATH := device/xiaomi/tissot
|
|
|
|
# Inherit from common msm8953-common
|
|
include device/xiaomi/msm8953-common/BoardConfigCommon.mk
|
|
|
|
# Kernel
|
|
TARGET_KERNEL_CONFIG += xiaomi/tissot.config
|
|
|
|
# Filesystem
|
|
BOARD_USES_RECOVERY_AS_BOOT := true
|
|
TARGET_NO_RECOVERY := true
|
|
|
|
BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := erofs
|
|
BOARD_EROFS_COMPRESSOR := lz4
|
|
|
|
# A/B
|
|
AB_OTA_UPDATER := true
|
|
|
|
AB_OTA_PARTITIONS += \
|
|
boot \
|
|
system
|
|
|
|
# Display
|
|
TARGET_SCREEN_DENSITY := 440
|
|
|
|
# Power
|
|
TARGET_TAP_TO_WAKE_NODE := "/proc/touchpanel/wakeup_gesture"
|
|
|
|
# Properties
|
|
TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop
|
|
|
|
# Recovery
|
|
TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab_AB.qcom
|
|
|
|
# Security Patch Level
|
|
VENDOR_SECURITY_PATCH := 2020-05-05
|
|
|
|
# Inherit the proprietary files
|
|
include vendor/xiaomi/tissot/BoardConfigVendor.mk
|