Merge "Switch to exfatprogs compatible fsck parameter" am: dfd36fe6b6 am: 79f6bce6ba

Original change: https://android-review.googlesource.com/c/platform/system/vold/+/1441937

Change-Id: I6a01df4dfd2d655b649b62a233c56d558042ff65
This commit is contained in:
Eric Biggers 2020-11-12 18:00:53 +00:00 committed by Automerger Merge Worker
commit 9d16d7310f

View file

@ -41,7 +41,7 @@ bool IsSupported() {
status_t Check(const std::string& source) {
std::vector<std::string> cmd;
cmd.push_back(kFsckPath);
cmd.push_back("-a");
cmd.push_back("-y");
cmd.push_back(source);
int rc = ForkExecvp(cmd, nullptr, sFsckUntrustedContext);