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>
28 lines
889 B
Makefile
28 lines
889 B
Makefile
#
|
|
# Copyright (C) 2021 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Inherit from those products. Most specific first.
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)
|
|
|
|
# Inherit from sweet device
|
|
$(call inherit-product, device/xiaomi/sweet/device.mk)
|
|
|
|
# Inherit some common Lineage stuff.
|
|
$(call inherit-product, vendor/lineage/config/common_full_phone.mk)
|
|
|
|
PRODUCT_NAME := lineage_sweet
|
|
PRODUCT_DEVICE := sweet
|
|
PRODUCT_BRAND := Xiaomi
|
|
PRODUCT_MODEL := Redmi Note 10 Pro
|
|
PRODUCT_MANUFACTURER := Xiaomi
|
|
|
|
PRODUCT_GMS_CLIENTID_BASE := android-xiaomi
|
|
|
|
BUILD_FINGERPRINT := Redmi/sweet_global/sweet:13/TKQ1.221013.002/V14.0.9.0.TKFMIXM:user/release-keys
|
|
PRODUCT_BUILD_PROP_OVERRIDES += \
|
|
PRIVATE_BUILD_DESC="sweet_global-user 13 TKQ1.221013.002 V14.0.9.0.TKFMIXM release-keys"
|