[*] Split GnomeFS into the fuse category

This commit is contained in:
Reece Wilson 2024-11-21 00:13:50 +00:00
parent 08a3574fca
commit c21af7d3e0

View File

@ -1130,8 +1130,7 @@ namespace Aurora::IO::FS
linuxName == "configfs" || linuxName == "configfs" ||
linuxName == "securityfs" || linuxName == "securityfs" ||
linuxName == "efivarfs" || linuxName == "efivarfs" ||
linuxName == "binfmt_misc" || linuxName == "binfmt_misc")
linuxName == "gvfsd-fuse")
{ {
device.devicePath = kMagicDeviceCFG; device.devicePath = kMagicDeviceCFG;
device.type = EFSDeviceType::eDeviceKernelConfig; device.type = EFSDeviceType::eDeviceKernelConfig;
@ -1151,6 +1150,11 @@ namespace Aurora::IO::FS
device.devicePath = kMagicDeviceSystem; device.devicePath = kMagicDeviceSystem;
device.type = EFSDeviceType::eDeviceVirtualFileSystem; device.type = EFSDeviceType::eDeviceVirtualFileSystem;
} }
else if (linuxName == "gvfsd-fuse")
{
device.devicePath = kMagicDeviceVFS;
device.type = EFSDeviceType::eDeviceVirtualFileSystem;
}
else else
{ {
device.devicePath = linuxName; device.devicePath = linuxName;