-
Notifications
You must be signed in to change notification settings - Fork 4
/
device.mk
110 lines (93 loc) · 2.53 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
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
107
108
109
110
#
# Copyright (C) 2022 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Enable updating of APEXes
$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
# Include GSI keys
$(call inherit-product, $(SRC_TARGET_DIR)/product/gsi_keys.mk)
# A/B
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk)
PRODUCT_PACKAGES += \
PRODUCT_PACKAGES += \
update_engine \
update_engine_sideload \
update_verifier
PRODUCT_PACKAGES += \
checkpoint_gc \
otapreopt_script
# fastbootd
PRODUCT_PACKAGES += \
fastbootd
# Health
PRODUCT_PACKAGES += \
# Overlays
PRODUCT_ENFORCE_RRO_TARGETS := *
# Partitions
PRODUCT_BUILD_SUPER_PARTITION := false
PRODUCT_USE_DYNAMIC_PARTITIONS := true
# Product characteristics
PRODUCT_CHARACTERISTICS := default
# Rootdir
PRODUCT_PACKAGES += \
init.mmi.boot.sh \
init.oem.hw.sh \
init.mmi.usb.sh \
apanic_mtk.sh \
init.mmi.backup.trustlet.sh \
init.mmi.block_perm.sh \
pstore_annotate.sh \
vendor.mmi.cxp.sh \
init.mmi.touch.sh \
hardware_revisions.sh \
init.oem.fingerprint2.sh \
init.insmod.sh \
init.mmi.modules.sh \
apanic_annotate.sh \
apanic_copy.sh \
apanic_save.sh \
PRODUCT_PACKAGES += \
fstab.enableswap \
factory_init.connectivity.rc \
init.mmi.backup.trustlet.rc \
init.project.rc \
init.mmi.rc \
factory_init.rc \
init.mt6833.rc \
factory_init.connectivity.common.rc \
init.mmi.sec.rc \
init.mt6833.usb.rc \
factory_init.project.rc \
multi_init.rc \
init.mmi.overlay.rc \
meta_init.modem.rc \
meta_init.rc \
init.ago.rc \
meta_init.connectivity.rc \
init_connectivity.rc \
init.mmi.tcmd.rc \
init.connectivity.common.rc \
init.connectivity.rc \
init.modem.rc \
meta_init.project.rc \
init.aee.rc \
meta_init.connectivity.common.rc \
init.mmi.chipset.rc \
init.sensor_2_0.rc \
init.recovery.mt6833.rc \
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/rootdir/etc/fstab.enableswap:$(TARGET_VENDOR_RAMDISK_OUT)/first_stage_ramdisk/fstab.enableswap
# Shipping API level
PRODUCT_SHIPPING_API_LEVEL := 31
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Inherit the proprietary files
$(call inherit-product, vendor/motorola/austin/austin-vendor.mk)