This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.mk
88 lines (75 loc) · 1.98 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
#
# Copyright (C) 2023 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)
# 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 := nosdcard
# Rootdir
PRODUCT_PACKAGES += \
init.qcom.sh \
capture.sh \
mishow.sh \
init.qcom.early_boot.sh \
init.crda.sh \
shutdown.sh \
setup_headsetmic2headphone.sh \
init.xiaomi.early_boot.sh \
init.qti.chg_policy.sh \
headsetstate.sh \
init.qcom.efs.sync.sh \
init.qcom.post_boot.sh \
init.qcom.class_core.sh \
powersleep.sh \
install-recovery.sh \
teardown_loopback.sh \
setup_mainmic2headphone.sh \
setup_topmic2headphone.sh \
water_cooling_check.sh \
init.qcom.sensors.sh \
qca6234-service.sh \
capture_headset.sh \
init.mi.usb.sh \
init.qti.qcv.sh \
init.qti.media.sh \
init.qcom.sdio.sh \
init.mdm.sh \
init.class_main.sh \
init.qcom.usb.sh \
playback.sh \
init.qti.dcvs.sh \
playback_headset.sh \
init.qcom.coex.sh \
PRODUCT_PACKAGES += \
fstab.emmc \
init.qcom.usb.rc \
init.target.rc \
init.qcom.rc \
init.qcom.factory.rc \
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/rootdir/etc/fstab.emmc:$(TARGET_COPY_OUT_RAMDISK)/fstab.emmc
# Shipping API level
PRODUCT_SHIPPING_API_LEVEL := 29
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Inherit the proprietary files
$(call inherit-product, vendor/xiaomi/gauguin/gauguin-vendor.mk)