-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.mk
49 lines (40 loc) · 1.03 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
#
# 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)
# Health
PRODUCT_PACKAGES += \
# Overlays
PRODUCT_ENFORCE_RRO_TARGETS := *
# Product characteristics
PRODUCT_CHARACTERISTICS := default
# Rootdir
PRODUCT_PACKAGES += \
init.class_main.sh \
init.qcom.early_boot.sh \
init.qcom.post_boot.sh \
init.qcom.sensors.sh \
init.qcom.sh \
init.qcom.usb.sh \
install-recovery.sh \
PRODUCT_PACKAGES += \
fstab.qcom \
init.oppo.rc \
init.qcom.power.rc \
init.qcom.rc \
init.qcom.usb.rc \
init.target.rc \
init.recovery.qcom.rc \
# Shipping API level
PRODUCT_SHIPPING_API_LEVEL := 28
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Inherit the proprietary files
$(call inherit-product, vendor/realme/RMX1931/RMX1931-vendor.mk)