sys_patch: Add missing Xserve3,1 handling

This commit is contained in:
Mykola Grymalyuk
2023-09-26 10:24:41 -06:00
parent 8c25110568
commit fc65423ee2
2 changed files with 4 additions and 4 deletions

View File

@@ -516,11 +516,11 @@ class DetectRootPatch:
return False
# If we're on a Mac, check for Penryn or older
# This is due to Apple implementing an internal USB hub on post-Penryn (excluding MacPro4,1 and MacPro5,1)
# This is due to Apple implementing an internal USB hub on post-Penryn (excluding MacPro4,1, MacPro5,1 and Xserve3,1)
# Ref: https://techcommunity.microsoft.com/t5/microsoft-usb-blog/reasons-to-avoid-companion-controllers/ba-p/270710
if (
smbios_data.smbios_dictionary[self.model]["CPU Generation"] <= cpu_data.CPUGen.penryn.value or \
self.model in ["MacPro4,1", "MacPro5,1"]
self.model in ["MacPro4,1", "MacPro5,1", "Xserve3,1"]
):
return True