From f20e1cf74d3e113094db3d381c4dfc715ae28162 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Tue, 11 Jul 2023 00:45:40 +0000 Subject: [PATCH] system_properties.proto: rename update_verifier_nonencrypted to update_verifier incident_helper contains some "interesting" code that automagically fills in a SystemPropertiesProto by finding the protobuf fields by name using system property name components. One of these fields is 'update_verifier_nonencrypted' which is nested inside 'init_svc'. This gets filled in with the value of init.svc.update_verifier_nonencrypted. The "update_verifier_nonencrypted" service is being renamed to simply "update_verifier", and as a result the name of the corresponding "init.svc.${service_name}" system property will change too. Therefore, rename the corresponding protobuf field too. Bug: 208476087 Test: presubmit Change-Id: I782ab726870df64c5b9cb354b223634d85a0f63b --- core/proto/android/os/system_properties.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/proto/android/os/system_properties.proto b/core/proto/android/os/system_properties.proto index 3cedba0632aa8..5a3539acae265 100644 --- a/core/proto/android/os/system_properties.proto +++ b/core/proto/android/os/system_properties.proto @@ -172,7 +172,7 @@ message SystemPropertiesProto { optional Status tombstoned = 29; optional Status ueventd = 30; optional Status update_engine = 31; - optional Status update_verifier_nonencrypted = 32; + optional Status update_verifier = 32; optional Status virtual_touchpad = 33; optional Status vndservicemanager = 34; optional Status vold = 35;