mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-20 14:10:51 +10:00
sys_patch_dict: Seperate 3802 patch set files
Ensure XPC service is not downgraded
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@
|
|||||||
- OpenCorePkg 0.8.3 release
|
- OpenCorePkg 0.8.3 release
|
||||||
- Lilu 1.6.2 - release
|
- Lilu 1.6.2 - release
|
||||||
- FeatureUnlock 1.0.9 release
|
- FeatureUnlock 1.0.9 release
|
||||||
- PatcherSupportPkg 0.6.1 - release
|
- PatcherSupportPkg 0.6.3 - release
|
||||||
- BrcmPatchRAM 2.6.3 - release
|
- BrcmPatchRAM 2.6.3 - release
|
||||||
- AutoPkgInstaller 1.0.1 - release
|
- AutoPkgInstaller 1.0.1 - release
|
||||||
|
|
||||||
|
|||||||
+11
-6
@@ -191,12 +191,11 @@ def SystemPatchDictionary(os_major, os_minor, non_metal_os_support):
|
|||||||
**({ "Metal.framework": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
**({ "Metal.framework": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
||||||
**({ "MetalPerformanceShaders.framework": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
**({ "MetalPerformanceShaders.framework": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
||||||
},
|
},
|
||||||
"/System/Library/Sandbox/Profiles": {
|
|
||||||
**({ "com.apple.mtlcompilerservice.sb": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
# Intel Ivy Bridge, Haswell and Nvidia Kepler are Metal 3802-based GPUs
|
||||||
|
# Due to this, we need to re-add 3802 compiler support to the Metal stack
|
||||||
"Metal 3802 Common": {
|
"Metal 3802 Common": {
|
||||||
"Display Name": "",
|
"Display Name": "",
|
||||||
"OS Support": {
|
"OS Support": {
|
||||||
@@ -210,10 +209,16 @@ def SystemPatchDictionary(os_major, os_minor, non_metal_os_support):
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
"Install": {
|
"Install": {
|
||||||
"/System/Library/PrivateFrameworks": {
|
"/System/Library/Frameworks": {
|
||||||
"MTLCompiler.framework": "12.5",
|
**({ "Metal.framework": "12.5-3802" } if os_major >= os_data.os_data.ventura else {}),
|
||||||
"GPUCompiler.framework": "12.5",
|
|
||||||
},
|
},
|
||||||
|
"/System/Library/PrivateFrameworks": {
|
||||||
|
"MTLCompiler.framework": "12.5-3802",
|
||||||
|
"GPUCompiler.framework": "12.5-3802",
|
||||||
|
},
|
||||||
|
"/System/Library/Sandbox/Profiles": {
|
||||||
|
**({ "com.apple.mtlcompilerservice.sb": "12.5-3802" } if os_major >= os_data.os_data.ventura else {}),
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ class Constants:
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
# Patcher Versioning
|
# Patcher Versioning
|
||||||
self.patcher_version = "0.5.0" # OpenCore-Legacy-Patcher
|
self.patcher_version = "0.5.0" # OpenCore-Legacy-Patcher
|
||||||
self.patcher_support_pkg_version = "0.6.1" # PatcherSupportPkg
|
self.patcher_support_pkg_version = "0.6.3" # PatcherSupportPkg
|
||||||
self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/"
|
self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/"
|
||||||
self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/"
|
self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/"
|
||||||
self.discord_link = "https://discord.gg/rqdPgH8xSN"
|
self.discord_link = "https://discord.gg/rqdPgH8xSN"
|
||||||
|
|||||||
Reference in New Issue
Block a user