mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-20 06:10:00 +10:00
sys_patch_dict: Remove old GVA work-around
This commit is contained in:
@@ -246,31 +246,6 @@ def SystemPatchDictionary(os_major, os_minor, non_metal_os_support):
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
# Resolve AppleGVACore crashing on MacBookPro11,3 due to mixed GPU combo
|
|
||||||
# ie. native Haswell iGPU + non-native Kepler dGPU
|
|
||||||
# This can be remove after 0.4.6 release, as 0.4.5 downgrades to 10.15.7
|
|
||||||
"GVA Work-Around": {
|
|
||||||
"Display Name": "",
|
|
||||||
"OS Support": {
|
|
||||||
"Minimum OS Support": {
|
|
||||||
"OS Major": os_data.os_data.monterey,
|
|
||||||
"OS Minor": 0
|
|
||||||
},
|
|
||||||
"Maximum OS Support": {
|
|
||||||
"OS Major": os_data.os_data.monterey,
|
|
||||||
"OS Minor": 99
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"Remove": {
|
|
||||||
"/System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A": [
|
|
||||||
"AppleGVA",
|
|
||||||
],
|
|
||||||
"/System/Library/PrivateFrameworks/AppleGVACore.framework/Versions/A": [
|
|
||||||
"AppleGVACore",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
# For GPUs last natively supported in Catalina/Big Sur
|
# For GPUs last natively supported in Catalina/Big Sur
|
||||||
# Restores DRM support
|
# Restores DRM support
|
||||||
"Catalina GVA": {
|
"Catalina GVA": {
|
||||||
|
|||||||
@@ -494,7 +494,6 @@ class detect_root_patch:
|
|||||||
if gpu.arch == device_probe.Intel.Archs.Haswell:
|
if gpu.arch == device_probe.Intel.Archs.Haswell:
|
||||||
if "Catalina GVA" in required_patches:
|
if "Catalina GVA" in required_patches:
|
||||||
del(required_patches["Catalina GVA"])
|
del(required_patches["Catalina GVA"])
|
||||||
required_patches.update({"GVA Work-Around": all_hardware_patchset["Graphics"]["GVA Work-Around"]})
|
|
||||||
break
|
break
|
||||||
if hardware_details["Graphics: AMD TeraScale 1"] is True:
|
if hardware_details["Graphics: AMD TeraScale 1"] is True:
|
||||||
required_patches.update({"Non-Metal Common": all_hardware_patchset["Graphics"]["Non-Metal Common"]})
|
required_patches.update({"Non-Metal Common": all_hardware_patchset["Graphics"]["Non-Metal Common"]})
|
||||||
|
|||||||
Reference in New Issue
Block a user