diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cebdb4fe..e921ad86c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ ## 0.1.6 - Add XHCI UEFI Driver for 3rd Party USB 3.0 Controllers - Allows for Boot Support from OpenCore' Picker +- Fix UEFI output on MacPro3,1 with PC GPUs +- Increment binaries: + - OpenCore 4e0ff2d (0.7.0 rolling - 05-23-2021) ## 0.1.5 - Fix crashing when Wireless module not present diff --git a/Resources/Build.py b/Resources/Build.py index d68a4a25c..b9c86b6e4 100644 --- a/Resources/Build.py +++ b/Resources/Build.py @@ -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: diff --git a/Resources/Constants.py b/Resources/Constants.py index 255a9897c..e5348ab29 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -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") diff --git a/payloads/Config/config.plist b/payloads/Config/config.plist index 086015a7a..268d343df 100644 --- a/payloads/Config/config.plist +++ b/payloads/Config/config.plist @@ -975,6 +975,8 @@ PowerTimeoutKernelPanic + ProvideCurrentCpuInfo + SetApfsTrimTimeout -1 ThirdPartyDrives @@ -1015,7 +1017,7 @@ PickerMode External PickerVariant - Modern + Acidanthera\GoldenGate PollAppleHotKeys ShowPicker @@ -1090,6 +1092,8 @@ BootKicker.efi Enabled + Flavour + Auto Path BootKicker.efi RealPath @@ -1106,6 +1110,8 @@ OpenShell.efi Comment OpenShell.efi + Flavour + OpenShell:UEFIShell:Shell Enabled Path @@ -1642,7 +1648,7 @@ ForceResolution GopPassThrough - + Disabled IgnoreTextInGraphics ProvideConsoleGop @@ -1668,6 +1674,8 @@ AppleDebugLog + AppleEg2Info + AppleFramebufferInfo AppleImageConversion diff --git a/payloads/Icon/Resources.zip b/payloads/Icon/Resources.zip index ab2200d5f..5c09ddccd 100644 Binary files a/payloads/Icon/Resources.zip and b/payloads/Icon/Resources.zip differ diff --git a/payloads/OpenCore/OpenCore-DEBUG.zip b/payloads/OpenCore/OpenCore-DEBUG.zip index 36bcd2fff..413e0f070 100644 Binary files a/payloads/OpenCore/OpenCore-DEBUG.zip and b/payloads/OpenCore/OpenCore-DEBUG.zip differ diff --git a/payloads/OpenCore/OpenCore-RELEASE.zip b/payloads/OpenCore/OpenCore-RELEASE.zip index 4ac872f14..09301368d 100644 Binary files a/payloads/OpenCore/OpenCore-RELEASE.zip and b/payloads/OpenCore/OpenCore-RELEASE.zip differ