|
|
@ -115,6 +115,9 @@ unsigned int reverse_bits(register unsigned int x)
|
|
|
|
return((x >> 16) | (x << 16));
|
|
|
|
return((x >> 16) | (x << 16));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Helper function implemented in tdestoragedevice.cpp
|
|
|
|
|
|
|
|
TQString decodeHexEncoding(TQString str);
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(WITH_TDEHWLIB_DAEMONS) || defined(WITH_UDISKS) || defined(WITH_UDISKS2) || defined(WITH_NETWORK_MANAGER_BACKEND)
|
|
|
|
#if defined(WITH_TDEHWLIB_DAEMONS) || defined(WITH_UDISKS) || defined(WITH_UDISKS2) || defined(WITH_NETWORK_MANAGER_BACKEND)
|
|
|
|
#include <tqdbusvariant.h>
|
|
|
|
#include <tqdbusvariant.h>
|
|
|
|
#include <tqdbusdata.h>
|
|
|
|
#include <tqdbusdata.h>
|
|
|
@ -2516,7 +2519,10 @@ void TDEHardwareDevices::updateExistingDeviceInformation(TDEGenericDevice* exist
|
|
|
|
TQString devicebus(udev_device_get_property_value(dev, "ID_BUS"));
|
|
|
|
TQString devicebus(udev_device_get_property_value(dev, "ID_BUS"));
|
|
|
|
|
|
|
|
|
|
|
|
// Get disk specific info
|
|
|
|
// Get disk specific info
|
|
|
|
TQString disklabel(TQString::fromLocal8Bit(udev_device_get_property_value(dev, "ID_FS_LABEL")));
|
|
|
|
TQString disklabel(decodeHexEncoding(TQString::fromLocal8Bit(udev_device_get_property_value(dev, "ID_FS_LABEL_ENC"))));
|
|
|
|
|
|
|
|
if (disklabel == "") {
|
|
|
|
|
|
|
|
disklabel = TQString::fromLocal8Bit(udev_device_get_property_value(dev, "ID_FS_LABEL"));
|
|
|
|
|
|
|
|
}
|
|
|
|
TQString diskuuid(udev_device_get_property_value(dev, "ID_FS_UUID"));
|
|
|
|
TQString diskuuid(udev_device_get_property_value(dev, "ID_FS_UUID"));
|
|
|
|
TQString filesystemtype(udev_device_get_property_value(dev, "ID_FS_TYPE"));
|
|
|
|
TQString filesystemtype(udev_device_get_property_value(dev, "ID_FS_TYPE"));
|
|
|
|
TQString filesystemusage(udev_device_get_property_value(dev, "ID_FS_USAGE"));
|
|
|
|
TQString filesystemusage(udev_device_get_property_value(dev, "ID_FS_USAGE"));
|
|
|
|