mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-23 11:30:15 +10:00
Increment binaries
Closes https://github.com/dortania/OpenCore-Legacy-Patcher/issues/180
This commit is contained in:
@@ -15,7 +15,10 @@
|
|||||||
- Better Wireless networking support
|
- Better Wireless networking support
|
||||||
- Fix MacBook6,1 audio support
|
- Fix MacBook6,1 audio support
|
||||||
- Increment binaries
|
- Increment binaries
|
||||||
|
- OpenCore 1a673ad (0.6.9 rolling - 05-02-2021)
|
||||||
|
- Lilu c77722d (1.5.3 rolling - 05-01-2021)
|
||||||
- AppleALC 84850d0 (1.6.0 rolling - 04-30-2021)
|
- AppleALC 84850d0 (1.6.0 rolling - 04-30-2021)
|
||||||
|
- RestrictEvents 9e2bb0f (1.0.1 rolling - 05-01-2021)
|
||||||
|
|
||||||
## 0.1.1
|
## 0.1.1
|
||||||
- Fix iMac11,3 GFX0 pathing
|
- Fix iMac11,3 GFX0 pathing
|
||||||
|
|||||||
@@ -438,9 +438,10 @@ class BuildOpenCore:
|
|||||||
if mp_dgpu_vendor == self.constants.pci_amd_ati:
|
if mp_dgpu_vendor == self.constants.pci_amd_ati:
|
||||||
print("- Adding Mac Pro, Xserve DRM patches")
|
print("- Adding Mac Pro, Xserve DRM patches")
|
||||||
self.config["DeviceProperties"]["Add"][mp_dgpu_path] = {"shikigva": 128, "unfairgva": 1, "wegtree": 1}
|
self.config["DeviceProperties"]["Add"][mp_dgpu_path] = {"shikigva": 128, "unfairgva": 1, "wegtree": 1}
|
||||||
#elif mp_dgpu_vendor == self.constants.pci_nvidia:
|
elif mp_dgpu_vendor == self.constants.pci_nvidia:
|
||||||
# print("- Enabling Nvidia Output Patch")
|
print("- Enabling Nvidia Output Patch")
|
||||||
# self.config["UEFI"]["Quirks"]["ForgeUefiSupport"] = True
|
self.config["UEFI"]["Quirks"]["ForgeUefiSupport"] = True
|
||||||
|
self.config["UEFI"]["Quirks"]["ReloadOptionRoms"] = True
|
||||||
|
|
||||||
except IndexError:
|
except IndexError:
|
||||||
print(f"- Failed to find Device path for NVMe {x}")
|
print(f"- Failed to find Device path for NVMe {x}")
|
||||||
@@ -449,9 +450,10 @@ class BuildOpenCore:
|
|||||||
if "shikigva=128 unfairgva=1 -wegtree" not in self.config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["boot-args"]:
|
if "shikigva=128 unfairgva=1 -wegtree" not in self.config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["boot-args"]:
|
||||||
print("- Falling back to boot-args")
|
print("- Falling back to boot-args")
|
||||||
self.config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["boot-args"] += " shikigva=128 unfairgva=1 -wegtree"
|
self.config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["boot-args"] += " shikigva=128 unfairgva=1 -wegtree"
|
||||||
#elif mp_dgpu_vendor == self.constants.pci_nvidia:
|
elif mp_dgpu_vendor == self.constants.pci_nvidia:
|
||||||
# print("- Enabling Nvidia Output Patch")
|
print("- Enabling Nvidia Output Patch")
|
||||||
# self.config["UEFI"]["Quirks"]["ForgeUefiSupport"] = True
|
self.config["UEFI"]["Quirks"]["ForgeUefiSupport"] = True
|
||||||
|
self.config["UEFI"]["Quirks"]["ReloadOptionRoms"] = True
|
||||||
x = x + 1
|
x = x + 1
|
||||||
except ValueError:
|
except ValueError:
|
||||||
print("- No socketed dGPU found")
|
print("- No socketed dGPU found")
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ from pathlib import Path
|
|||||||
class Constants:
|
class Constants:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.patcher_version = "0.1.2"
|
self.patcher_version = "0.1.2"
|
||||||
self.opencore_commit = "c528597 - 2021-04-05"
|
self.opencore_commit = "1a673ad - 05-02-2021"
|
||||||
self.opencore_version = "0.6.8"
|
self.opencore_version = "0.6.9"
|
||||||
self.lilu_version = "1.5.2"
|
self.lilu_version = "1.5.3"
|
||||||
self.whatevergreen_version = "1.4.9"
|
self.whatevergreen_version = "1.4.9"
|
||||||
self.airportbcrmfixup_version = "2.1.2"
|
self.airportbcrmfixup_version = "2.1.2"
|
||||||
self.bcm570_version = "1.0.1"
|
self.bcm570_version = "1.0.1"
|
||||||
@@ -26,7 +26,7 @@ class Constants:
|
|||||||
self.io80211high_sierra_version = "1.0.0"
|
self.io80211high_sierra_version = "1.0.0"
|
||||||
self.io80211mojave_version = "1.0.0"
|
self.io80211mojave_version = "1.0.0"
|
||||||
self.applealc_version = "1.6.0"
|
self.applealc_version = "1.6.0"
|
||||||
self.restrictevents_version = "1.0.0"
|
self.restrictevents_version = "1.0.1"
|
||||||
self.restrictevents_mbp_version = "1.0.1"
|
self.restrictevents_mbp_version = "1.0.1"
|
||||||
self.piixata_version = "1.0.0"
|
self.piixata_version = "1.0.0"
|
||||||
self.backlight_version = "1.0.1"
|
self.backlight_version = "1.0.1"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* Removes PCI0's 32-bit Allocation Limitation to resolve PCIe device support on Sandy and
|
/* Removes PCI0's 32-bit Allocation Limitation to resolve PCIe device support on Sandy and
|
||||||
* Ivy Bridge Macs, mainly applicable for Audio and eGPU support.
|
* Ivy Bridge Macs, mainly applicable for Audio and eGPU support.
|
||||||
* BUF0 to BUF1 patch required to override exisiting BufObj in DSDT.
|
* BUF0 to BUF1 patch required to override exisiting BuffObj in DSDT.
|
||||||
*
|
*
|
||||||
* Source:
|
* Source:
|
||||||
* https://egpu.io/forums/pc-setup/fix-dsdt-override-to-correct-error-12/
|
* https://egpu.io/forums/pc-setup/fix-dsdt-override-to-correct-error-12/
|
||||||
|
|||||||
@@ -1335,7 +1335,7 @@
|
|||||||
<key>AppleEvent</key>
|
<key>AppleEvent</key>
|
||||||
<string>Builtin</string>
|
<string>Builtin</string>
|
||||||
<key>CustomDelays</key>
|
<key>CustomDelays</key>
|
||||||
<string>Disabled</string>
|
<false/>
|
||||||
<key>KeyInitialDelay</key>
|
<key>KeyInitialDelay</key>
|
||||||
<integer>0</integer>
|
<integer>0</integer>
|
||||||
<key>KeySubsequentDelay</key>
|
<key>KeySubsequentDelay</key>
|
||||||
@@ -1459,14 +1459,20 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>ActivateHpetSupport</key>
|
<key>ActivateHpetSupport</key>
|
||||||
<false/>
|
<false/>
|
||||||
|
<key>EnableVectorAcceleration</key>
|
||||||
|
<false/>
|
||||||
<key>DisableSecurityPolicy</key>
|
<key>DisableSecurityPolicy</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>ExitBootServicesDelay</key>
|
<key>ExitBootServicesDelay</key>
|
||||||
<integer>0</integer>
|
<integer>0</integer>
|
||||||
|
<key>ForgeUefiSupport</key>
|
||||||
|
<false/>
|
||||||
<key>IgnoreInvalidFlexRatio</key>
|
<key>IgnoreInvalidFlexRatio</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>ReleaseUsbOwnership</key>
|
<key>ReleaseUsbOwnership</key>
|
||||||
<false/>
|
<false/>
|
||||||
|
<key>ReloadOptionRoms</key>
|
||||||
|
<false/>
|
||||||
<key>RequestBootVarRouting</key>
|
<key>RequestBootVarRouting</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>TscSyncTimeout</key>
|
<key>TscSyncTimeout</key>
|
||||||
|
|||||||
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.3.zip
Normal file
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.3.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.0.1.zip
Normal file
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.0.1.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user