mirror of
https://github.com/Anything-at-25-00/android_device_tecno_LG8n.git
synced 2024-11-22 21:56:26 -08:00
2648454f4f
* vendor_dlkm contains kernel modules that were previously located to /vendor/lib/modules and is updatable separately, making us able to test kernel modifications faster * Reference: https://source.android.com/docs/core/architecture/partitions/vendor-odm-dlkm-partition Signed-off-by: Woomymy <woomy@woomy.be> Change-Id: I38f5989d4e5a52bf295add8099f6bf6cb8ea3288 Signed-off-by: dodyirawan85 <40514988+dodyirawan85@users.noreply.github.com>
74 lines
1.6 KiB
Makefile
74 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2023 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# A/B
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk)
|
|
|
|
AB_OTA_UPDATER := true
|
|
AB_OTA_PARTITIONS := \
|
|
boot \
|
|
product \
|
|
system \
|
|
vbmeta \
|
|
vbmeta_system \
|
|
vbmeta_vendor \
|
|
vendor \
|
|
vendor_boot \
|
|
vendor_dlkm
|
|
|
|
AB_OTA_POSTINSTALL_CONFIG += \
|
|
RUN_POSTINSTALL_system=true \
|
|
POSTINSTALL_PATH_system=system/bin/otapreopt_script \
|
|
FILESYSTEM_TYPE_system=erofs \
|
|
POSTINSTALL_OPTIONAL_system=true
|
|
|
|
AB_OTA_POSTINSTALL_CONFIG += \
|
|
RUN_POSTINSTALL_vendor=true \
|
|
POSTINSTALL_PATH_vendor=bin/checkpoint_gc \
|
|
FILESYSTEM_TYPE_vendor=erofs \
|
|
POSTINSTALL_OPTIONAL_vendor=true
|
|
|
|
PRODUCT_PACKAGES += \
|
|
update_engine \
|
|
update_verifier \
|
|
otapreopt_script \
|
|
checkpoint_gc
|
|
|
|
# Boot control HAL
|
|
PRODUCT_PACKAGES += \
|
|
android.hardware.boot@1.2-service \
|
|
android.hardware.boot@1.2-mtkimpl \
|
|
android.hardware.boot@1.2-mtkimpl.recovery
|
|
|
|
# Dynamic partitions
|
|
PRODUCT_USE_DYNAMIC_PARTITIONS := true
|
|
|
|
# FastbootD
|
|
PRODUCT_PACKAGES += \
|
|
android.hardware.fastboot@1.1-impl-mock \
|
|
fastbootd
|
|
|
|
# Health
|
|
PRODUCT_PACKAGES += \
|
|
android.hardware.health@2.1-service \
|
|
android.hardware.health@2.1-impl \
|
|
android.hardware.health@2.1-impl.recovery
|
|
|
|
# Init files
|
|
PRODUCT_PACKAGES += \
|
|
fstab.mt6789_vendor_ramdisk
|
|
|
|
# Shipping API level
|
|
PRODUCT_SHIPPING_API_LEVEL := 31
|
|
|
|
# Soong namespaces
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
$(LOCAL_PATH) \
|
|
hardware/mediatek
|
|
|
|
# Inherit the proprietary files
|
|
$(call inherit-product, vendor/infinix/X6833B/X6833B-vendor.mk)
|