-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevice.mk
More file actions
106 lines (85 loc) · 2.3 KB
/
Copy pathdevice.mk
File metadata and controls
106 lines (85 loc) · 2.3 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# Copyright (C) 2022 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Enable Virtual A/B OTA
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/compression.mk)
ENABLE_VIRTUAL_AB := true
AB_OTA_UPDATER := true
AB_OTA_PARTITIONS += \
boot \
dtbo \
lk \
odm_dlkm \
product \
system \
system_ext \
systen_dlkm \
tr_carrier \
tr_company \
tr_mi \
tr_preload \
tr_product \
tr_region \
tr_theme \
vbmeta_system \
vbmeta_vendor \
vendor \
vendor_boot \
vendor_dlkm
AB_OTA_POSTINSTALL_CONFIG += \
RUN_POSTINSTALL_system=true \
POSTINSTALL_PATH_system=system/bin/mtk_plpath_utils \
FILESYSTEM_TYPE_system=ext4 \
POSTINSTALL_OPTIONAL_system=true
PRODUCT_PACKAGES += \
otapreopt_script
PRODUCT_PROPERTY_OVERRIDES += ro.twrp.vendor_boot=true
# Dynamic Partitions
PRODUCT_USE_DYNAMIC_PARTITIONS := true
# API
PRODUCT_SHIPPING_API_LEVEL := 31
PRODUCT_TARGET_VNDK_VERSION := 31
# Boot control HAL
PRODUCT_PACKAGES += \
android.hardware.boot@1.2-mtkimpl \
android.hardware.boot@1.2-mtkimpl.recovery
PRODUCT_PACKAGES_DEBUG += \
bootctl
# Fastbootd
PRODUCT_PACKAGES += \
android.hardware.fastboot@1.0-impl-mock \
fastbootd
# Health Hal
PRODUCT_PACKAGES += \
android.hardware.health@2.1-impl \
android.hardware.health@2.1-service
# Keymaster
PRODUCT_PACKAGES += \
android.hardware.keymaster@4.1
# Keystore Hal
PRODUCT_PACKAGES += \
android.system.keystore2
# MTK plpath utils
PRODUCT_PACKAGES += \
mtk_plpath_utils \
mtk_plpath_utils.recovery
# Security
PRODUCT_PACKAGES += \
android.hardware.security.keymint \
android.hardware.security.secureclock \
android.hardware.security.sharedsecret
# Update engine
PRODUCT_PACKAGES += \
update_engine \
update_engine_sideload \
update_verifier
PRODUCT_PACKAGES_DEBUG += \
update_engine_client
# Additional configs
TW_RECOVERY_ADDITIONAL_RELINK_LIBRARY_FILES += \
$(TARGET_OUT_SHARED_LIBRARIES)/android.hardware.keymaster@4.1
TARGET_RECOVERY_DEVICE_MODULES += \
android.hardware.keymaster@4.1