summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-05-02 18:32:41 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-05-02 18:32:41 +0200
commite0c8a9bb02d4518c0723ea56b02da51373ddb5e9 (patch)
tree5ba5eaba201388d083ba09015c592fcf25a1b6a9
parentMerge "Fix google-explicit-constructor warnings." am: fafa6a6531 (diff)
parentrecovery: Always log the update attempt. (diff)
downloadandroid_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.tar
android_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.tar.gz
android_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.tar.bz2
android_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.tar.lz
android_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.tar.xz
android_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.tar.zst
android_bootable_recovery-e0c8a9bb02d4518c0723ea56b02da51373ddb5e9.zip
-rw-r--r--recovery.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/recovery.cpp b/recovery.cpp
index f913dc5b4..cf368e4e9 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1425,6 +1425,10 @@ int main(int argc, char **argv) {
int status = INSTALL_SUCCESS;
if (update_package != NULL) {
+ // It's not entirely true that we will modify the flash. But we want
+ // to log the update attempt since update_package is non-NULL.
+ modified_flash = true;
+
if (!is_battery_ok()) {
ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
BATTERY_OK_PERCENTAGE);