mirror of
https://github.com/Evolution-X-Devices/device_xiaomi_pyxis
synced 2026-02-01 04:50:28 +00:00
With previous changes to audio configuration we are able to switch to OSS audio HAL. TAS2562 amplifier HAL enablement is covered by subsequent patch. Change-Id: Ic78e05f809c12cfeeefd59ec5156455a955a61e0
35 lines
699 B
Makefile
35 lines
699 B
Makefile
#
|
|
# Copyright (C) 2022 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Inherit from sdm710-common
|
|
include device/xiaomi/sdm710-common/BoardConfigCommon.mk
|
|
|
|
DEVICE_PATH := device/xiaomi/pyxis
|
|
|
|
BUILD_BROKEN_DUP_RULES := true
|
|
|
|
# Camera
|
|
MALLOC_SVELTE_FOR_LIBC32 := true
|
|
|
|
# Display
|
|
TARGET_SCREEN_DENSITY := 440
|
|
|
|
# Kernel
|
|
TARGET_KERNEL_CONFIG += xiaomi/pyxis.config
|
|
|
|
# Partitions
|
|
BOARD_BOOTIMAGE_PARTITION_SIZE := 134217728
|
|
|
|
# Properties
|
|
TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop
|
|
TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop
|
|
|
|
# VINTF
|
|
DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/manifest.xml
|
|
|
|
# Inherit from the proprietary version
|
|
include vendor/xiaomi/pyxis/BoardConfigVendor.mk
|