Revert "lineage: Add flag for skipping EV_REL input in recovery"
This reverts commit fd27bb49121c7a3199d1dc81b05ce86df3546bab.
Should have never been added. This time should be done with a prop.
Change-Id: I72a4563834447d4dbeda66dfb232b0541727cb55
diff --git a/build/soong/android/variable.go b/build/soong/android/variable.go
index d06c924..4b0895a 100644
--- a/build/soong/android/variable.go
+++ b/build/soong/android/variable.go
@@ -18,9 +18,6 @@
Cflags []string
Header_libs []string
}
- Recovery_skip_ev_rel_input struct {
- Cflags []string
- }
Should_wait_for_qsee struct {
Cflags []string
}
@@ -75,7 +72,6 @@
Bootloader_message_offset *int `json:",omitempty"`
Has_legacy_camera_hal1 *bool `json:",omitempty"`
Qcom_um_soong_namespace *string `json:",omitempty"`
- Recovery_skip_ev_rel_input *bool `json:",omitempty"`
Should_wait_for_qsee *bool `json:",omitempty"`
Specific_camera_parameter_library *string `json:",omitempty"`
Supports_extended_compress_format *bool `json:",omitempty"`
diff --git a/build/soong/soong_config.mk b/build/soong/soong_config.mk
index 4ece1b7..5598578 100644
--- a/build/soong/soong_config.mk
+++ b/build/soong/soong_config.mk
@@ -9,7 +9,6 @@
$(call add_json_val_default, Bootloader_message_offset, $(BOOTLOADER_MESSAGE_OFFSET), 0)
$(call add_json_bool, Has_legacy_camera_hal1, $(filter true,$(TARGET_HAS_LEGACY_CAMERA_HAL1)))
$(call add_json_str_omitempty, Qcom_um_soong_namespace, $(if $(filter $(UM_PLATFORMS),$(TARGET_BOARD_PLATFORM)),$(QCOM_SOONG_NAMESPACE),))
-$(call add_json_bool, Recovery_skip_ev_rel_input, $(filter true,$(TARGET_RECOVERY_SKIP_EV_REL_INPUT)))
$(call add_json_bool, Should_wait_for_qsee, $(filter true,$(TARGET_KEYMASTER_WAIT_FOR_QSEE)))
$(call add_json_str, Specific_camera_parameter_library, $(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY))
$(call add_json_bool, Supports_extended_compress_format, $(filter true,$(AUDIO_FEATURE_ENABLED_EXTENDED_COMPRESS_FORMAT)))