OSDN Git Service

dumpstate: Add /data/misc/recovery
authorMark Salyzyn <salyzyn@google.com>
Fri, 25 Mar 2016 19:56:39 +0000 (12:56 -0700)
committerMark Salyzyn <salyzyn@google.com>
Fri, 25 Mar 2016 21:34:36 +0000 (21:34 +0000)
(cherry picked from commit 23e86e91ff971a00f62954833a17df2dad1a13af)

Bug: 27176738
Change-Id: Ibc2342c6a29e5aebcac4875d7c2eed48fa8af7de

cmds/dumpstate/dumpstate.cpp

index 78da143..bb485bf 100644 (file)
@@ -68,6 +68,7 @@ static bool add_zip_entry_from_fd(const std::string& entry_name, int fd);
 
 #define RAFT_DIR "/data/misc/raft/"
 #define RECOVERY_DIR "/cache/recovery"
+#define RECOVERY_DATA_DIR "/data/misc/recovery"
 #define TOMBSTONE_DIR "/data/tombstones"
 #define TOMBSTONE_FILE_PREFIX TOMBSTONE_DIR "/tombstone_"
 /* Can accomodate a tombstone number up to 9999. */
@@ -1259,6 +1260,7 @@ int main(int argc, char *argv[]) {
     /* Get the tombstone fds, recovery files, and mount info here while we are running as root. */
     get_tombstone_fds(tombstone_data);
     add_dir(RECOVERY_DIR, true);
+    add_dir(RECOVERY_DATA_DIR, true);
     add_mountinfo();
 
     if (!drop_root_user()) {