mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
Rename the Host Bridge INQUIRY product to RASCSI BRIDGE, as expected by the RASETHER.SYS driver.
This commit is contained in:
parent
e7775a72cc
commit
1938a8b45f
@ -202,7 +202,7 @@ PrimaryDevice *DeviceFactory::CreateDevice(PbDeviceType type, const string& file
|
||||
|
||||
case SCBR:
|
||||
device = make_unique<SCSIBR>();
|
||||
device->SetProduct("SCSI HOST BRIDGE");
|
||||
device->SetProduct("RASCSI BRIDGE");
|
||||
device->SupportsParams(true);
|
||||
device->SetDefaultParams(default_params[SCBR]);
|
||||
break;
|
||||
|
@ -235,7 +235,7 @@ TEST(DeviceFactoryTest, SCBR_Device_Defaults)
|
||||
EXPECT_FALSE(device->IsStopped());
|
||||
|
||||
EXPECT_EQ("RaSCSI", device->GetVendor());
|
||||
EXPECT_EQ("SCSI HOST BRIDGE", device->GetProduct());
|
||||
EXPECT_EQ("RASCSI BRIDGE", device->GetProduct());
|
||||
EXPECT_EQ(string(rascsi_get_version_string()).substr(0, 2) + string(rascsi_get_version_string()).substr(3, 2),
|
||||
device->GetRevision());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user