Merge "Allow priv apps to use virtualizationservice"
diff --git a/build/soong/service_fuzzer_bindings.go b/build/soong/service_fuzzer_bindings.go
index 9e81f1d..664b65f 100644
--- a/build/soong/service_fuzzer_bindings.go
+++ b/build/soong/service_fuzzer_bindings.go
@@ -149,6 +149,7 @@
"audio": []string{},
"auth": []string{},
"autofill": []string{},
+ "background_install_control": []string{},
"backup": []string{},
"batteryproperties": []string{},
"batterystats": []string{},
diff --git a/microdroid/system/private/file_contexts b/microdroid/system/private/file_contexts
index 8406e55..7968ff3 100644
--- a/microdroid/system/private/file_contexts
+++ b/microdroid/system/private/file_contexts
@@ -110,7 +110,7 @@
/system/bin/logcat -- u:object_r:logcat_exec:s0
/system/bin/logd u:object_r:logd_exec:s0
/system/bin/sh -- u:object_r:shell_exec:s0
-/system/bin/tombstoned u:object_r:tombstoned_exec:s0
+/system/bin/tombstoned.microdroid u:object_r:tombstoned_exec:s0
/system/bin/toolbox -- u:object_r:toolbox_exec:s0
/system/bin/toybox -- u:object_r:toolbox_exec:s0
/system/bin/zipfuse u:object_r:zipfuse_exec:s0
diff --git a/private/service.te b/private/service.te
index 84e39ae..8059bfb 100644
--- a/private/service.te
+++ b/private/service.te
@@ -1,7 +1,8 @@
type ambient_context_service, app_api_service, system_server_service, service_manager_type;
type attention_service, system_server_service, service_manager_type;
+type bg_install_control_service, system_server_service, service_manager_type;
type compos_service, service_manager_type;
-type communal_service, app_api_service, system_server_service, service_manager_type;
+type communal_service, app_api_service, system_server_service, service_manager_type;
type dynamic_system_service, system_api_service, system_server_service, service_manager_type;
type gsi_service, service_manager_type;
type incidentcompanion_service, app_api_service, system_api_service, system_server_service, service_manager_type;
diff --git a/private/service_contexts b/private/service_contexts
index beeabbd..b083972 100644
--- a/private/service_contexts
+++ b/private/service_contexts
@@ -134,6 +134,7 @@
audio u:object_r:audio_service:s0
auth u:object_r:auth_service:s0
autofill u:object_r:autofill_service:s0
+background_install_control u:object_r:bg_install_control_service:s0
backup u:object_r:backup_service:s0
batteryproperties u:object_r:batteryproperties_service:s0
batterystats u:object_r:batterystats_service:s0