-
Notifications
You must be signed in to change notification settings - Fork 1
/
device.mk
70 lines (53 loc) · 1.46 KB
/
device.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
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
#
# Copyright (C) 2024 The Android Open Source Project
# Copyright (C) 2024 SebaUbuntu's TWRP device tree generator
#
# SPDX-License-Identifier: Apache-2.0
#
LOCAL_PATH := device/motorola/corfu
# Dynamic Partitions
PRODUCT_USE_DYNAMIC_PARTITIONS := true
# Virtual A/B
ENABLE_VIRTUAL_AB := true
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk)
# Project ID Quota
$(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk)
# A/B
PRODUCT_PACKAGES += \
otapreopt_script
AB_OTA_POSTINSTALL_CONFIG += \
RUN_POSTINSTALL_system=true \
POSTINSTALL_PATH_system=system/bin/otapreopt_script \
FILESYSTEM_TYPE_system=ext4 \
POSTINSTALL_OPTIONAL_system=true
# Boot Control HAL
PRODUCT_PACKAGES += \
android.hardware.boot@1.2-service \
android.hardware.boot@1.2-mtkimpl \
android.hardware.boot@1.2-mtkimpl.recovery
# Health
PRODUCT_PACKAGES += \
android.hardware.health@2.1-impl \
android.hardware.health@2.1-service
PRODUCT_PACKAGES += \
bootctrl.mt6768 \
bootctrl.mt6768.recovery
PRODUCT_PACKAGES_DEBUG += \
bootctrl \
update_engine_client
# Update Engine
PRODUCT_PACKAGES += \
update_engine \
update_engine_sideload \
update_verifier
# Fastbootd
PRODUCT_PACKAGES += \
fastbootd \
android.hardware.fastboot@1.0-impl-mock
# MTK PlPath Utils
PRODUCT_PACKAGES += \
mtk_plpath_utils.recovery
# Shipping API level
PRODUCT_SHIPPING_API_LEVEL := 30
# VNDK
PRODUCT_TARGET_VNDK_VERSION := 31