mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 22:50:51 +10:00
Add Root Volume patching for older machines
Closes https://github.com/dortania/OpenCore-Legacy-Patcher/issues/87
This commit is contained in:
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## 0.0.19
|
## 0.0.19
|
||||||
- Add SMC-Spoof.kext to avoid triggering `smcupdater`
|
- Add SMC-Spoof.kext to avoid triggering `smcupdater`
|
||||||
|
- Add Root Volume patching for older machines
|
||||||
|
- AppleHDA Patch for 2011 and older (Excluding MacPro4,1+)
|
||||||
|
- AppleBCM5701Ethernet patch for certian 2009-2011 Macs
|
||||||
|
|
||||||
## 0.0.18
|
## 0.0.18
|
||||||
- Disable Vault by default due to breaking installations
|
- Disable Vault by default due to breaking installations
|
||||||
|
|||||||
@@ -293,12 +293,15 @@ running, however this will enforce iMac Nvidia Build Patches.
|
|||||||
utilities.header(["Patching System Volume"])
|
utilities.header(["Patching System Volume"])
|
||||||
print("""Patches Root volume to fix misc issues such as:
|
print("""Patches Root volume to fix misc issues such as:
|
||||||
|
|
||||||
- Audio
|
- Audio (AppleHDA) Patch for 2011 and older (Excluding MacPro4,1+)
|
||||||
- Ethernet
|
- Ethernet (AppleBCM5701Ethernet) patch for certian 2009-2011 Macs
|
||||||
|
|
||||||
Note: When the system volume is patched, you can no longer have Delta
|
Note: When the system volume is patched, you can no longer have Delta
|
||||||
updates or have FileVault enabled. Please think carefully if this is
|
updates or have FileVault enabled. Please think carefully if this is
|
||||||
desired.
|
desired.
|
||||||
|
|
||||||
|
Root Volume patches can be reverted by booting Recovery and selecting
|
||||||
|
older OS snapshots under Time Machine System Restore.
|
||||||
""")
|
""")
|
||||||
change_kext_menu = input("Patch System Volume?(y/n): ")
|
change_kext_menu = input("Patch System Volume?(y/n): ")
|
||||||
if change_kext_menu in {"y", "Y", "yes", "Yes"}:
|
if change_kext_menu in {"y", "Y", "yes", "Yes"}:
|
||||||
@@ -342,9 +345,9 @@ desired.
|
|||||||
options = (
|
options = (
|
||||||
[["Build OpenCore", self.build_opencore]] if ((self.constants.custom_model or self.current_model) in ModelArray.SupportedSMBIOS) else []) + [
|
[["Build OpenCore", self.build_opencore]] if ((self.constants.custom_model or self.current_model) in ModelArray.SupportedSMBIOS) else []) + [
|
||||||
["Install OpenCore to USB/internal drive", self.install_opencore],
|
["Install OpenCore to USB/internal drive", self.install_opencore],
|
||||||
|
["Post-Install Volume Patch", self.PatchVolume],
|
||||||
["Change Model", self.change_model],
|
["Change Model", self.change_model],
|
||||||
["Patcher Settings", self.patcher_settings],
|
["Patcher Settings", self.patcher_settings],
|
||||||
#["Patch Volume", self.PatchVolume],
|
|
||||||
["Credits", self.credits]
|
["Credits", self.credits]
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user