Skip to content

Commit

Permalink
Ignore efivarfs in disk analyzer
Browse files Browse the repository at this point in the history
Added 'efivarfs' to the device ignore list.
Tested on openSUSE Tumbleweed.

Fixes: #173

Best regards :)
  • Loading branch information
Nati0ns committed Apr 12, 2024
1 parent da9b04b commit beceb5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/linux/linux_filesystem.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ abstract class LinuxFilesystem {
"tmpfs",
"/dev/loop",
"revokefs-fuse",
"cgroup"
"cgroup",
"efivarfs"
];

static final List<String> _removableDevices = ["/media/", "/mnt/"];
Expand Down

0 comments on commit beceb5d

Please sign in to comment.