OSDN Git Service

vold3: auto mount CDROM
[android-x86/system-vold.git] / model / PublicVolume.cpp
index 29671f1..1fd6286 100644 (file)
@@ -154,7 +154,7 @@ status_t PublicVolume::doMount() {
         ret = ntfs::Check(mDevPath);
     } else if (mFsType == "vfat") {
         ret = vfat::Check(mDevPath);
-    } else {
+    } else if (mFsType != "iso9660") {
         LOG(WARNING) << getId() << " unsupported filesystem check, skipping";
     }
     if (ret) {