From 78e10dfc1ba5e3474f2e51404c81e4c3a9dd6c1e Mon Sep 17 00:00:00 2001 From: Yumi Yukimura Date: Sat, 23 Nov 2024 15:27:21 +0800 Subject: [PATCH] Revert "fs_mgr: Add virtiofs to supported fs list" This reverts commit 79f7132bc31b7703013a57cf8c9dd9927542e7f7. Change-Id: Id0e419bb2c74b048d58d24b3cdfb8bf3c5f03947 --- fs_mgr/fs_mgr_roots.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs_mgr/fs_mgr_roots.cpp b/fs_mgr/fs_mgr_roots.cpp index 81871b4d4..918e243de 100644 --- a/fs_mgr/fs_mgr_roots.cpp +++ b/fs_mgr/fs_mgr_roots.cpp @@ -116,7 +116,7 @@ bool TryPathMount(FstabEntry* rec, const std::string& mount_pt) { } static const std::vector 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;