From df238b4e41d29aa02988d6d8da8ed8e531a7a79f Mon Sep 17 00:00:00 2001 From: Baligh Uddin Date: Mon, 29 Jul 2019 21:12:37 -0700 Subject: [PATCH] Select all .pem and .avbpubkey in otatools Apex payload dev keys are stored as .pem files. Apex payload also utilizes .avbpubkey as public keys. Change-Id: I65ced74be02008b666d7bb608f0d0a3ef3769c9c BUG: 138623265 --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index 4611fb388..658c7b376 100644 --- a/core/Makefile +++ b/core/Makefile @@ -3627,7 +3627,7 @@ OTATOOLS_DEPS := \ ifneq (,$(wildcard device)) OTATOOLS_DEPS += \ $(sort $(shell find device $(wildcard vendor) -type f -name "*.pk8" -o -name "verifiedboot*" -o \ - -name "*.x509.pem" -o -name "oem*.prop")) + -name "*.pem" -o -name "oem*.prop" -o -name "*.avbpubkey")) endif ifneq (,$(wildcard external/avb)) OTATOOLS_DEPS += \