[*] 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 == "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;