Skip to content

Commit 26c01b9

Browse files
author
Eduardo Covas
authored
Prevent AMDMTLBronzeDriver unrecognized selector errors
1 parent bbc8902 commit 26c01b9

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
- Resolve 14.4 loginwindow crashes
88
- Patch SkipLogo on Macs that natively support Monterey or newer
99
- Resolves missing Apple logo on boot screen
10+
- Prevent AMDMTLBronzeDriver unrecognized selector errors
1011
- Increment Binaries:
1112
- OpenCorePkg 0.9.9 - release
13+
- PatcherSupportPkg 1.5.0 - release
1214

1315
## 1.4.2
1416
- Resolve Auto-Join support for Modern Wireless on macOS 14.4

data/sys_patch_dict.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ def _generate_sys_patch_dict(self):
860860
"AMDRadeonVADriver.bundle": "12.5",
861861
"AMDRadeonVADriver2.bundle": "12.5",
862862
"AMDRadeonX4000GLDriver.bundle": "12.5",
863-
"AMDMTLBronzeDriver.bundle": "12.5",
863+
"AMDMTLBronzeDriver.bundle": "12.5" if self.os_major < os_data.os_data.sonoma else "12.5-23",
864864
"AMDShared.bundle": "12.5",
865865
},
866866
},
@@ -920,7 +920,7 @@ def _generate_sys_patch_dict(self):
920920

921921
"AMDRadeonVADriver2.bundle": "12.5",
922922
"AMDRadeonX4000GLDriver.bundle": "12.5",
923-
"AMDMTLBronzeDriver.bundle": "12.5",
923+
"AMDMTLBronzeDriver.bundle": "12.5" if self.os_major < os_data.os_data.sonoma else "12.5-23",
924924
"AMDShared.bundle": "12.5",
925925
},
926926
},

resources/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Constants:
1414
def __init__(self) -> None:
1515
# Patcher Versioning
1616
self.patcher_version: str = "1.4.3" # OpenCore-Legacy-Patcher
17-
self.patcher_support_pkg_version: str = "1.4.9" # PatcherSupportPkg
17+
self.patcher_support_pkg_version: str = "1.5.0" # PatcherSupportPkg
1818
self.copyright_date: str = "Copyright © 2020-2024 Dortania"
1919
self.patcher_name: str = "OpenCore Legacy Patcher"
2020

0 commit comments

Comments
 (0)