add powerview as scsi device

This commit is contained in:
RaSCSI User 2022-01-04 21:24:57 +00:00
parent 610238659d
commit f61d2d5ab5
2 changed files with 5 additions and 0 deletions

View File

@ -74,6 +74,7 @@ void RascsiResponse::GetAllDeviceTypeProperties(PbDeviceTypesInfo& device_types_
GetDeviceTypeProperties(device_types_info, SCCD);
GetDeviceTypeProperties(device_types_info, SCBR);
GetDeviceTypeProperties(device_types_info, SCDP);
GetDeviceTypeProperties(device_types_info, SCPV);
}
void RascsiResponse::GetDevice(const Device *device, PbDevice *pb_device)

View File

@ -58,6 +58,10 @@ string ras_util::ListDevices(const list<PbDevice>& pb_devices)
case SCDP:
filename = "DaynaPort SCSI/Link";
break;
case SCPV:
filename = "Radius PowerView";
break;
default:
filename = device.file().name();