am 0a0689ab: am 9b789d7a: am 2b16bf88: Merge "Include reason when wiping data." into lmp-dev
* commit '0a0689ab85f8939bf126a969e1ef0b9b22272667':
Include reason when wiping data.
diff --git a/init/builtins.c b/init/builtins.c
index 8dbaab7..c192551 100644
--- a/init/builtins.c
+++ b/init/builtins.c
@@ -478,7 +478,8 @@
mkdir("/cache/recovery", 0700);
int fd = open("/cache/recovery/command", O_RDWR|O_CREAT|O_TRUNC, 0600);
if (fd >= 0) {
- write(fd, "--wipe_data", strlen("--wipe_data") + 1);
+ write(fd, "--wipe_data\n", strlen("--wipe_data\n") + 1);
+ write(fd, "--reason=wipe_data_via_recovery\n", strlen("--reason=wipe_data_via_recovery\n") + 1);
close(fd);
} else {
ERROR("could not open /cache/recovery/command\n");