mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-23 11:30:15 +10:00
Increment Binaries
This commit is contained in:
@@ -8,7 +8,8 @@
|
|||||||
- Resolve Monterey Bluetooth issues on user-upgraded BCM94331 BT4.0 modules
|
- Resolve Monterey Bluetooth issues on user-upgraded BCM94331 BT4.0 modules
|
||||||
- Fix iGPU-only iMac14,x display output when using Minimal/Moderate spoof
|
- Fix iGPU-only iMac14,x display output when using Minimal/Moderate spoof
|
||||||
- Increment Binaries:
|
- Increment Binaries:
|
||||||
- OpenCore 0.7.5 - release
|
- OpenCore 0.7.6 - release
|
||||||
|
- Lilu 1.5.8 - release
|
||||||
- BrcmPatchRAM 2.6.1 - release
|
- BrcmPatchRAM 2.6.1 - release
|
||||||
- WhateverGreen 1.5.5 - release
|
- WhateverGreen 1.5.5 - release
|
||||||
- PatcherSupportPkg 0.2.8 - release
|
- PatcherSupportPkg 0.2.8 - release
|
||||||
@@ -31,6 +32,7 @@
|
|||||||
- Add Legacy GCN build support off model for MXM iMacs
|
- Add Legacy GCN build support off model for MXM iMacs
|
||||||
- Resolve 5k Display Output support on 5k iMacs and iMac Pro
|
- Resolve 5k Display Output support on 5k iMacs and iMac Pro
|
||||||
- Resolve NVMe Patching on 2016-2017 MacBook Pros
|
- Resolve NVMe Patching on 2016-2017 MacBook Pros
|
||||||
|
- Enable Windows VMX support for Haswell and Broadwell MacBooks
|
||||||
|
|
||||||
## 0.3.1
|
## 0.3.1
|
||||||
- Increment Binaries:
|
- Increment Binaries:
|
||||||
|
|||||||
@@ -1982,6 +1982,8 @@
|
|||||||
<false/>
|
<false/>
|
||||||
<key>ProvideConsoleGop</key>
|
<key>ProvideConsoleGop</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>ReconnectGraphicsOnConnect</key>
|
||||||
|
<false/>
|
||||||
<key>ReconnectOnResChange</key>
|
<key>ReconnectOnResChange</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>ReplaceTabWithSpace</key>
|
<key>ReplaceTabWithSpace</key>
|
||||||
@@ -1990,6 +1992,8 @@
|
|||||||
<string>Max</string>
|
<string>Max</string>
|
||||||
<key>SanitiseClearScreen</key>
|
<key>SanitiseClearScreen</key>
|
||||||
<false/>
|
<false/>
|
||||||
|
<key>UIScale</key>
|
||||||
|
<integer>-1</integer>
|
||||||
<key>TextRenderer</key>
|
<key>TextRenderer</key>
|
||||||
<string>BuiltinGraphics</string>
|
<string>BuiltinGraphics</string>
|
||||||
<key>UgaPassThrough</key>
|
<key>UgaPassThrough</key>
|
||||||
@@ -2040,6 +2044,8 @@
|
|||||||
<false/>
|
<false/>
|
||||||
<key>EnableVectorAcceleration</key>
|
<key>EnableVectorAcceleration</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>EnableVmx</key>
|
||||||
|
<false/>
|
||||||
<key>DisableSecurityPolicy</key>
|
<key>DisableSecurityPolicy</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>ExitBootServicesDelay</key>
|
<key>ExitBootServicesDelay</key>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.8-DEBUG.zip
Normal file
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.8-DEBUG.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.8-RELEASE.zip
Normal file
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.8-RELEASE.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
payloads/Tools/ocvalidate-0.7.6
Executable file
BIN
payloads/Tools/ocvalidate-0.7.6
Executable file
Binary file not shown.
@@ -862,6 +862,17 @@ class BuildOpenCore:
|
|||||||
self.config["Booter"]["Quirks"]["SignalAppleOS"] = True
|
self.config["Booter"]["Quirks"]["SignalAppleOS"] = True
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
|
if (
|
||||||
|
self.model.startswith("MacBook")
|
||||||
|
and (
|
||||||
|
smbios_data.smbios_dictionary[self.model]["CPU Generation"] == cpu_data.cpu_data.haswell.value or
|
||||||
|
smbios_data.smbios_dictionary[self.model]["CPU Generation"] == cpu_data.cpu_data.broadwell.value
|
||||||
|
)
|
||||||
|
):
|
||||||
|
# Fix Virtual Machine support for non-macOS OSes
|
||||||
|
# Haswell and Broadwell MacBooks lock out the VMX bit if booting UEFI Windows
|
||||||
|
print("- Enabling VMX Bit for non-macOS OSes")
|
||||||
|
self.config["UEFI"]["Quirks"]["EnableVmx"] = True
|
||||||
if self.constants.allow_fv_root is True:
|
if self.constants.allow_fv_root is True:
|
||||||
# apfs.kext has an undocumented boot-arg that allows FileVault usage on broken APFS seals (-arv_allow_fv)
|
# apfs.kext has an undocumented boot-arg that allows FileVault usage on broken APFS seals (-arv_allow_fv)
|
||||||
# This is however hidden behind kern.development, thus we patch _apfs_filevault_allowed to always return true
|
# This is however hidden behind kern.development, thus we patch _apfs_filevault_allowed to always return true
|
||||||
|
|||||||
@@ -21,13 +21,13 @@ class Constants:
|
|||||||
|
|
||||||
# OpenCore Versioning
|
# OpenCore Versioning
|
||||||
# https://github.com/acidanthera/OpenCorePkg
|
# https://github.com/acidanthera/OpenCorePkg
|
||||||
self.opencore_commit = "bd3f7a1 - 10-04-2021"
|
self.opencore_commit = "7266ec9 - 12-06-2021"
|
||||||
self.opencore_version = "0.7.5"
|
self.opencore_version = "0.7.6"
|
||||||
|
|
||||||
# Kext Versioning
|
# Kext Versioning
|
||||||
## Acidanthera
|
## Acidanthera
|
||||||
## https://github.com/acidanthera
|
## https://github.com/acidanthera
|
||||||
self.lilu_version = "1.5.6" # Lilu
|
self.lilu_version = "1.5.8" # Lilu
|
||||||
self.whatevergreen_version = "1.5.5" # WhateverGreen
|
self.whatevergreen_version = "1.5.5" # WhateverGreen
|
||||||
self.airportbcrmfixup_version = "2.1.3" # AirPortBrcmFixup
|
self.airportbcrmfixup_version = "2.1.3" # AirPortBrcmFixup
|
||||||
self.nvmefix_version = "1.0.9" # NVMeFix
|
self.nvmefix_version = "1.0.9" # NVMeFix
|
||||||
|
|||||||
Reference in New Issue
Block a user