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

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

Change-Id: Ibd14595638ab5daf7965043d64cc5c06dddd1b7c
This commit is contained in:
Eric Biggers 2020-11-12 17:48:16 +00:00 committed by Automerger Merge Worker
commit 79f6bce6ba

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);