Revert "fs_mgr: Add virtiofs to supported fs list"

This reverts commit 79f7132bc3.

Change-Id: Id0e419bb2c74b048d58d24b3cdfb8bf3c5f03947
This commit is contained in:
Yumi Yukimura 2024-11-23 15:27:21 +08:00
parent 3f2d09e4b0
commit 78e10dfc1b

View file

@ -116,7 +116,7 @@ bool TryPathMount(FstabEntry* rec, const std::string& mount_pt) {
}
static const std::vector<std::string> supported_fs{"ext4", "squashfs", "vfat", "exfat", "f2fs",
"erofs", "virtiofs", "none"};
"erofs", "none"};
if (std::find(supported_fs.begin(), supported_fs.end(), rec->fs_type) == supported_fs.end()) {
LERROR << "unknown fs_type \"" << rec->fs_type << "\" for " << mount_point;
return false;