afe3da1eba
Squashed with: Author: Nolen Johnson <johnsonnolen@gmail.com> Date: Sun May 9 16:04:34 2021 -0400 sunfish: Simplify AVB flag logic * AVB's `--flags 3` argument builds a disabled VBMeta with disabled hashtree, so no need to set both flags individually. Change-Id: Ibe9ee322a5af58f13e76d53e18dee49451fe8838 Dhina17: Also include the vbmeta to the AB_OTA_PARTITIONS Change-Id: Ie8f1e0929b037b35b5e45c2e31be9253fa0bb097
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2022 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 \
|
|
dtbo \
|
|
product \
|
|
system \
|
|
system_ext \
|
|
vbmeta \
|
|
vendor \
|
|
vendor_boot
|
|
|
|
PRODUCT_PACKAGES += \
|
|
update_engine \
|
|
update_engine_sideload \
|
|
update_verifier
|
|
|
|
AB_OTA_POSTINSTALL_CONFIG += \
|
|
RUN_POSTINSTALL_system=true \
|
|
POSTINSTALL_PATH_system=system/bin/otapreopt_script \
|
|
FILESYSTEM_TYPE_system=ext4 \
|
|
POSTINSTALL_OPTIONAL_system=true
|
|
|
|
PRODUCT_PACKAGES += \
|
|
otapreopt_script
|
|
|
|
# Partitions
|
|
PRODUCT_BUILD_SUPER_PARTITION := false
|
|
PRODUCT_USE_DYNAMIC_PARTITIONS := true
|
|
|
|
# Shipping API level
|
|
BOARD_API_LEVEL := 30
|
|
BOARD_SHIPPING_API_LEVEL := 30
|
|
PRODUCT_SHIPPING_API_LEVEL := 31
|
|
|
|
# Soong namespaces
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
$(LOCAL_PATH)
|
|
|
|
# Vendor ramdisk
|
|
PRODUCT_COPY_FILES += \
|
|
$(LOCAL_PATH)/rootdir/etc/fstab.qcom_ramdisk:$(TARGET_COPY_OUT_VENDOR_RAMDISK)/first_stage_ramdisk/fstab.qcom
|