Merge "Look for hwservicemanager in it's old location as well" into main
diff --git a/transport/ServiceManagement.cpp b/transport/ServiceManagement.cpp
index 78c1e96..6d85b57 100644
--- a/transport/ServiceManagement.cpp
+++ b/transport/ServiceManagement.cpp
@@ -211,7 +211,8 @@
 }
 static bool isHwServiceManagerInstalled() {
     return access("/system_ext/bin/hwservicemanager", F_OK) == 0 ||
-           access("/system/system_ext/bin/hwservicemanager", F_OK) == 0;
+           access("/system/system_ext/bin/hwservicemanager", F_OK) == 0 ||
+           access("/system/bin/hwservicemanager", F_OK) == 0;
 }
 
 /*