Skip to content

Commit

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

Fixes: #173
  • Loading branch information
Nati0ns authored Apr 14, 2024
1 parent da9b04b commit 88e8a70
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 88e8a70

Please sign in to comment.