-
Notifications
You must be signed in to change notification settings - Fork 11
/
device.mk
44 lines (35 loc) · 1.02 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
#
# Copyright (C) 2020 The Android Open Source Project
# Copyright (C) 2021-2022 TeamWin Recovery Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Inherit from the common Open Source product configuration
$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
# qcom standard decryption
PRODUCT_PACKAGES += \
qcom_decrypt \
qcom_decrypt_fbe
# Resolution
TARGET_SCREEN_HEIGHT := 1920
TARGET_SCREEN_WIDTH := 1080
# Health HAL
PRODUCT_PACKAGES += \
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Overrides
PRODUCT_BUILD_PROP_OVERRIDES += \
PRODUCT_DEVICE=mido \
PRODUCT_NAME=$(PRODUCT_RELEASE_NAME) \
TARGET_DEVICE=mido
PRODUCT_PROPERTY_OVERRIDES += \
ro.build.product=mido
# Blacklist
PRODUCT_SYSTEM_PROPERTY_BLACKLIST += \
ro.bootimage.build.date.utc \
ro.build.date.utc
# Vibrator
PRODUCT_COPY_FILES += \
$(call find-copy-subdir-files,*,$(LOCAL_PATH)/proprietary/vibrator/system/,$(TARGET_COPY_OUT_RECOVERY)/root/system/)