X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=Utils.cpp;fp=Utils.cpp;h=65e78871032cf19088635726f89dfa66167110fd;hb=d9e9729c4a52e4ff23bb3465e7e047cf68c73df8;hp=2144a3ae3d6b210e28125ce5e95e881426f4c145;hpb=83d385d4c2eca143ff058ac63e1897d8b9efc8ab;p=android-x86%2Fsystem-vold.git diff --git a/Utils.cpp b/Utils.cpp index 2144a3a..65e7887 100644 --- a/Utils.cpp +++ b/Utils.cpp @@ -1003,6 +1003,10 @@ bool IsFilesystemSupported(const std::string& fsType) { PLOG(ERROR) << "Failed to read supported filesystems"; return false; } + + /* fuse filesystems */ + supported.append("fuse\tntfs\n"); + return supported.find(fsType + "\n") != std::string::npos; }