mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-17 13:22:54 +10:00
Increment Binaries
This commit is contained in:
@@ -35,11 +35,11 @@
|
||||
- ex. AMD GCN
|
||||
- Relies on N-1 system for when matching KDK is not present
|
||||
- Increment Binaries:
|
||||
- OpenCorePkg 0.8.3 release
|
||||
- OpenCorePkg 0.8.5 release
|
||||
- Lilu 1.6.2 - release
|
||||
- FeatureUnlock 1.0.9 release
|
||||
- PatcherSupportPkg 0.6.6 - release
|
||||
- BrcmPatchRAM 2.6.3 - release
|
||||
- BrcmPatchRAM 2.6.4 - release
|
||||
- AutoPkgInstaller 1.0.1 - release
|
||||
- CryptexFixup 1.0.0 - release
|
||||
|
||||
|
||||
@@ -2051,6 +2051,8 @@
|
||||
<false/>
|
||||
<key>TextMode</key>
|
||||
<false/>
|
||||
<key>FullNvramAccess</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Arguments</key>
|
||||
@@ -2071,6 +2073,8 @@
|
||||
<false/>
|
||||
<key>TextMode</key>
|
||||
<true/>
|
||||
<key>FullNvramAccess</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
@@ -2355,7 +2359,7 @@
|
||||
<key>Arguments</key>
|
||||
<string></string>
|
||||
<key>LoadEarly</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Comment</key>
|
||||
@@ -2429,6 +2433,18 @@
|
||||
<key>LoadEarly</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Comment</key>
|
||||
<string></string>
|
||||
<key>Path</key>
|
||||
<string>ResetNvramEntry.efi</string>
|
||||
<key>Enabled</key>
|
||||
<false/>
|
||||
<key>Arguments</key>
|
||||
<string></string>
|
||||
<key>LoadEarly</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</array>
|
||||
<key>Input</key>
|
||||
<dict>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.4-DEBUG.zip
Normal file
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.4-DEBUG.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.4-RELEASE.zip
Normal file
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.4-RELEASE.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -35,6 +35,18 @@ bad_drivers = [
|
||||
"ToggleSipEntry.efi",
|
||||
"UsbMouseDxe.efi",
|
||||
"XhciDxe.efi",
|
||||
"Udp4Dxe.efi",
|
||||
"TcpDxe.efi",
|
||||
"SnpDxe.efi",
|
||||
"MnpDxe.efi",
|
||||
"Ip4Dxe.efi",
|
||||
"HttpUtilitiesDxe.efi",
|
||||
"HttpDxe.efi",
|
||||
"HttpBootDxe.efi",
|
||||
"DpcDxe.efi",
|
||||
"DnsDxe.efi",
|
||||
"Dhcp4Dxe.efi",
|
||||
"ArpDxe.efi",
|
||||
]
|
||||
|
||||
bad_tools = [
|
||||
|
||||
Binary file not shown.
BIN
payloads/Tools/ocvalidate-0.8.5
Executable file
BIN
payloads/Tools/ocvalidate-0.8.5
Executable file
Binary file not shown.
@@ -846,6 +846,7 @@ class BuildOpenCore:
|
||||
self.get_efi_binary_by_path("OpenCanopy.efi", "UEFI", "Drivers")["Enabled"] = True
|
||||
self.get_efi_binary_by_path("OpenRuntime.efi", "UEFI", "Drivers")["Enabled"] = True
|
||||
self.get_efi_binary_by_path("OpenLinuxBoot.efi", "UEFI", "Drivers")["Enabled"] = True
|
||||
self.get_efi_binary_by_path("ResetNvramEntry.efi", "UEFI", "Drivers")["Enabled"] = True
|
||||
# Exfat check
|
||||
if smbios_data.smbios_dictionary[self.model]["CPU Generation"] < cpu_data.cpu_data.sandy_bridge.value:
|
||||
# Sandy Bridge and newer Macs natively support ExFat
|
||||
|
||||
@@ -26,8 +26,8 @@ class Constants:
|
||||
|
||||
# OpenCore Versioning
|
||||
# https://github.com/acidanthera/OpenCorePkg
|
||||
self.opencore_commit = "30acb57 - 07-07-2022"
|
||||
self.opencore_version = "0.8.3"
|
||||
self.opencore_commit = "c14b2ab - 10-04-2022"
|
||||
self.opencore_version = "0.8.5"
|
||||
|
||||
# Kext Versioning
|
||||
## Acidanthera
|
||||
@@ -42,7 +42,7 @@ class Constants:
|
||||
self.featureunlock_version = "1.0.9" # FeatureUnlock
|
||||
self.debugenhancer_version = "1.0.4" # DebugEnhancer
|
||||
self.cpufriend_version = "1.2.5" # CPUFriend
|
||||
self.bluetool_version = "2.6.3" # BlueToolFixup (BrcmPatchRAM)
|
||||
self.bluetool_version = "2.6.4" # BlueToolFixup (BrcmPatchRAM)
|
||||
self.cslvfixup_version = "2.6.1" # CSLVFixup
|
||||
self.autopkg_version = "1.0.1" # AutoPkgInstaller
|
||||
self.cryptexfixup_version = "1.0.0" # CryptexFixup
|
||||
|
||||
Reference in New Issue
Block a user