summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2018-06-01 04:58:54 +0200
committerJiyong Park <jiyong@google.com>2018-06-07 16:24:33 +0200
commit8b7af4c0ee245c913ae00dbf052c85156fb1b68e (patch)
treef6de65c81ca137588032ddd9c86596d9bcaafeb7 /recovery.cpp
parentMerge "updater_sample: Add suspend/resume update" (diff)
downloadandroid_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.tar
android_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.tar.gz
android_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.tar.bz2
android_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.tar.lz
android_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.tar.xz
android_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.tar.zst
android_bootable_recovery-8b7af4c0ee245c913ae00dbf052c85156fb1b68e.zip
Diffstat (limited to '')
-rw-r--r--recovery.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 98cbfed2f..fea65ae9e 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -820,15 +820,13 @@ static Device::BuiltinAction prompt_and_wait(Device* device, int status) {
break;
}
case Device::MOUNT_SYSTEM:
- // For a system image built with the root directory (i.e. system_root_image == "true"), we
- // mount it to /system_root, and symlink /system to /system_root/system to make adb shell
- // work (the symlink is created through the build system). (Bug: 22855115)
+ // the system partition is mounted at /mnt/system
if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
- if (ensure_path_mounted_at("/", "/system_root") != -1) {
+ if (ensure_path_mounted_at("/", "/mnt/system") != -1) {
ui->Print("Mounted /system.\n");
}
} else {
- if (ensure_path_mounted("/system") != -1) {
+ if (ensure_path_mounted_at("/system", "/mnt/system") != -1) {
ui->Print("Mounted /system.\n");
}
}