Remove bitrotted X68000 host bridge device

The X68000 host bridge and associated host file system module
has not been functional for many years, as reported by multiple users

Removing the code will reduce complexity for users -
the SCBR device has caused some misunderstandings in the past -
while eliminating code that has been flagged as insecure by SonarQube
This commit is contained in:
Daniel Markstedt
2025-11-08 23:30:22 +01:00
parent 18bb9548a7
commit b7e7c4e529
25 changed files with 17 additions and 6243 deletions
-3
View File
@@ -110,8 +110,6 @@ TEST(ProtobufUtil, ListDevices)
PbDevice device;
device.set_type(SCHD);
devices.push_back(device);
device.set_type(SCBR);
devices.push_back(device);
device.set_type(SCDP);
devices.push_back(device);
device.set_type(SCHS);
@@ -120,7 +118,6 @@ TEST(ProtobufUtil, ListDevices)
devices.push_back(device);
const string device_list = ListDevices(devices);
EXPECT_FALSE(device_list.empty());
EXPECT_NE(string::npos, device_list.find("X68000 HOST BRIDGE"));
EXPECT_NE(string::npos, device_list.find("DaynaPort SCSI/Link"));
EXPECT_NE(string::npos, device_list.find("Host Services"));
EXPECT_NE(string::npos, device_list.find("SCSI Printer"));