From eb6f13aeb68368c0d0776173d63a29cf36fb17e8 Mon Sep 17 00:00:00 2001 From: Hridya Valsaraju Date: Wed, 12 Sep 2018 10:25:01 -0700 Subject: Allow switch to fastbootd when userdata wipe is required Bug: 114065789 Test: Able to use 'adb reboot fastboot' to switch to fastboot from recovery when a userdata wipe is required to boot. Change-Id: Ice6950444656f8d8857808531af030078f544b88 --- install.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'install.h') diff --git a/install.h b/install.h index 0f6670a35..1d3d0cd27 100644 --- a/install.h +++ b/install.h @@ -23,8 +23,15 @@ #include -enum { INSTALL_SUCCESS, INSTALL_ERROR, INSTALL_CORRUPT, INSTALL_NONE, INSTALL_SKIPPED, - INSTALL_RETRY }; +enum InstallResult { + INSTALL_SUCCESS, + INSTALL_ERROR, + INSTALL_CORRUPT, + INSTALL_NONE, + INSTALL_SKIPPED, + INSTALL_RETRY, + INSTALL_KEY_INTERRUPTED +}; // Installs the given update package. If INSTALL_SUCCESS is returned and *wipe_cache is true on // exit, caller should wipe the cache partition. -- cgit v1.2.3