# # Copyright (C) 2022-2023 The LineageOS Project # # SPDX-License-Identifier: Apache-2.0 # DEVICE_PATH := device/motorola/xpeng # Inherit from motorola sm7325-common include device/motorola/sm7325-common/BoardConfigCommon.mk # Bootloader TARGET_BOOTLOADER_BOARD_NAME := xpeng # HIDL DEVICE_MANIFEST_FILE += $(DEVICE_PATH)/manifest_xpeng.xml # Kernel BOARD_KERNEL_CMDLINE += androidboot.hab.product=xpeng TARGET_KERNEL_CONFIG += vendor/lineage_xpeng.config # Kernel Modules BOARD_VENDOR_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load)) BOARD_VENDOR_KERNEL_MODULES_BLOCKLIST_FILE := $(DEVICE_PATH)/modules.blocklist BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD := $(strip $(shell cat $(DEVICE_PATH)/modules.load.recovery)) BOOT_KERNEL_MODULES := $(BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD) # Partitions BOARD_USERDATAIMAGE_PARTITION_SIZE := 116674899968 BOARD_MOT_DP_GROUP_SIZE := 8585740288 # ( BOARD_SUPER_PARTITION_SIZE - 4MB ) BOARD_SUPER_PARTITION_SIZE := 8589934592 # Properties TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop # Recovery TARGET_RECOVERY_UI_MARGIN_HEIGHT := 90 # Security VENDOR_SECURITY_PATCH := 2023-11-01 # inherit from the proprietary version include vendor/motorola/xpeng/BoardConfigVendor.mk