-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtwrp_rembrandt.mk
35 lines (26 loc) · 1.08 KB
/
twrp_rembrandt.mk
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
35
# Configure base.mk
$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
# Configure core_64_bit.mk
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
# Configure launch_with_vendor_ramdisk.mk
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk)
# Configure compression
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/compression.mk)
# Configure virtual_ab_ota.mk
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk)
# Configure emulated_storage.mk
$(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk)
# Configure twrp config common.mk
$(call inherit-product, vendor/twrp/config/common.mk)
# Device specific configs
$(call inherit-product, device/xiaomi/rembrandt/device.mk)
# Device identifier
PRODUCT_DEVICE := rembrandt
PRODUCT_NAME := twrp_rembrandt
PRODUCT_BRAND := Redmi
PRODUCT_MODEL := Redmi K60E
PRODUCT_MANUFACTURER := Xiaomi
# Hide Reflash TWRP & FUSE passthrough
PRODUCT_PROPERTY_OVERRIDES += \
ro.twrp.vendor_boot=true \
persist.sys.fuse.passthrough.enable=true