mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-14 04:38:20 +10:00
gui_main.py: Fix smbios_data parsing
This commit is contained in:
@@ -11,6 +11,8 @@
|
||||
- Restores USB 3.0 expansion card support on USB 1.1 machines such as MacPro5,1
|
||||
- Resolve OpenCL rendering on Nvidia Web Drivers
|
||||
- thanks [@jazzzny](https://github.com/Jazzzny)
|
||||
- Resolve UI unable to download macOS installers on unknown models
|
||||
- ex. M2 Macs and Hackintoshes
|
||||
- Increment Binaries:
|
||||
- PatcherSupportPkg 0.9.6 - release
|
||||
- Build Server Changes:
|
||||
|
||||
@@ -1782,7 +1782,7 @@ class wx_python_gui:
|
||||
if model in ["MacPro3,1", "MacPro4,1", "MacPro5,1"]:
|
||||
has_legacy_usb = True
|
||||
issues_list = "- Lack of Keyboard/Mouse in macOS installer without a USB hub\n"
|
||||
elif model in smbios_data.smbios_dictionary[model]:
|
||||
elif model in smbios_data.smbios_dictionary:
|
||||
if "CPU Generation" in smbios_data.smbios_dictionary[model]:
|
||||
if smbios_data.smbios_dictionary[model]["CPU Generation"] <= cpu_data.cpu_data.penryn:
|
||||
has_legacy_usb = True
|
||||
|
||||
Reference in New Issue
Block a user