summaryrefslogtreecommitdiffstats
path: root/recovery_ui
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-04-16 23:22:25 +0200
committerTao Bao <tbao@google.com>2019-04-26 21:20:03 +0200
commit378bfbfc5c6f268c16b7f1a254de0ed36da52012 (patch)
treef9aaf55a643d86f6aed6846fd5649c0bb7817173 /recovery_ui
parentImport translations. DO NOT MERGE (diff)
downloadandroid_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.tar
android_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.tar.gz
android_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.tar.bz2
android_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.tar.lz
android_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.tar.xz
android_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.tar.zst
android_bootable_recovery-378bfbfc5c6f268c16b7f1a254de0ed36da52012.zip
Diffstat (limited to '')
-rw-r--r--recovery_ui/device.cpp1
-rw-r--r--recovery_ui/include/recovery_ui/device.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/recovery_ui/device.cpp b/recovery_ui/device.cpp
index ddb0118db..e7ae1a3e1 100644
--- a/recovery_ui/device.cpp
+++ b/recovery_ui/device.cpp
@@ -37,6 +37,7 @@ static std::vector<std::pair<std::string, Device::BuiltinAction>> g_menu_actions
{ "View recovery logs", Device::VIEW_RECOVERY_LOGS },
{ "Run graphics test", Device::RUN_GRAPHICS_TEST },
{ "Run locale test", Device::RUN_LOCALE_TEST },
+ { "Enter rescue", Device::ENTER_RESCUE },
{ "Power off", Device::SHUTDOWN },
};
diff --git a/recovery_ui/include/recovery_ui/device.h b/recovery_ui/include/recovery_ui/device.h
index 3c44510c8..8f17639d6 100644
--- a/recovery_ui/include/recovery_ui/device.h
+++ b/recovery_ui/include/recovery_ui/device.h
@@ -50,6 +50,7 @@ class Device {
KEY_INTERRUPTED = 13,
ENTER_FASTBOOT = 14,
ENTER_RECOVERY = 15,
+ ENTER_RESCUE = 16,
};
explicit Device(RecoveryUI* ui);