diff --git a/userspace/ksud/src/mount.rs b/userspace/ksud/src/mount.rs index 1b78edc3..2ef13bf2 100644 --- a/userspace/ksud/src/mount.rs +++ b/userspace/ksud/src/mount.rs @@ -278,7 +278,7 @@ impl StockMount { let mounts = self .mountlist .destination_starts_with(std::path::Path::new(&self.mnt)) - .filter(|m| m.fstype != "overlay"); + .filter(|m| m.fstype != "overlay" && m.fstype != "rootfs"); mounts.collect() }