Skip to content

Commit

Permalink
Increment Binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Dec 13, 2021
1 parent d94ffc1 commit 37769e0
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
- Resolve Monterey Bluetooth issues on user-upgraded BCM94331 BT4.0 modules
- Fix iGPU-only iMac14,x display output when using Minimal/Moderate spoof
- Increment Binaries:
- OpenCore 0.7.5 - release
- OpenCore 0.7.6 - release
- Lilu 1.5.8 - release
- BrcmPatchRAM 2.6.1 - release
- WhateverGreen 1.5.5 - release
- PatcherSupportPkg 0.2.8 - release
Expand All @@ -31,6 +32,7 @@
- Add Legacy GCN build support off model for MXM iMacs
- Resolve 5k Display Output support on 5k iMacs and iMac Pro
- Resolve NVMe Patching on 2016-2017 MacBook Pros
- Enable Windows VMX support for Haswell and Broadwell MacBooks

## 0.3.1
- Increment Binaries:
Expand Down
6 changes: 6 additions & 0 deletions payloads/Config/config.plist
Original file line number Diff line number Diff line change
Expand Up @@ -1982,6 +1982,8 @@
<false/>
<key>ProvideConsoleGop</key>
<true/>
<key>ReconnectGraphicsOnConnect</key>
<false/>
<key>ReconnectOnResChange</key>
<false/>
<key>ReplaceTabWithSpace</key>
Expand All @@ -1990,6 +1992,8 @@
<string>Max</string>
<key>SanitiseClearScreen</key>
<false/>
<key>UIScale</key>
<integer>-1</integer>
<key>TextRenderer</key>
<string>BuiltinGraphics</string>
<key>UgaPassThrough</key>
Expand Down Expand Up @@ -2040,6 +2044,8 @@
<false/>
<key>EnableVectorAcceleration</key>
<true/>
<key>EnableVmx</key>
<false/>
<key>DisableSecurityPolicy</key>
<false/>
<key>ExitBootServicesDelay</key>
Expand Down
Binary file removed payloads/Kexts/Acidanthera/Lilu-v1.5.6-DEBUG.zip
Binary file not shown.
Binary file removed payloads/Kexts/Acidanthera/Lilu-v1.5.6-RELEASE.zip
Binary file not shown.
Binary file added payloads/Kexts/Acidanthera/Lilu-v1.5.8-DEBUG.zip
Binary file not shown.
Binary file not shown.
Binary file modified payloads/OpenCore/OpenCore-DEBUG.zip
Binary file not shown.
Binary file modified payloads/OpenCore/OpenCore-RELEASE.zip
Binary file not shown.
Binary file removed payloads/Tools/ocvalidate-0.7.5
Binary file not shown.
Binary file added payloads/Tools/ocvalidate-0.7.6
Binary file not shown.
11 changes: 11 additions & 0 deletions resources/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,17 @@ def amd_patch(self, backlight_path):
self.config["Booter"]["Quirks"]["SignalAppleOS"] = True
except KeyError:
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:
# 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
Expand Down
6 changes: 3 additions & 3 deletions resources/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ def __init__(self):

# OpenCore Versioning
# https://github.com/acidanthera/OpenCorePkg
self.opencore_commit = "bd3f7a1 - 10-04-2021"
self.opencore_version = "0.7.5"
self.opencore_commit = "7266ec9 - 12-06-2021"
self.opencore_version = "0.7.6"

# Kext Versioning
## 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.airportbcrmfixup_version = "2.1.3" # AirPortBrcmFixup
self.nvmefix_version = "1.0.9" # NVMeFix
Expand Down

0 comments on commit 37769e0

Please sign in to comment.