-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.mk
74 lines (62 loc) · 1.66 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
#
# Copyright (C) 2024 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Enable updating of APEXes
$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
# API levels
PRODUCT_SHIPPING_API_LEVEL := 33
# fastbootd
PRODUCT_PACKAGES += \
fastbootd
# Health
PRODUCT_PACKAGES += \
# Overlays
PRODUCT_ENFORCE_RRO_TARGETS := *
# Partitions
PRODUCT_USE_DYNAMIC_PARTITIONS := true
# Product characteristics
PRODUCT_CHARACTERISTICS := phone
# Rootdir
PRODUCT_PACKAGES += \
hdm_status.sh \
init.insmod.sh \
install-recovery.sh \
PRODUCT_PACKAGES += \
fstab.mt6789 \
factory_init.connectivity.common.rc \
factory_init.connectivity.rc \
factory_init.project.rc \
factory_init.rc \
init.aee.rc \
init.audio.samsung.rc \
init.cgroup.rc \
init.connectivity.common.rc \
init.connectivity.rc \
init.modem.rc \
init.mt6789.rc \
init.mt6789.usb.rc \
init.mtkgki.rc \
init.project.rc \
init_connectivity.rc \
meta_init.connectivity.common.rc \
meta_init.connectivity.rc \
meta_init.modem.rc \
meta_init.project.rc \
meta_init.rc \
meta_init.vendor.rc \
multi_init.rc \
init.recovery.mt6789.rc \
init.recovery.samsung.rc \
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/rootdir/etc/fstab.mt6789:$(TARGET_COPY_OUT_RAMDISK)/fstab.mt6789
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Inherit the proprietary files
$(call inherit-product, vendor/samsung/a24/a24-vendor.mk)