[*] Split GnomeFS into the fuse category
This commit is contained in:
parent
08a3574fca
commit
c21af7d3e0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user