mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-25 20:33:35 +00:00
Permit LUNs > 0 for SCDP and SCBR (#641)
This commit is contained in:
parent
ed46262cca
commit
cb2553a9eb
@ -188,7 +188,7 @@ Device *DeviceFactory::CreateDevice(PbDeviceType type, const string& filename)
|
||||
|
||||
case SCBR:
|
||||
device = new SCSIBR();
|
||||
device->SetSupportedLuns(1);
|
||||
device->SetSupportedLuns(32);
|
||||
device->SetProduct("SCSI HOST BRIDGE");
|
||||
device->SupportsParams(true);
|
||||
device->SetDefaultParams(default_params[SCBR]);
|
||||
@ -196,7 +196,7 @@ Device *DeviceFactory::CreateDevice(PbDeviceType type, const string& filename)
|
||||
|
||||
case SCDP:
|
||||
device = new SCSIDaynaPort();
|
||||
device->SetSupportedLuns(1);
|
||||
device->SetSupportedLuns(32);
|
||||
// Since this is an emulation for a specific device the full INQUIRY data have to be set accordingly
|
||||
device->SetVendor("Dayna");
|
||||
device->SetProduct("SCSI/Link");
|
||||
|
Loading…
Reference in New Issue
Block a user