mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 02:45:44 -05:00
[partition] Ignoring LVM devices in PartUtils::getDevices to prevent installing bootloader in LVM VG.
This commit is contained in:
parent
a4bc98742a
commit
8726b70574
1 changed files with 5 additions and 0 deletions
|
@ -152,6 +152,11 @@ QList< Device* > getDevices( DeviceType which, qint64 minimumSize )
|
|||
cDebug() << " .. Removing too-small" << it;
|
||||
it = erase(devices, it );
|
||||
}
|
||||
else if ( (*it)->type() == Device::LVM_Device )
|
||||
{
|
||||
cDebug() << " .. Removing LVM device from list " << it;
|
||||
it = erase(devices, it );
|
||||
}
|
||||
else
|
||||
++it;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue