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