blob: ab2d7b79bf15d9dd551707bce52bf6a4ff12ac0d (
plain) (
blame)
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
|
#
# Copyright (C) 2022 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
DEVICE_PATH := device/xiaomi/veux
# Inherit from sm6375-common
include device/xiaomi/sm6375-common/BoardConfigCommon.mk
# Build Broken
BUILD_BROKEN_DUP_RULES := true
BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES := true
# Display
TARGET_SCREEN_DENSITY := 440
# Init
TARGET_INIT_VENDOR_LIB := //$(DEVICE_PATH):init_xiaomi_veux
TARGET_RECOVERY_DEVICE_MODULES := init_xiaomi_veux
# OTA assert
TARGET_OTA_ASSERT_DEVICE := peux,veux
# Inherit from the proprietary version
include vendor/xiaomi/veux/BoardConfigVendor.mk
|