From c21af7d3e0b25308867a4c3beb492d15b52691a2 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Thu, 21 Nov 2024 00:13:50 +0000 Subject: [PATCH] [*] Split GnomeFS into the fuse category --- Source/IO/FS/FSPlatformDevices.Linux.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Source/IO/FS/FSPlatformDevices.Linux.cpp b/Source/IO/FS/FSPlatformDevices.Linux.cpp index 24a59279..23974649 100644 --- a/Source/IO/FS/FSPlatformDevices.Linux.cpp +++ b/Source/IO/FS/FSPlatformDevices.Linux.cpp @@ -1130,8 +1130,7 @@ namespace Aurora::IO::FS linuxName == "configfs" || linuxName == "securityfs" || linuxName == "efivarfs" || - linuxName == "binfmt_misc" || - linuxName == "gvfsd-fuse") + linuxName == "binfmt_misc") { device.devicePath = kMagicDeviceCFG; device.type = EFSDeviceType::eDeviceKernelConfig; @@ -1151,6 +1150,11 @@ namespace Aurora::IO::FS device.devicePath = kMagicDeviceSystem; device.type = EFSDeviceType::eDeviceVirtualFileSystem; } + else if (linuxName == "gvfsd-fuse") + { + device.devicePath = kMagicDeviceVFS; + device.type = EFSDeviceType::eDeviceVirtualFileSystem; + } else { device.devicePath = linuxName;