@ -204,7 +204,8 @@ doAutopartition( PartitionCoreModule* core, Device* dev, const QString& luksPass
PartitionRole ( PartitionRole : : Primary ) ,
FileSystem : : typeForName ( defaultFsType ) ,
firstFreeSector ,
lastSectorForRoot
lastSectorForRoot ,
PartitionTable : : FlagNone
) ;
}
else
@ -216,7 +217,8 @@ doAutopartition( PartitionCoreModule* core, Device* dev, const QString& luksPass
FileSystem : : typeForName ( defaultFsType ) ,
firstFreeSector ,
lastSectorForRoot ,
luksPassphrase
luksPassphrase ,
PartitionTable : : FlagNone
) ;
}
PartitionInfo : : setFormat ( rootPartition , true ) ;
@ -234,7 +236,8 @@ doAutopartition( PartitionCoreModule* core, Device* dev, const QString& luksPass
PartitionRole ( PartitionRole : : Primary ) ,
FileSystem : : LinuxSwap ,
lastSectorForRoot + 1 ,
dev - > totalLogical ( ) - 1
dev - > totalLogical ( ) - 1 ,
PartitionTable : : FlagNone
) ;
}
else
@ -246,7 +249,8 @@ doAutopartition( PartitionCoreModule* core, Device* dev, const QString& luksPass
FileSystem : : LinuxSwap ,
lastSectorForRoot + 1 ,
dev - > totalLogical ( ) - 1 ,
luksPassphrase
luksPassphrase ,
PartitionTable : : FlagNone
) ;
}
PartitionInfo : : setFormat ( swapPartition , true ) ;
@ -296,7 +300,8 @@ doReplacePartition( PartitionCoreModule* core,
newRoles ,
FileSystem : : typeForName ( defaultFsType ) ,
partition - > firstSector ( ) ,
partition - > lastSector ( )
partition - > lastSector ( ) ,
PartitionTable : : FlagNone
) ;
}
else
@ -308,7 +313,8 @@ doReplacePartition( PartitionCoreModule* core,
FileSystem : : typeForName ( defaultFsType ) ,
partition - > firstSector ( ) ,
partition - > lastSector ( ) ,
luksPassphrase
luksPassphrase ,
PartitionTable : : FlagNone
) ;
}
PartitionInfo : : setMountPoint ( newPartition , " / " ) ;