OSDN Git Service

vold: add support for more filesystems for public storage
[android-x86/system-vold.git] / Utils.cpp
index 2144a3a..65e7887 100644 (file)
--- 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;
 }