Merge "Exfat Need to add automatic repair function when exfat fsck device" am: 7e249ebdae am: 8006c80960
am: 42726be6a3
Change-Id: Ic8f3d783087dde9550230e36749eab49b30d9fdc
diff --git a/fs/Exfat.cpp b/fs/Exfat.cpp
index c624eb9..34f1024 100644
--- a/fs/Exfat.cpp
+++ b/fs/Exfat.cpp
@@ -41,6 +41,7 @@
status_t Check(const std::string& source) {
std::vector<std::string> cmd;
cmd.push_back(kFsckPath);
+ cmd.push_back("-a");
cmd.push_back(source);
int rc = ForkExecvp(cmd, nullptr, sFsckUntrustedContext);