mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-28 09:55:37 -04:00
[partition] Log when an EFI problem has been solved
This commit is contained in:
parent
0f38ee624e
commit
2c297a068f
1 changed files with 7 additions and 0 deletions
|
@ -716,6 +716,8 @@ PartitionCoreModule::updateIsDirty()
|
|||
void
|
||||
PartitionCoreModule::scanForEfiSystemPartitions()
|
||||
{
|
||||
const bool wasEmpty = m_efiSystemPartitions.isEmpty();
|
||||
|
||||
m_efiSystemPartitions.clear();
|
||||
|
||||
QList< Device* > devices;
|
||||
|
@ -732,6 +734,11 @@ PartitionCoreModule::scanForEfiSystemPartitions()
|
|||
{
|
||||
cWarning() << "system is EFI but no EFI system partitions found.";
|
||||
}
|
||||
else if ( wasEmpty )
|
||||
{
|
||||
// But it isn't empty anymore, so whatever problem has been solved
|
||||
cDebug() << "system is EFI and new EFI system partition has been found.";
|
||||
}
|
||||
|
||||
m_efiSystemPartitions = efiSystemPartitions;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue