summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-10 19:01:53 +0200
committerElliott Hughes <enh@google.com>2015-04-10 19:01:53 +0200
commitec28340cf3af1029a00db1c83d78d14e8798e245 (patch)
tree9cd50e1cce726c3a32b440012f09d63825cfcbee /recovery.cpp
parentMerge "Add ev_iterate_available_keys to minui." (diff)
downloadandroid_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.tar
android_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.tar.gz
android_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.tar.bz2
android_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.tar.lz
android_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.tar.xz
android_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.tar.zst
android_bootable_recovery-ec28340cf3af1029a00db1c83d78d14e8798e245.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/recovery.cpp b/recovery.cpp
index bbfeda4a6..cdbb598e3 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -840,7 +840,7 @@ prompt_and_wait(Device* device, int status) {
break;
case Device::APPLY_ADB_SIDELOAD:
- case Device::APPLY_EXT:
+ case Device::APPLY_SDCARD:
{
bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
if (adb) {
@@ -867,12 +867,14 @@ prompt_and_wait(Device* device, int status) {
}
break;
- case Device::APPLY_CACHE:
- ui->Print("\nAPPLY_CACHE is deprecated.\n");
+ case Device::VIEW_RECOVERY_LOGS:
+ choose_recovery_file(device);
break;
- case Device::READ_RECOVERY_LASTLOG:
- choose_recovery_file(device);
+ case Device::MOUNT_SYSTEM:
+ if (ensure_path_mounted("/system") != -1) {
+ ui->Print("Mounted /system.");
+ }
break;
}
}