summaryrefslogtreecommitdiff
path: root/adb/remount_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'adb/remount_service.cpp')
-rw-r--r--adb/remount_service.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/adb/remount_service.cpp b/adb/remount_service.cpp
index a4c7a5a3df..d679a6dff4 100644
--- a/adb/remount_service.cpp
+++ b/adb/remount_service.cpp
@@ -145,8 +145,10 @@ void remount_service(int fd, void* cookie) {
} else {
success &= remount_partition(fd, "/system");
}
- success &= remount_partition(fd, "/vendor");
+ success &= remount_partition(fd, "/odm");
success &= remount_partition(fd, "/oem");
+ success &= remount_partition(fd, "/product");
+ success &= remount_partition(fd, "/vendor");
WriteFdExactly(fd, success ? "remount succeeded\n" : "remount failed\n");