601fddecdf
* Use the `import` function of build.prop files to override the model-specific properties based on the ro.boot.hwc and product SKU values, both set by the bootloader * Set a custom product property source order, so that the ODM and vendor properties have preference over the other sources * Switch to vendor SKU for enabling NFC exclusively on variants that support it, as the product SKU is set by the bootloader * Create a symlink from /vendor/etc/audio/sku_sweet to /vendor/etc, as the audio HAL takes the former as directory for audio configs if SKU is set to `sweet` Change-Id: I312a059e0cbcbad6aa052bd32142b70dcf0a7adc Signed-off-by: danielml <daniel@danielml.dev>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2021-2024 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Inherit from sm6150-common
|
|
include device/xiaomi/sm6150-common/BoardConfigCommon.mk
|
|
|
|
DEVICE_PATH := device/xiaomi/sweet
|
|
|
|
# Assert
|
|
TARGET_OTA_ASSERT_DEVICE := sweet,sweetin
|
|
|
|
# Audio
|
|
TARGET_PROVIDES_AUDIO_EXTNS := true
|
|
|
|
# HIDL
|
|
DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/configs/hidl/manifest.xml
|
|
DEVICE_MANIFEST_SKUS += sweet
|
|
DEVICE_MANIFEST_SWEET_FILES := \
|
|
$(DEVICE_MANIFEST_FILE) \
|
|
$(DEVICE_PATH)/configs/hidl/manifest-nfc.xml
|
|
|
|
# Kernel
|
|
TARGET_KERNEL_CONFIG += vendor/sweet.config
|
|
|
|
# Partitions
|
|
BOARD_BOOTIMAGE_PARTITION_SIZE := 134217728
|
|
BOARD_CACHEIMAGE_PARTITION_SIZE := 402653184
|
|
BOARD_DTBOIMG_PARTITION_SIZE := 33554432
|
|
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 134217728
|
|
BOARD_SUPER_PARTITION_SIZE := 9126805504
|
|
BOARD_USERDATAIMAGE_PARTITION_SIZE := 114980532224
|
|
|
|
BOARD_QTI_DYNAMIC_PARTITIONS_SIZE := 9122611200 # (BOARD_SUPER_PARTITION_SIZE - 4194304) 4MiB overhead
|
|
|
|
# Properties
|
|
TARGET_ODM_PROP += $(DEVICE_PATH)/properties/odm.prop
|
|
TARGET_VENDOR_PROP += $(DEVICE_PATH)/properties/vendor.prop
|
|
|
|
# Screen density
|
|
TARGET_SCREEN_DENSITY := 440
|
|
|
|
# Sepolicy
|
|
SYSTEM_EXT_PRIVATE_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/private
|
|
BOARD_VENDOR_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/vendor
|
|
|
|
# Vendor security patch level
|
|
VENDOR_SECURITY_PATCH := 2023-11-01
|
|
|
|
# Inherit from proprietary files
|
|
include vendor/xiaomi/sweet/BoardConfigVendor.mk
|