blob: 4326d0e1e86a6bb4b97fa8727ff1f307716db772 [file] [log] [blame]
Jackeagle1cba4132018-12-19 17:08:24 +01001From 02703201a3d2b228620fbbfcca4a44c53f821ffe Mon Sep 17 00:00:00 2001
2From: Jackeagle <jackeagle102@gmail.com>
3Date: Wed, 19 Dec 2018 17:06:59 +0100
4Subject: [PATCH 10/11] Revert "soong_config: Add flag for crypto waiting on
5 QSEE to start"
6
7This reverts commit 9ce6d1fa37b1bf4ac78f9fcd10302820f8161565.
8---
9 build/soong/android/variable.go | 4 ----
10 build/soong/soong_config.mk | 1 -
11 2 files changed, 5 deletions(-)
12
13diff --git a/build/soong/android/variable.go b/build/soong/android/variable.go
14index 67452c7..0123521 100644
15--- a/build/soong/android/variable.go
16+++ b/build/soong/android/variable.go
17@@ -36,9 +36,6 @@ type Product_variables struct {
18 Device_support_legacy_hwfde struct {
19 Cflags []string
20 }
21- Device_support_wait_for_qsee struct {
22- Cflags []string
23- }
24 }
25
26 type ProductVariables struct {
27@@ -54,5 +51,4 @@ type ProductVariables struct {
28 Device_support_hwfde *bool `json:",omitempty"`
29 Device_support_hwfde_perf *bool `json:",omitempty"`
30 Device_support_legacy_hwfde *bool `json:",omitempty"`
31- Device_support_wait_for_qsee *bool `json:",omitempty"`
32 }
33diff --git a/build/soong/soong_config.mk b/build/soong/soong_config.mk
34index 91e0b41..c31cb22 100644
35--- a/build/soong/soong_config.mk
36+++ b/build/soong/soong_config.mk
37@@ -7,7 +7,6 @@ $(call add_json_str_omitempty, Additional_gralloc_10_usage_bits, $(TARGET_ADDITI
38 $(call add_json_bool, Device_support_hwfde, $(filter true,$(TARGET_HW_DISK_ENCRYPTION)))
39 $(call add_json_bool, Device_support_hwfde_perf, $(filter true,$(TARGET_HW_DISK_ENCRYPTION_PERF)))
40 $(call add_json_bool, Device_support_legacy_hwfde, $(filter true,$(TARGET_LEGACY_HW_DISK_ENCRYPTION)))
41-$(call add_json_bool, Device_support_wait_for_qsee, $(filter true,$(TARGET_KEYMASTER_WAIT_FOR_QSEE)))
42 $(call add_json_bool, Has_legacy_camera_hal1, $(filter true,$(TARGET_HAS_LEGACY_CAMERA_HAL1)))
43 $(call add_json_str, Specific_camera_parameter_library, $(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY))
44 $(call add_json_str_omitempty, Target_shim_libs, $(TARGET_LD_SHIM_LIBS))
45--
462.17.1
47