Enable USB 3 support on USB 1.1 machines

This commit is contained in:
Jazzzny
2023-04-18 16:39:27 -04:00
parent e4d0e471d9
commit af0663317b
2 changed files with 6 additions and 5 deletions

View File

@@ -477,11 +477,10 @@ class DetectRootPatch:
if self.constants.detected_os < os_data.os_data.ventura:
return False
for controller in self.constants.computer.usb_controllers:
if (isinstance(controller, device_probe.XHCIController)):
# Currently USB 1.1 patches are incompatible with USB 3.0 controllers
# TODO: Downgrade remaining USB stack to ensure full support
return False
# Former USB 1.1 Patches used to be incompatible with XHCI controllers
#for controller in self.constants.computer.usb_controllers:
#if (isinstance(controller, device_probe.XHCIController)):
#return False
# If we're on a hackintosh, check for UHCI/OHCI controllers
if self.constants.host_is_hackintosh is True: