From 9c91d9029487146ea86edf2e1242af28f5712451 Mon Sep 17 00:00:00 2001 From: Keun-young Park Date: Thu, 18 May 2017 13:28:32 -0700 Subject: [PATCH] add ueventd to shutdown critial process - In some devices, some drivers still try to load firmware while shutting down, and crashes the kernel. So keep ueventd to prevent such case. bug: 38203024 Test: reboots (cherry picked from commit 7264bee975bdd35eac256e4939fa7dfd8962c2ac) Change-Id: Ifc725f906de01eba552c782b8ec0d7bd11d089d0 --- init/reboot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/reboot.cpp b/init/reboot.cpp index c99751966..aac1b5c17 100644 --- a/init/reboot.cpp +++ b/init/reboot.cpp @@ -331,7 +331,7 @@ void DoReboot(unsigned int cmd, const std::string& reason, const std::string& re // keep debugging tools until non critical ones are all gone. const std::set kill_after_apps{"tombstoned", "logd", "adbd"}; // watchdogd is a vendor specific component but should be alive to complete shutdown safely. - const std::set to_starts{"watchdogd", "vold"}; + const std::set to_starts{"watchdogd", "vold", "ueventd"}; ServiceManager::GetInstance().ForEachService([&kill_after_apps, &to_starts](Service* s) { if (kill_after_apps.count(s->name())) { s->SetShutdownCritical();