aboutsummaryrefslogtreecommitdiffstats
path: root/device.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2014-07-08 14:10:23 -0700
committerDoug Zongker <dougz@google.com>2014-07-08 14:10:23 -0700
commit93950229cf9a991589f6bb071a966b00349d18d6 (patch)
treeeec365a85750de0ac8c9f73c0be301d099c4688f /device.h
parent075ad800c539503d0515e5e0b4af160eccedead9 (diff)
downloadbootable_recovery-93950229cf9a991589f6bb071a966b00349d18d6.zip
bootable_recovery-93950229cf9a991589f6bb071a966b00349d18d6.tar.gz
bootable_recovery-93950229cf9a991589f6bb071a966b00349d18d6.tar.bz2
drop APPLY_CACHE and refactor APPLY_EXT
Drop support for sideloading OTA packages of the cache partition (a half-solution that's long since been deprecated by "adb sideload"). Refactor the code to sideload OTA packages from SD cards: remove the installation code from the file browser. Change-Id: Id0dff6b27c4a5837546f174f50e2e1d0379c43db
Diffstat (limited to 'device.h')
-rw-r--r--device.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/device.h b/device.h
index df71377..57ec3fc 100644
--- a/device.h
+++ b/device.h
@@ -65,7 +65,8 @@ class Device {
// - invoke a specific action (a menu position: any non-negative number)
virtual int HandleMenuKey(int key, int visible) = 0;
- enum BuiltinAction { NO_ACTION, REBOOT, APPLY_EXT, APPLY_CACHE,
+ enum BuiltinAction { NO_ACTION, REBOOT, APPLY_EXT,
+ APPLY_CACHE, // APPLY_CACHE is deprecated; has no effect
APPLY_ADB_SIDELOAD, WIPE_DATA, WIPE_CACHE,
REBOOT_BOOTLOADER, SHUTDOWN };