Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 11678153 authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "Add PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS." am: 4f85bace

am: 09e4e23a

Change-Id: I7b69b9780b273982a6b17bb23e04f1dd968ad56e
parents 6fe8c185 09e4e23a
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -933,6 +933,20 @@ PLATFORM_SEPOLICY_COMPAT_VERSIONS := \
    PLATFORM_SEPOLICY_VERSION \
    TOT_SEPOLICY_VERSION \

# If true, kernel configuration requirements are present in OTA package (and will be enforced
# during OTA). Otherwise, kernel configuration requirements are enforced in VTS.
# Devices that checks the running kernel (instead of the kernel in OTA package) should not
# set this variable to prevent OTA failures.
ifndef PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS
  PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS :=
  ifdef PRODUCT_SHIPPING_API_LEVEL
    ifeq (true,$(call math_gt_or_eq,$(PRODUCT_SHIPPING_API_LEVEL),29))
      PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := true
    endif
  endif
endif
.KATI_READONLY := PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS

ifndef USE_LOGICAL_PARTITIONS
  USE_LOGICAL_PARTITIONS := $(PRODUCT_USE_LOGICAL_PARTITIONS)
endif