find nvme with lsblk
This commit is contained in:
@ -305,7 +305,7 @@ void reHDD::searchDrives(list <Drive>* plistDrives)
|
||||
char * cLine = NULL;
|
||||
size_t len = 0;
|
||||
|
||||
FILE* outputfileHwinfo = popen("lsblk -I 8 -d -o NAME", "r");
|
||||
FILE* outputfileHwinfo = popen("lsblk -e 11 -d -o NAME", "r");
|
||||
|
||||
if (outputfileHwinfo == NULL)
|
||||
{
|
||||
@ -321,7 +321,16 @@ void reHDD::searchDrives(list <Drive>* plistDrives)
|
||||
tmpDrive->state = Drive::NONE;
|
||||
tmpDrive->bIsOffline = false;
|
||||
plistDrives->push_back(*tmpDrive);
|
||||
//Logger::logThis()->info("drive found: " + tmpDrive->getPath());
|
||||
//Logger::logThis()->info("SATA drive found: " + tmpDrive->getPath());
|
||||
}
|
||||
|
||||
if (string(cLine).length() == 8)
|
||||
{
|
||||
Drive* tmpDrive = new Drive("/dev/" + string(cLine).substr(0, 7));
|
||||
tmpDrive->state = Drive::NONE;
|
||||
tmpDrive->bIsOffline = false;
|
||||
plistDrives->push_back(*tmpDrive);
|
||||
//Logger::logThis()->info("NVME drive found: " + tmpDrive->getPath());
|
||||
}
|
||||
}
|
||||
pclose(outputfileHwinfo);
|
||||
|
Reference in New Issue
Block a user