mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-01 11:25:36 -04:00
[partition] Add support for filesystem-specific features
This commit is contained in:
parent
2eb84e2de1
commit
15cce29a51
7 changed files with 36 additions and 2 deletions
|
@ -31,6 +31,7 @@
|
|||
// Qt
|
||||
#include <QList>
|
||||
#include <QObject>
|
||||
#include <QVariantMap>
|
||||
|
||||
class Partition;
|
||||
|
||||
|
@ -42,6 +43,7 @@ public:
|
|||
QString partLabel;
|
||||
QString partMountPoint;
|
||||
FileSystem::Type partFileSystem = FileSystem::Unknown;
|
||||
QVariantMap partFeatures;
|
||||
CalamaresUtils::Partition::PartitionSize partSize;
|
||||
CalamaresUtils::Partition::PartitionSize partMinSize;
|
||||
CalamaresUtils::Partition::PartitionSize partMaxSize;
|
||||
|
@ -75,6 +77,7 @@ public:
|
|||
bool addEntry( const QString& label,
|
||||
const QString& mountPoint,
|
||||
const QString& fs,
|
||||
const QVariantMap& features,
|
||||
const QString& size,
|
||||
const QString& min = QString(),
|
||||
const QString& max = QString() );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue