Add warnings to root patcher

This commit is contained in:
Mykola Grymalyuk
2021-03-24 17:46:13 -06:00
parent 04a039caf3
commit ce09ccf115
2 changed files with 9 additions and 6 deletions
+5 -4
View File
@@ -96,14 +96,15 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
- Audio (AppleHDA) Patch for 2011 and older (Excluding MacPro4,1+) - Audio (AppleHDA) Patch for 2011 and older (Excluding MacPro4,1+)
- Ethernet (AppleBCM5701Ethernet) Patch for certain 2009-2011 Macs - Ethernet (AppleBCM5701Ethernet) Patch for certain 2009-2011 Macs
Note: When the system volume is patched, you can no longer have Delta WARNING: Root Volume Patching is still in active development, please
updates or have FileVault enabled. Please ensure you have all important have all important user data backed up. Note when the system volume
user data backed up. is patched, you can no longer have Delta updates or have FileVault
enabled.
Supported Options: Supported Options:
1. Patch System Volume 1. Patch System Volume
2. Unpatch System Volume 2. Unpatch System Volume (Experimental)
B. Exit B. Exit
""") """)
change_menu = input("Patch System Volume?: ") change_menu = input("Patch System Volume?: ")
+2
View File
@@ -25,6 +25,8 @@ Term | Description
**KernelCollection** | Also known as the ImmutableKernel and PrelinkedKernel, this is a bundle of the kernel(XNU) and kernel extensions(Kexts) that we use to boot macOS. This is also what OpenCore patches in memory to allow us to have a seamless experience <br/>- PrelinkedKernel: Default caching system since 10.7 <br/>- ImmutableKernel: Secure Boot based caching system since 10.13 <br/>- KernelCollection: Merge of both Prelinked and ImmutableKernel's since macOS 11, Big Sur **KernelCollection** | Also known as the ImmutableKernel and PrelinkedKernel, this is a bundle of the kernel(XNU) and kernel extensions(Kexts) that we use to boot macOS. This is also what OpenCore patches in memory to allow us to have a seamless experience <br/>- PrelinkedKernel: Default caching system since 10.7 <br/>- ImmutableKernel: Secure Boot based caching system since 10.13 <br/>- KernelCollection: Merge of both Prelinked and ImmutableKernel's since macOS 11, Big Sur
**IOKit** | Backbone of how Kernel Extentions (Kexts) probe and attach onto hardware, starts quickly after kernel initates **IOKit** | Backbone of how Kernel Extentions (Kexts) probe and attach onto hardware, starts quickly after kernel initates
**WindowServer** | Backbone of the GUI interface in macOS, one of the first userfacing userspace programs to kick-in **WindowServer** | Backbone of the GUI interface in macOS, one of the first userfacing userspace programs to kick-in
**OTA** | Short for **O**ver **T**he **A**ir, refers to native OS updates via System Preferences like a supported Mac
**DELTA** | Often used with OTA, refers to OS updates that much smaller than full installers (generally ~3GB), note Deltas require the root volume to be unmotified otherwise ~12GB updates will occur.
--- ---
Term | Description Term | Description
--- | --- --- | ---