diff options
author | Nolen Johnson <johnsonnolen@gmail.com> | 2022-12-27 15:25:35 -0500 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2023-08-03 11:45:45 +0200 |
commit | 8279e5590ec2b55cdb213a1edb2cca02bdc35744 (patch) | |
tree | ca82400df7fe6c9f48d6cf5a15a915186161f3bf /BoardConfigCommon.mk | |
parent | bbbcf0bfcd49fc09271ba46bea539628c794bc67 (diff) |
msm8996-common: Explicitly disable AVB
* This allows infra to sign successfully, I hate it, but it builds,
boots, and works fine enough as a workaround.
* The underlying issue is that this flag causes avbtool args and location
to be set in `misc_info.txt` whereas before it was not.
Change-Id: I7bdf237ec30d692c7d8b5c626a6e761e2c1a2593
Diffstat (limited to 'BoardConfigCommon.mk')
-rw-r--r-- | BoardConfigCommon.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index 7b63833..a86914f 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -181,6 +181,10 @@ BOARD_VENDOR_SEPOLICY_DIRS += $(VENDOR_PATH)/sepolicy/vendor TARGET_INIT_VENDOR_LIB := //$(VENDOR_PATH):libinit_msm8996 TARGET_RECOVERY_DEVICE_MODULES := libinit_msm8996 +# Verity +# Only needed for signing +BOARD_AVB_ENABLE := false + # Wifi BOARD_HAS_QCOM_WLAN := true BOARD_HAS_QCOM_WLAN_SDK := true |