aboutsummaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2014-09-24 11:46:17 -0700
committerJeff Sharkey <jsharkey@android.com>2014-09-24 11:46:17 -0700
commita6e13ae01bff5109361868f565187f16d045c82d (patch)
tree18a82ed836d0558ab9ee3c09459acbc0a12e773f /recovery.cpp
parent574443d8956802f35347cac7fae7eb16240e3c16 (diff)
downloadbootable_recovery-a6e13ae01bff5109361868f565187f16d045c82d.zip
bootable_recovery-a6e13ae01bff5109361868f565187f16d045c82d.tar.gz
bootable_recovery-a6e13ae01bff5109361868f565187f16d045c82d.tar.bz2
Include reason when wiping data.
This will help us track down who requested a data wipe. Bug: 17412160 Change-Id: I1c439fbd29f96b9851810baca9101f683a0f18d8
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/recovery.cpp b/recovery.cpp
index f78d6e4..7f17b16 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -60,6 +60,7 @@ static const struct option OPTIONS[] = {
{ "locale", required_argument, NULL, 'l' },
{ "stages", required_argument, NULL, 'g' },
{ "shutdown_after", no_argument, NULL, 'p' },
+ { "reason", required_argument, NULL, 'r' },
{ NULL, 0, NULL, 0 },
};
@@ -80,6 +81,7 @@ RecoveryUI* ui = NULL;
char* locale = NULL;
char recovery_version[PROPERTY_VALUE_MAX+1];
char* stage = NULL;
+char* reason = NULL;
/*
* The recovery tool communicates with the main system through /cache files.
@@ -870,6 +872,7 @@ main(int argc, char **argv) {
break;
}
case 'p': shutdown_after = true; break;
+ case 'r': reason = optarg; break;
case '?':
LOGE("Invalid command argument\n");
continue;
@@ -881,6 +884,7 @@ main(int argc, char **argv) {
}
printf("locale is [%s]\n", locale);
printf("stage is [%s]\n", stage);
+ printf("reason is [%s]\n", reason);
Device* device = make_device();
ui = device->GetUI();