Fix UEFI output on MacPro3,1 with PC GPUs

This commit is contained in:
Mykola Grymalyuk
2021-05-23 11:31:56 -06:00
parent d1dd8a0e2e
commit 98bc71e46a
7 changed files with 18 additions and 7 deletions

View File

@@ -499,7 +499,7 @@ class BuildOpenCore:
# Add UGA to GOP layer
if self.model in ModelArray.UGAtoGOP:
print("- Adding UGA to GOP Patch")
self.config["UEFI"]["Output"]["GopPassThrough"] = True
self.config["UEFI"]["Output"]["GopPassThrough"] = "Apple"
# ThirdPartDrives Check
if self.model not in ModelArray.NoSATAPatch:

View File

@@ -10,8 +10,8 @@ from pathlib import Path
class Constants:
def __init__(self):
self.patcher_version = "0.1.6"
self.opencore_commit = "65cc81b - 05-03-2021"
self.opencore_version = "0.6.9"
self.opencore_commit = "4e0ff2d - 05-23-2021"
self.opencore_version = "0.7.0"
self.lilu_version = "1.5.3"
self.whatevergreen_version = "1.4.9"
self.airportbcrmfixup_version = "2.1.2"
@@ -127,11 +127,11 @@ class Constants:
def opencore_zip_source(self): return self.payload_path / Path(f"OpenCore/OpenCore-{self.opencore_build}.zip")
@property
def plist_template(self): return self.payload_path / Path(f"Config/config.plist")
# Mount Location
@property
def payload_mnt1_path(self): return self.payload_path / Path("mnt1")
# ACPI
@property
def pci_ssdt_path(self): return self.payload_path / Path("ACPI/SSDT-CPBG.aml")