Read ensureSuspendToDisk from partition.conf.

This commit is contained in:
Teo Mrnjavac 2015-06-26 15:48:12 +02:00
parent 92736c3486
commit 35f4db9316
2 changed files with 11 additions and 0 deletions

View File

@ -435,6 +435,16 @@ PartitionViewStep::setConfigurationMap( const QVariantMap& configurationMap )
{
gs->insert( "efiSystemPartition", QStringLiteral( "/boot/efi" ) );
}
if ( configurationMap.contains( "ensureSuspendToDisk" ) &&
configurationMap.value( "ensureSuspendToDisk" ).type() == QVariant::Bool )
{
gs->insert( "ensureSuspendToDisk", configurationMap.value( "ensureSuspendToDisk" ).toBool() );
}
else
{
gs->insert( "ensureSuspendToDisk", true );
}
}

View File

@ -2,3 +2,4 @@
# distributions (Fedora, Debian, Manjaro, etc.) use /boot/efi, others (KaOS,
# etc.) use just /boot.
efiSystemPartition: "/boot/efi"
ensureSuspendToDisk: true #make sure an autogenerated swap partition is big enough for hibernation