Probe partitions to get filesystem type

This fixes problems with LUKS partitions not being detected
pull/1/head
Timothy Pearson 8 years ago
parent b18bff9ad8
commit 30c008d551

@ -2616,14 +2616,12 @@ void TDEHardwareDevices::updateExistingDeviceInformation(TDEGenericDevice* exist
parentsyspath.truncate(parentsyspath.findRev("/"));
parentdisk = static_cast<TDEStorageDevice*>(findBySystemPath(parentsyspath));
}
disktype = classifyDiskType(dev, devicenode, devicebus, devicetypestring, systempath, devicevendor, devicemodel, filesystemtype, devicedriver);
if (parentdisk) {
// Set partition disk type and status based on the parent device
disktype = parentdisk->diskType();
disktype = disktype | parentdisk->diskType();
diskstatus = diskstatus | parentdisk->diskStatus();
}
else {
disktype = classifyDiskType(dev, devicenode, devicebus, devicetypestring, systempath, devicevendor, devicemodel, filesystemtype, devicedriver);
}
sdevice->internalSetDiskType(disktype);
device = classifyUnknownDeviceByExternalRules(dev, device, true); // Check external rules for possible subtype overrides
disktype = sdevice->diskType(); // The type can be overridden by an external rule

Loading…
Cancel
Save