forked from LineageOS/android_device_xiaomi_dipper
-
Notifications
You must be signed in to change notification settings - Fork 9
/
BoardConfig.mk
39 lines (28 loc) · 874 Bytes
/
BoardConfig.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
#
# Copyright (C) 2018-2020 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Inherit from sdm710-common
-include device/xiaomi/sdm710-common/BoardConfigCommon.mk
DEVICE_PATH := device/xiaomi/sirius
# Assert
TARGET_OTA_ASSERT_DEVICE := sirius
# Display
TARGET_SCREEN_DENSITY := 480
# HIDL
DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/manifest.xml
# Kernel
TARGET_KERNEL_CONFIG := sirius_defconfig
# Partitions
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 67108864
# Properties
TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop
TARGET_PRODUCT_PROP += $(DEVICE_PATH)/product.prop
TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop
# Recovery
TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab.qcom
# SELinux
BOARD_VENDOR_SEPOLICY_DIRS += $(DEVICE_PATH)/sepolicy/vendor
# Inherit from the proprietary stuffs
-include vendor/xiaomi/sirius/BoardConfigVendor.mk