* All configs and files are from rhodep_g-user 13 T1SUS33.1-124-6-14 a15be release-keys. Change-Id: I003e30441fbff06a7551cdfe4358f6620cf3f67d
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2022-2023 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
DEVICE_PATH := device/motorola/rhodep
|
|
|
|
# Inherit from motorola sm6375-common
|
|
include device/motorola/sm6375-common/BoardConfigCommon.mk
|
|
|
|
# Bootloader
|
|
TARGET_BOOTLOADER_BOARD_NAME := rhodep
|
|
|
|
# Kernel
|
|
BOARD_KERNEL_CMDLINE += androidboot.hab.product=rhodep
|
|
TARGET_KERNEL_CONFIG += vendor/rhodep_defconfig
|
|
|
|
# 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_MOT_DP_GROUP_SIZE := 8608808960 # (BOARD_SUPER_PARTITION_SIZE - 4MB)
|
|
BOARD_SUPER_PARTITION_SIZE := 8613003264
|
|
|
|
# Properties
|
|
TARGET_PRODUCT_PROP += $(DEVICE_PATH)/product.prop
|
|
TARGET_SYSTEM_PROP += $(DEVICE_PATH)/system.prop
|
|
TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop
|
|
|
|
# Recovery
|
|
TARGET_RECOVERY_UI_MARGIN_HEIGHT := 90
|
|
|
|
# Security patch level
|
|
VENDOR_SECURITY_PATCH := 2025-02-01
|
|
|
|
# inherit from the proprietary version
|
|
include vendor/motorola/rhodep/BoardConfigVendor.mk
|