-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevice.mk
90 lines (69 loc) · 2.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#
# Copyright (C) 2021 The PixelExperience Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Inherit virtual_ab_ota product
$(call inherit-product, \
$(SRC_TARGET_DIR)/product/virtual_ab_ota.mk)
# A/B
PRODUCT_PACKAGES += \
PRODUCT_PACKAGES_DEBUG += \
bootctl
AB_OTA_POSTINSTALL_CONFIG += \
RUN_POSTINSTALL_system=true \
POSTINSTALL_PATH_system=system/bin/otapreopt_script \
FILESYSTEM_TYPE_system=ext4 \
POSTINSTALL_OPTIONAL_system=true
AB_OTA_POSTINSTALL_CONFIG += \
RUN_POSTINSTALL_vendor=true \
POSTINSTALL_PATH_vendor=bin/checkpoint_gc \
FILESYSTEM_TYPE_vendor=ext4 \
POSTINSTALL_OPTIONAL_vendor=true
PRODUCT_PACKAGES += \
update_engine \
update_engine_sideload \
update_verifier
PRODUCT_PACKAGES += \
checkpoint_gc \
otapreopt_script
PRODUCT_PACKAGES += \
GCamGOPrebuilt
# API level, the device has been commercially launched on
PRODUCT_SHIPPING_API_LEVEL := 30
# Audio
TARGET_ENABLE_AUDIO_ULL := true
# 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
# Cutout Ring
PRODUCT_PACKAGES += \
CutoutRingServiceMojito
# Dynamic partitions
PRODUCT_USE_DYNAMIC_PARTITIONS := true
PRODUCT_BUILD_SUPER_PARTITION := false
# OctaviOs stuff
PRODUCT_BOARD_PLATFORM := sm6150
PRODUCT_USES_QCOM_HARDWARE := true
# hals
SRC_AUDIO_HAL_DIR := hardware/qcom-caf/sm6150/audio
SRC_DISPLAY_HAL_DIR := hardware/qcom-caf/sm6150/display
SRC_MEDIA_HAL_DIR := hardware/qcom-caf/sm6150/media
# Overlays
DEVICE_PACKAGE_OVERLAYS += \
$(LOCAL_PATH)/overlay
# Sensor
TARGET_ENABLE_MULTI_SENSOR := true
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Inherit from sm6150-common
$(call inherit-product, device/xiaomi/sm6150-common/sm6150.mk)
# Inherit from vendor blobs
$(call inherit-product, vendor/xiaomi/mojito/mojito-vendor.mk)