-
Notifications
You must be signed in to change notification settings - Fork 2
/
device.mk
53 lines (42 loc) · 1.25 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
#
# Copyright (C) 2023 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Inherit from sm8350-common
$(call inherit-product, device/xiaomi/sm8350-common/common.mk)
# Audio configs
PRODUCT_COPY_FILES += \
$(call find-copy-subdir-files,*,$(LOCAL_PATH)/audio/,$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina)
# Fingerprint
PRODUCT_PACKAGES += \
libudfpshandler \
# Overlays
PRODUCT_PACKAGES += \
FrameworksResVenus \
SettingsOverlayM2011K2C \
SettingsOverlayM2011K2G \
SettingsProviderOverlayVenus \
SettingsResVenus \
SystemUIResVenus \
WifiResVenus
# PowerShare
PRODUCT_PACKAGES += \
# Sensors
PRODUCT_PACKAGES += \
sensors.xiaomi.venus
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/sensors/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Rootdir
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/rootdir/etc/init.venus.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.venus.rc
# Touch
PRODUCT_PACKAGES += \
# Call the proprietary setup
$(call inherit-product, vendor/xiaomi/venus/venus-vendor.mk)