Fix btrfs support.

This commit is contained in:
Andrius Štikonas 2016-07-27 20:33:07 +01:00
parent e18dc61196
commit a8b35c56a3
1 changed files with 1 additions and 0 deletions

View File

@ -382,6 +382,7 @@ FileSystem::Type LibPartedBackend::detectFileSystem(const QString& deviceNode)
else if (s == QStringLiteral("ufs")) rval = FileSystem::Ufs;
else if (s == QStringLiteral("fat16")) rval = FileSystem::Fat16;
else if (s == QStringLiteral("fat32")) rval = FileSystem::Fat32;
else if (s == QStringLiteral("btrfs")) rval = FileSystem::Btrfs;
else if (s == QStringLiteral("ocfs2")) rval = FileSystem::Ocfs2;
else if (s == QStringLiteral("zfs_member")) rval = FileSystem::Zfs;
else if (s == QStringLiteral("hpfs")) rval = FileSystem::Hpfs;