mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_sm6250-common.git
synced 2025-08-04 15:36:27 +09:00
The product abstracts configs that need to be set to support updating of APEXes. Bug: 130418467 Test: m Test: adb shell getprop ro.apex.updatable in Pixel 2 and 3 Test: adb shell /system/apex/com.android.apex.cts.shim.apex exists. Change-Id: Id5aa944ceba6a6846308f1c18a08af8b3bb38589
25 lines
659 B
Makefile
25 lines
659 B
Makefile
#
|
|
# Copyright (C) 2021 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
PRODUCT_BUILD_SUPER_PARTITION := false
|
|
PRODUCT_USE_DYNAMIC_PARTITIONS := true
|
|
|
|
# Overlays
|
|
DEVICE_PACKAGE_OVERLAYS += \
|
|
$(LOCAL_PATH)/overlay \
|
|
$(LOCAL_PATH)/overlay-lineage
|
|
|
|
PRODUCT_ENFORCE_RRO_TARGETS := *
|
|
|
|
# Enable project quotas and casefolding for emulated storage without sdcardfs
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk)
|
|
|
|
# Enable updating of APEXes
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
|
|
|
|
# Inherit proprietary targets
|
|
$(call inherit-product, vendor/xiaomi/sm6250-common/sm6250-common-vendor.mk)
|