bd3b07d0b1
Change-Id: I11cd2699e105148a8fd381ca8bc91840a53db66b Signed-off-by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Hazama25 <hazamafawkes@gmail.com> Signed-off-by: donjohanliebert <donjohanliebert@gmail.com>
70 lines
2.0 KiB
Makefile
70 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2021-2024 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Inherit from sm6150-common
|
|
include device/xiaomi/sm6150-common/BoardConfigCommon.mk
|
|
|
|
# Inherit from proprietary files for miuicamera
|
|
-include vendor/xiaomi/sweet-miuicamera/products/board.mk
|
|
|
|
DEVICE_PATH := device/xiaomi/sweet
|
|
|
|
# Assert
|
|
TARGET_OTA_ASSERT_DEVICE := sweet,sweetin
|
|
|
|
# Audio
|
|
TARGET_PROVIDES_AUDIO_EXTNS := true
|
|
|
|
# Broken Rules
|
|
BUILD_BROKEN_CLANG_PROPERTY := true
|
|
BUILD_BROKEN_CLANG_ASFLAGS := true
|
|
BUILD_BROKEN_CLANG_CFLAGS := true
|
|
BUILD_BROKEN_DEPFILE := true
|
|
BUILD_BROKEN_DUP_RULES := true
|
|
BUILD_BROKEN_DUP_SYSPROP := true
|
|
BUILD_BROKEN_ELF_PREBUILT_PRODUCT_COPY_FILES := true
|
|
BUILD_BROKEN_ENFORCE_SYSPROP_OWNER := true
|
|
BUILD_BROKEN_INPUT_DIR_MODULES := true
|
|
BUILD_BROKEN_MISSING_REQUIRED_MODULES := true
|
|
BUILD_BROKEN_OUTSIDE_INCLUDE_DIRS := true
|
|
BUILD_BROKEN_PREBUILT_ELF_FILES := true
|
|
#BUILD_BROKEN_TREBLE_SYSPROP_NEVERALLOW := true
|
|
BUILD_BROKEN_USES_NETWORK := true
|
|
BUILD_BROKEN_VENDOR_PROPERTY_NAMESPACE := true
|
|
BUILD_BROKEN_VINTF_PRODUCT_COPY_FILES := true
|
|
BUILD_BROKEN_INCORRECT_PARTITION_IMAGES := true
|
|
BUILD_BROKEN_GENRULE_SANDBOXING := true
|
|
BUILD_BROKEN_DONT_CHECK_SYSTEMSDK := true
|
|
|
|
# HIDL
|
|
DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/configs/hidl/manifest.xml
|
|
|
|
# Kernel
|
|
TARGET_KERNEL_CONFIG += vendor/sweet.config
|
|
|
|
# Partitions
|
|
BOARD_BOOTIMAGE_PARTITION_SIZE := 134217728
|
|
BOARD_CACHEIMAGE_PARTITION_SIZE := 402653184
|
|
BOARD_DTBOIMG_PARTITION_SIZE := 33554432
|
|
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 134217728
|
|
BOARD_SUPER_PARTITION_SIZE := 9126805504
|
|
|
|
BOARD_QTI_DYNAMIC_PARTITIONS_SIZE := 9122611200 # (BOARD_SUPER_PARTITION_SIZE - 4194304) 4MiB overhead
|
|
|
|
# Properties
|
|
TARGET_ODM_PROP += $(DEVICE_PATH)/properties/odm.prop
|
|
TARGET_VENDOR_PROP += $(DEVICE_PATH)/properties/vendor.prop
|
|
|
|
# Screen density
|
|
TARGET_SCREEN_DENSITY := 410
|
|
|
|
# Security patch level
|
|
BOOT_SECURITY_PATCH := $(PLATFORM_SECURITY_PATCH)
|
|
VENDOR_SECURITY_PATCH := $(PLATFORM_SECURITY_PATCH)
|
|
|
|
# Inherit from proprietary files
|
|
include vendor/xiaomi/sweet/BoardConfigVendor.mk
|