-
Notifications
You must be signed in to change notification settings - Fork 0
/
device.mk
71 lines (57 loc) · 1.96 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
#
# Copyright (C) 2021 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# A/B
TARGET_IS_VAB := true
# Inherit from sm8250-common
$(call inherit-product, device/xiaomi/sm8250-common/kona.mk)
# AAPT
PRODUCT_AAPT_CONFIG := normal
PRODUCT_AAPT_PREF_CONFIG := xxhdpi
# Audio configs
PRODUCT_COPY_FILES += \
$(call find-copy-subdir-files,*,$(LOCAL_PATH)/audio/,$(TARGET_COPY_OUT_VENDOR)/etc)
# Boot animation
TARGET_SCREEN_HEIGHT := 2400
TARGET_SCREEN_WIDTH := 1080
# Camera
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/camera/camera_cnf.txt:$(TARGET_COPY_OUT_VENDOR)/etc/camera/camera_cnf.txt
PRODUCT_PACKAGES += \
libpiex_shim
# Kernel
TARGET_KERNEL_DIR ?= device/xiaomi/alioth-kernel
LOCAL_KERNEL := $(TARGET_KERNEL_DIR)/Image
PRODUCT_COPY_FILES += $(LOCAL_KERNEL):kernel
# Overlays
PRODUCT_PACKAGES += \
AliothDisplayOverlay \
AliothFrameowrksOverlay \
AliothNFCOverlay \
AliothSettingsOverlay \
AliothSystemUIOverlay \
Mi11XOverlay \
POCOF3Overlay \
RedmiK40Overlay \
SettingsOverlayM2012K11AG \
SettingsOverlayM2012K11AI \
StatiXFrameworkMi11X \
StatiXFrameworkPOCOF3 \
StatiXFrameworkRedmiK40
# Shipping API level
PRODUCT_SHIPPING_API_LEVEL := 30
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Variant Properties
PRODUCT_COPY_FILES += \
$(call find-copy-subdir-files,odm.*.prop,$(LOCAL_PATH)/props/,$(TARGET_COPY_OUT_ODM)) \
$(call find-copy-subdir-files,product.*.prop,$(LOCAL_PATH)/props/,$(TARGET_COPY_OUT_PRODUCT)) \
$(call find-copy-subdir-files,system.*.prop,$(LOCAL_PATH)/props/,$(TARGET_COPY_OUT_SYSTEM)) \
$(call find-copy-subdir-files,system_ext.*.prop,$(LOCAL_PATH)/props/,$(TARGET_COPY_OUT_SYSTEM_EXT)) \
$(call find-copy-subdir-files,vendor.*.prop,$(LOCAL_PATH)/props/,$(TARGET_COPY_OUT_VENDOR))
# Inherit from vendor blobs
$(call inherit-product, vendor/xiaomi/alioth/alioth-vendor.mk)
$(call inherit-product-if-exists, vendor/xiaomi/camera/camera_product.mk)