mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-17 13:22:54 +10:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
50e3e08ff0 | ||
|
|
3674ca47fa | ||
|
|
0e7ecc58f8 | ||
|
|
84d5b99b4a | ||
|
|
1c70521fa1 | ||
|
|
9faa8f82e8 | ||
|
|
647cc0a83a | ||
|
|
12347f866a | ||
|
|
c6f84cc036 | ||
|
|
0c8bda59a1 | ||
|
|
9caa39c50d | ||
|
|
48d714db61 | ||
|
|
59ac0c3fec | ||
|
|
dc7560b142 | ||
|
|
0f0ca7d4ec |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,7 +1,9 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
/App
|
/App
|
||||||
/Build-Folder
|
/Build-Folder
|
||||||
|
/build
|
||||||
|
/dist
|
||||||
/.vscode
|
/.vscode
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
from shutil import copy
|
|
||||||
from shutil import rmtree
|
|
||||||
from distutils.dir_util import copy_tree
|
|
||||||
|
|
||||||
import os
|
|
||||||
import json
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
import zipfile
|
|
||||||
|
|
||||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
||||||
current_path = os.getcwd()
|
|
||||||
|
|
||||||
print(current_path)
|
|
||||||
|
|
||||||
# File location
|
|
||||||
command_path = os.path.join(current_path, "OpenCore-Patcher.command")
|
|
||||||
resources_path = os.path.join(current_path, "Resources/")
|
|
||||||
payloads_path = os.path.join(current_path, "payloads/")
|
|
||||||
icns_path = os.path.join(current_path, "OC-Patcher.icns")
|
|
||||||
plist_path = os.path.join(current_path, "Info.plist")
|
|
||||||
|
|
||||||
app_path = os.path.join(current_path, "App/")
|
|
||||||
app_app_path = os.path.join(current_path, "App/OpenCore-Patcher.app/")
|
|
||||||
contents_path = os.path.join(current_path, "App/OpenCore-Patcher.app/Contents/")
|
|
||||||
app_macos_path = os.path.join(current_path, "App/OpenCore-Patcher.app/Contents/MacOS/")
|
|
||||||
app_macos_payload_path = os.path.join(current_path, "App/OpenCore-Patcher.app/Contents/MacOS/payloads")
|
|
||||||
app_macos_resources_path = os.path.join(current_path, "App/OpenCore-Patcher.app/Contents/MacOS/Resources")
|
|
||||||
app_resources_path = os.path.join(current_path, "App/OpenCore-Patcher.app/Contents/Resources/")
|
|
||||||
|
|
||||||
|
|
||||||
if os.path.exists(app_path):
|
|
||||||
print("Cleaning App folder")
|
|
||||||
rmtree(app_path)
|
|
||||||
|
|
||||||
print("Creating new App folder")
|
|
||||||
os.mkdir(app_path)
|
|
||||||
os.mkdir(app_app_path)
|
|
||||||
os.mkdir(contents_path)
|
|
||||||
os.mkdir(app_macos_path)
|
|
||||||
os.mkdir(app_resources_path)
|
|
||||||
|
|
||||||
copy(command_path, app_macos_path)
|
|
||||||
copy_tree(resources_path, app_macos_resources_path)
|
|
||||||
copy_tree(payloads_path, app_macos_payload_path)
|
|
||||||
copy(icns_path, app_resources_path)
|
|
||||||
copy(plist_path, contents_path)
|
|
||||||
copy(icns_path, app_macos_path)
|
|
||||||
|
|
||||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,5 +1,18 @@
|
|||||||
# OpenCore Legacy Patcher changelog
|
# OpenCore Legacy Patcher changelog
|
||||||
|
|
||||||
|
## 0.0.9
|
||||||
|
- Resolve firmware install issues bricking Macs
|
||||||
|
|
||||||
|
## 0.0.8
|
||||||
|
- Fix USB Map
|
||||||
|
- Add HiDPI patch
|
||||||
|
|
||||||
|
## 0.0.7
|
||||||
|
- Add MacPro3,1 to HID patch
|
||||||
|
- Fix missing SSDT-CPBG patch
|
||||||
|
- Fix BlacklistAppleUpdate
|
||||||
|
- Add RestrictEvents kext
|
||||||
|
|
||||||
## 0.0.6
|
## 0.0.6
|
||||||
- Fix macserial crashing
|
- Fix macserial crashing
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ except NameError:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
# List build versions
|
# List build versions
|
||||||
patcher_version = "0.0.6"
|
patcher_version = "0.0.9"
|
||||||
|
|
||||||
CustomSMBIOS=False
|
CustomSMBIOS=False
|
||||||
MainMenu=True
|
MainMenu=True
|
||||||
|
|||||||
19
README.md
19
README.md
@@ -4,8 +4,6 @@
|
|||||||
|
|
||||||
A python script for building and booting OpenCore on legacy Macs, see [Supported SMBIOS](#supported-smbios) on whether your model is supported.
|
A python script for building and booting OpenCore on legacy Macs, see [Supported SMBIOS](#supported-smbios) on whether your model is supported.
|
||||||
|
|
||||||
See [here](https://github.com/dortania/Opencore-Legacy-Patcher/issues/1) for current TO-DOs on this patcher.
|
|
||||||
|
|
||||||
## Supported SMBIOS
|
## Supported SMBIOS
|
||||||
|
|
||||||
Any hardware supporting SSE4.1 CPU and 64-Bit firmware work on this patcher. To check your hardware model, run the below command on the applicable machine:
|
Any hardware supporting SSE4.1 CPU and 64-Bit firmware work on this patcher. To check your hardware model, run the below command on the applicable machine:
|
||||||
@@ -68,9 +66,9 @@ iMac12,1
|
|||||||
iMac12,2
|
iMac12,2
|
||||||
iMac13,1
|
iMac13,1
|
||||||
iMac13,2
|
iMac13,2
|
||||||
iMac14,1
|
iMac14,1 # Due to issues with 11.1, currently not supported
|
||||||
iMac14,2
|
iMac14,2 # Due to issues with 11.1, currently not supported
|
||||||
iMac14,3
|
iMac14,3 # Due to issues with 11.1, currently not supported
|
||||||
|
|
||||||
MacPro3,1
|
MacPro3,1
|
||||||
MacPro4,1
|
MacPro4,1
|
||||||
@@ -94,14 +92,14 @@ Prerequists:
|
|||||||
1. [Download the release](https://github.com/dortania/Opencore-Legacy-Patcher/releases)
|
1. [Download the release](https://github.com/dortania/Opencore-Legacy-Patcher/releases)
|
||||||
2. Run the `OpenCore-Patcher.command` file
|
2. Run the `OpenCore-Patcher.command` file
|
||||||
3. Once opened, select option 1 and build your EFI
|
3. Once opened, select option 1 and build your EFI
|
||||||
* if patching for a different patching, select option 3 first
|
* if patching for a different machine, select option 3 first
|
||||||
4. Once finished, run option 2 a the main menu and install onto your desired drive
|
4. Once finished, run option 2 at the main menu and install onto your desired drive
|
||||||
|
|
||||||
Once you're done making your OpenCore installer, you can simply reboot holding the Option key. In the picker, you should see a new EFI Boot Option. Boot it and from there you'll be in the OpenCore picker.
|
Once you're done making your OpenCore installer, you can simply reboot holding the Option key. In the picker, you should see a new EFI Boot Option. Boot it and from there you'll be in the OpenCore picker.
|
||||||
|
|
||||||
## How to uninstall OpenCore?
|
## How to uninstall OpenCore?
|
||||||
|
|
||||||
To remve OpenCore is actually quite simply:
|
To remove OpenCore is actually quite simply:
|
||||||
|
|
||||||
1. Remove OpenCore either from the USB or internal drive
|
1. Remove OpenCore either from the USB or internal drive
|
||||||
* You'll need to mount the drive's EFI partition, and delete the EFI folder
|
* You'll need to mount the drive's EFI partition, and delete the EFI folder
|
||||||
@@ -126,5 +124,8 @@ Once you've booted OpenCore at least once, your hardware should now auto boot it
|
|||||||
|
|
||||||
At this time, the OpenCore Patcher won't install macOS onto the internal drive itself during installs. Instead, you'll need to either [manually transfer](https://dortania.github.io/OpenCore-Post-Install/universal/oc2hdd.html) OpenCore to the internal drive's EFI or run this patcher's Option 2 again but select your internal drive.
|
At this time, the OpenCore Patcher won't install macOS onto the internal drive itself during installs. Instead, you'll need to either [manually transfer](https://dortania.github.io/OpenCore-Post-Install/universal/oc2hdd.html) OpenCore to the internal drive's EFI or run this patcher's Option 2 again but select your internal drive.
|
||||||
|
|
||||||
Reminder that once this is done, you'll need to select OpenCore in the boot picker again for your hardware to remenber this entry and auto boot from then on.
|
Reminder that once this is done, you'll need to select OpenCore in the boot picker again for your hardware to remember this entry and auto boot from then on.
|
||||||
|
|
||||||
|
### Cannot run OpenCore Legacy Patcher
|
||||||
|
|
||||||
|
If the release tab has permissions/Gatekeeper issues, please [download the main repo](https://github.com/dortania/Opencore-Legacy-Patcher/archive/main.zip) and run that instead.
|
||||||
|
|||||||
@@ -61,12 +61,20 @@ def BuildEFI():
|
|||||||
copy(Versions.plist_path, Versions.plist_path_build)
|
copy(Versions.plist_path, Versions.plist_path_build)
|
||||||
with open(Versions.plist_path_build_full, 'r') as file :
|
with open(Versions.plist_path_build_full, 'r') as file :
|
||||||
Versions.plist_data = file.read()
|
Versions.plist_data = file.read()
|
||||||
|
# Adding must have kexts
|
||||||
print("- Adding Lilu %s" % Versions.lilu_version)
|
print("- Adding Lilu v%s" % Versions.lilu_version)
|
||||||
copy(Versions.lilu_path, Versions.kext_path_build)
|
copy(Versions.lilu_path, Versions.kext_path_build)
|
||||||
|
|
||||||
print("- Adding WhateverGreen %s" % Versions.whatevergreen_version)
|
print("- Adding WhateverGreen v%s" % Versions.whatevergreen_version)
|
||||||
copy(Versions.whatevergreen_path, Versions.kext_path_build)
|
copy(Versions.whatevergreen_path, Versions.kext_path_build)
|
||||||
|
|
||||||
|
if current_model in ModelArray.MacPro71:
|
||||||
|
print("- Adding RestrictEvents v%s" % Versions.restrictevents_version)
|
||||||
|
copy(Versions.restrictevents_path, Versions.kext_path_build)
|
||||||
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
|
"<false/><!--RestrictEvents-->",
|
||||||
|
"<true/><!--RestrictEvents-->"
|
||||||
|
)
|
||||||
|
|
||||||
# Checks for kexts
|
# Checks for kexts
|
||||||
# CPU Kext Patches
|
# CPU Kext Patches
|
||||||
@@ -86,7 +94,7 @@ def BuildEFI():
|
|||||||
"<true/><!--AAAMouSSE-->"
|
"<true/><!--AAAMouSSE-->"
|
||||||
)
|
)
|
||||||
if current_model in ModelArray.MissingSSE42:
|
if current_model in ModelArray.MissingSSE42:
|
||||||
print("- Adding telemetrap %s" % Versions.telemetrap_version)
|
print("- Adding telemetrap v%s" % Versions.telemetrap_version)
|
||||||
copy(Versions.telemetrap_path, Versions.kext_path_build)
|
copy(Versions.telemetrap_path, Versions.kext_path_build)
|
||||||
Versions.plist_data = Versions.plist_data.replace(
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
"<false/><!--telemetrap-->",
|
"<false/><!--telemetrap-->",
|
||||||
@@ -110,7 +118,7 @@ def BuildEFI():
|
|||||||
"<true/><!--MarvelYukonEthernet-->"
|
"<true/><!--MarvelYukonEthernet-->"
|
||||||
)
|
)
|
||||||
if current_model in ModelArray.EthernetBroadcom:
|
if current_model in ModelArray.EthernetBroadcom:
|
||||||
print("- Adding CatalinaBCM5701Ethernet %s" % Versions.bcm570_version)
|
print("- Adding CatalinaBCM5701Ethernet v%s" % Versions.bcm570_version)
|
||||||
copy(Versions.bcm570_path, Versions.kext_path_build)
|
copy(Versions.bcm570_path, Versions.kext_path_build)
|
||||||
Versions.plist_data = Versions.plist_data.replace(
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
"<false/><!--CatalinaBCM5701Ethernet-->",
|
"<false/><!--CatalinaBCM5701Ethernet-->",
|
||||||
@@ -212,13 +220,21 @@ def BuildEFI():
|
|||||||
"<true/><!--VoodooHDA-->"
|
"<true/><!--VoodooHDA-->"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if current_model in ModelArray.pciSSDT:
|
||||||
|
print("- Adding SSDT-CPBG")
|
||||||
|
copy(Versions.pci_ssdt_path, Versions.acpi_path_build)
|
||||||
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
|
"<false/><!--SSDT-CPBG-->",
|
||||||
|
"<true/><!--SSDT-CPBG-->"
|
||||||
|
)
|
||||||
|
|
||||||
usb_map_path = os.path.join(Versions.current_path, "payloads/Kexts/Maps/Zip/" "USB-Map-%s.zip" % current_model)
|
usb_map_path = os.path.join(Versions.current_path, "payloads/Kexts/Maps/Zip/" "USB-Map-%s.zip" % current_model)
|
||||||
if os.path.exists(usb_map_path):
|
if os.path.exists(usb_map_path):
|
||||||
print("- Adding USB Map for %s" % current_model)
|
print("- Adding USB Map for %s" % current_model)
|
||||||
copy(usb_map_path, Versions.kext_path_build)
|
copy(usb_map_path, Versions.kext_path_build)
|
||||||
map_name = ("USB-Map-%s.kext" % current_model)
|
map_name = ("USB-Map-%s.kext" % current_model)
|
||||||
Versions.plist_data = Versions.plist_data.replace(
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
"<<false/><!--USBmap-->",
|
"<false/><!--USBmap-->",
|
||||||
"<true/><!--USBmap-->"
|
"<true/><!--USBmap-->"
|
||||||
)
|
)
|
||||||
Versions.plist_data = Versions.plist_data.replace(
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
@@ -232,6 +248,12 @@ def BuildEFI():
|
|||||||
"debug=0x100",
|
"debug=0x100",
|
||||||
"debug=0x100 agdpmod=pikera"
|
"debug=0x100 agdpmod=pikera"
|
||||||
)
|
)
|
||||||
|
if current_model in ModelArray.HiDPIpicker:
|
||||||
|
print("- Setting HiDPI picker")
|
||||||
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
|
"<data>AQ==</data>",
|
||||||
|
"<data>Ag==</data>"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def BuildGUI():
|
def BuildGUI():
|
||||||
|
|||||||
@@ -343,6 +343,7 @@ LegacyHID = [
|
|||||||
"iMac8,1",
|
"iMac8,1",
|
||||||
"iMac9,1",
|
"iMac9,1",
|
||||||
"iMac10,1",
|
"iMac10,1",
|
||||||
|
"MacPro3,1"
|
||||||
]
|
]
|
||||||
|
|
||||||
NVMePatch = [
|
NVMePatch = [
|
||||||
@@ -387,6 +388,11 @@ DualGPUPatch = [
|
|||||||
"iMac14,3",
|
"iMac14,3",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
HiDPIpicker = [
|
||||||
|
"MacBookPro10,1",
|
||||||
|
"MacBookPro10,2",
|
||||||
|
]
|
||||||
|
|
||||||
# 11" Air
|
# 11" Air
|
||||||
MacBookAir61 = [
|
MacBookAir61 = [
|
||||||
"MacBookAir3,1",
|
"MacBookAir3,1",
|
||||||
@@ -467,10 +473,9 @@ iMac144 = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
# Mac Pro and Xserve
|
# Mac Pro and Xserve
|
||||||
|
|
||||||
MacPro71 = [
|
MacPro71 = [
|
||||||
"MacPro3,1",
|
"MacPro3,1",
|
||||||
"MacPro4,1",
|
"MacPro4,1",
|
||||||
"MacPro5,1",
|
"MacPro5,1",
|
||||||
"Xserve3,1"
|
"Xserve3,1"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,10 +11,10 @@ import subprocess
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
# List build versions
|
# List build versions
|
||||||
opencore_version = "0.6.4"
|
opencore_version = "0.6.6"
|
||||||
lilu_version = "1.4.9"
|
lilu_version = "1.5.0"
|
||||||
whatevergreen_version = "1.4.4"
|
whatevergreen_version = "1.4.6"
|
||||||
airportbcrmfixup_version = "2.1.1"
|
airportbcrmfixup_version = "2.1.2"
|
||||||
bcm570_version = "1.0.0"
|
bcm570_version = "1.0.0"
|
||||||
marvel_version = "1.0.0"
|
marvel_version = "1.0.0"
|
||||||
nforce_version = "1.0.0"
|
nforce_version = "1.0.0"
|
||||||
@@ -24,6 +24,7 @@ telemetrap_version = "1.0.0"
|
|||||||
io80211high_sierra_version = "1.0.0"
|
io80211high_sierra_version = "1.0.0"
|
||||||
io80211mojave_version = "1.0.0"
|
io80211mojave_version = "1.0.0"
|
||||||
voodoohda_version = "296"
|
voodoohda_version = "296"
|
||||||
|
restrictevents_version = "1.0.0"
|
||||||
|
|
||||||
# List current location
|
# List current location
|
||||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||||
@@ -45,6 +46,7 @@ nvme_driver_path = os.path.join(current_path, "payloads/Drivers/" "NvmExpressDxe
|
|||||||
lilu_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "Lilu-v%s.zip" % lilu_version)
|
lilu_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "Lilu-v%s.zip" % lilu_version)
|
||||||
whatevergreen_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "WhateverGreen-v%s.zip" % whatevergreen_version)
|
whatevergreen_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "WhateverGreen-v%s.zip" % whatevergreen_version)
|
||||||
airportbcrmfixup_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "AirportBrcmFixup-v%s.zip" % airportbcrmfixup_version)
|
airportbcrmfixup_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "AirportBrcmFixup-v%s.zip" % airportbcrmfixup_version)
|
||||||
|
restrictevents_path = os.path.join(current_path, "payloads/Kexts/Acidanthera/" "RestrictEvents-v%s.zip" % restrictevents_version)
|
||||||
bcm570_path = os.path.join(current_path, "payloads/Kexts/Ethernet/" "CatalinaBCM5701Ethernet-v%s.zip" % bcm570_version)
|
bcm570_path = os.path.join(current_path, "payloads/Kexts/Ethernet/" "CatalinaBCM5701Ethernet-v%s.zip" % bcm570_version)
|
||||||
marvel_path = os.path.join(current_path, "payloads/Kexts/Ethernet/" "MarvelYukonEthernet-v%s.zip" % marvel_version)
|
marvel_path = os.path.join(current_path, "payloads/Kexts/Ethernet/" "MarvelYukonEthernet-v%s.zip" % marvel_version)
|
||||||
nforce_path = os.path.join(current_path, "payloads/Kexts/Ethernet/" "nForceEthernet-v%s.zip" % nforce_version)
|
nforce_path = os.path.join(current_path, "payloads/Kexts/Ethernet/" "nForceEthernet-v%s.zip" % nforce_version)
|
||||||
|
|||||||
@@ -210,6 +210,24 @@
|
|||||||
<key>PlistPath</key>
|
<key>PlistPath</key>
|
||||||
<string>Contents/Info.plist</string>
|
<string>Contents/Info.plist</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Process Blocker</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--RestrictEvents-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>RestrictEvents.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/RestrictEvents</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Arch</key>
|
<key>Arch</key>
|
||||||
<string>x86_64</string>
|
<string>x86_64</string>
|
||||||
|
|||||||
@@ -212,6 +212,24 @@
|
|||||||
<key>PlistPath</key>
|
<key>PlistPath</key>
|
||||||
<string>Contents/Info.plist</string>
|
<string>Contents/Info.plist</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Process Blocker</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--RestrictEvents-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>RestrictEvents.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/RestrictEvents</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Arch</key>
|
<key>Arch</key>
|
||||||
<string>x86_64</string>
|
<string>x86_64</string>
|
||||||
@@ -623,7 +641,7 @@
|
|||||||
<key>BootProtect</key>
|
<key>BootProtect</key>
|
||||||
<string>Bootstrap</string>
|
<string>Bootstrap</string>
|
||||||
<key>BlacklistAppleUpdate</key>
|
<key>BlacklistAppleUpdate</key>
|
||||||
<false/>
|
<true/>
|
||||||
<key>DmgLoading</key>
|
<key>DmgLoading</key>
|
||||||
<string>Signed</string>
|
<string>Signed</string>
|
||||||
<key>EnablePassword</key>
|
<key>EnablePassword</key>
|
||||||
|
|||||||
969
payloads/Config/v0.6.5/config.plist
Normal file
969
payloads/Config/v0.6.5/config.plist
Normal file
@@ -0,0 +1,969 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<!--OpenCore 0.6.4 config-->
|
||||||
|
<dict>
|
||||||
|
<key>ACPI</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--SSDT-CPBG-->
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Patch CPBG for Arrendale, Lynnfield and Clarkdale</string>
|
||||||
|
<key>Path</key>
|
||||||
|
<string>SSDT-CPBG.aml</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Delete</key>
|
||||||
|
<array/>
|
||||||
|
<key>Patch</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>XHC1 to SHC1</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Find</key>
|
||||||
|
<data>WEhDMQ==</data>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>OemTableId</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>U0hDMQ==</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableLength</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableSignature</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>EHC1 to EH01</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Find</key>
|
||||||
|
<data>RUhDMQ==</data>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>OemTableId</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>RUgwMQ==</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableLength</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableSignature</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>EHC2 to EH02</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Find</key>
|
||||||
|
<data>RUhDMg==</data>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>OemTableId</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>RUgwMg==</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableLength</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableSignature</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>FadtEnableReset</key>
|
||||||
|
<false/>
|
||||||
|
<key>NormalizeHeaders</key>
|
||||||
|
<false/>
|
||||||
|
<key>RebaseRegions</key>
|
||||||
|
<false/>
|
||||||
|
<key>ResetHwSig</key>
|
||||||
|
<false/>
|
||||||
|
<key>ResetLogoStatus</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Booter</key>
|
||||||
|
<dict>
|
||||||
|
<key>MmioWhitelist</key>
|
||||||
|
<array/>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>AllowRelocationBlock</key>
|
||||||
|
<false/>
|
||||||
|
<key>AvoidRuntimeDefrag</key>
|
||||||
|
<false/>
|
||||||
|
<key>DevirtualiseMmio</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableSingleUser</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableVariableWrite</key>
|
||||||
|
<false/>
|
||||||
|
<key>DiscardHibernateMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>EnableSafeModeSlide</key>
|
||||||
|
<false/>
|
||||||
|
<key>EnableWriteUnprotector</key>
|
||||||
|
<false/>
|
||||||
|
<key>ForceExitBootServices</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProtectMemoryRegions</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProtectSecureBoot</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProtectUefiServices</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProvideCustomSlide</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProvideMaxSlide</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>RebuildAppleMemoryMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>SetupVirtualMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>SignalAppleOS</key>
|
||||||
|
<false/>
|
||||||
|
<key>SyncRuntimePermissions</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>DeviceProperties</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<dict>
|
||||||
|
<key>#PciRoot(0x0)/Pci(0x1C,0x1)/Pci(0x0,0x0)</key>
|
||||||
|
<dict>
|
||||||
|
<key>device-id</key>
|
||||||
|
<data>ukMAAA==</data>
|
||||||
|
<key>compatible</key>
|
||||||
|
<string>pci14e4,43ba</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Delete</key>
|
||||||
|
<dict/>
|
||||||
|
</dict>
|
||||||
|
<key>Kernel</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Patching Engine</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/><!--Lilu-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>Lilu.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/Lilu</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>GPU Patching</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/><!--WEG-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>WhateverGreen.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/WhateverGreen</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Process Blocker</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--RestrictEvents-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>RestrictEvents.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/RestrictEvents</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>SSE Emulator</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AAAMouSSE-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AAAMouSSE.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/MouSSE</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>SSE Patcher</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--telemetrap-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>telemetrap.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/telemetrap</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>4331 Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirportBrcmFixup-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AirportBrcmFixup.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/AirportBrcmFixup</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>4331 Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirPortBrcmNIC_Injector-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string></string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Dual Socket Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AppleMCEReporterDisabler-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AppleMCEReporterDisabler.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string></string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>BCM Ethernet patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--CatalinaBCM5701Ethernet-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>CatalinaBCM5701Ethernet.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/CatalinaBCM5701Ethernet</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Atheros Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--IO80211HighSierra-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211HighSierra.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/IO80211HighSierra</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Atheros Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirPortAtheros40-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211HighSierra.kext/Contents/PlugIns/AirPortAtheros40.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/AirPortAtheros40</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Broadcom Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--IO80211Mojave-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211Mojave.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/IO80211Mojave</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Broadcom Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirPortBrcm4331-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211Mojave.kext/Contents/PlugIns/AirPortBrcm4331.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/AirPortBrcm4331</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Marvel Ethernet Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--MarvelYukonEthernet-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>MarvelYukonEthernet.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/MarvelYukonEthernet</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Nvidia Ethernet Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--nForceEthernet-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>nForceEthernet.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/nForceEthernet</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>VoodooHDA</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--VoodooHDA-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>VoodooHDA.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/VoodooHDA</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>USB Map</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--USBmap-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>USB-Map-SMBIOS.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string></string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Block</key>
|
||||||
|
<array/>
|
||||||
|
<key>Emulate</key>
|
||||||
|
<dict>
|
||||||
|
<key>DummyPowerManagement</key>
|
||||||
|
<false/>
|
||||||
|
<key>Cpuid1Data</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Cpuid1Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
</dict>
|
||||||
|
<key>Force</key>
|
||||||
|
<array/>
|
||||||
|
<key>Patch</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Base</key>
|
||||||
|
<string>_isSingleUser</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Patch IOHIDFamily</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>1</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--IOHIDFamily-->
|
||||||
|
<key>Find</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Identifier</key>
|
||||||
|
<string>com.apple.iokit.IOHIDFamily</string>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>uAEAAADD</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleCpuPmCfgLock</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleXcpmCfgLock</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleXcpmExtraMsrs</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleXcpmForceBoost</key>
|
||||||
|
<false/>
|
||||||
|
<key>CustomSMBIOSGuid</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableIoMapper</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableLinkeditJettison</key>
|
||||||
|
<true/>
|
||||||
|
<key>DisableRtcChecksum</key>
|
||||||
|
<false/>
|
||||||
|
<key>ExtendBTFeatureFlags</key>
|
||||||
|
<false/>
|
||||||
|
<key>ExternalDiskIcons</key>
|
||||||
|
<false/>
|
||||||
|
<key>ForceSecureBootScheme</key>
|
||||||
|
<false/>
|
||||||
|
<key>IncreasePciBarSize</key>
|
||||||
|
<false/>
|
||||||
|
<key>LapicKernelPanic</key>
|
||||||
|
<false/>
|
||||||
|
<key>LegacyCommpage</key>
|
||||||
|
<false/>
|
||||||
|
<key>PanicNoKextDump</key>
|
||||||
|
<false/>
|
||||||
|
<key>PowerTimeoutKernelPanic</key>
|
||||||
|
<false/>
|
||||||
|
<key>ThirdPartyDrives</key>
|
||||||
|
<false/>
|
||||||
|
<key>XhciPortLimit</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>Scheme</key>
|
||||||
|
<dict>
|
||||||
|
<key>FuzzyMatch</key>
|
||||||
|
<true/>
|
||||||
|
<key>KernelArch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>KernelCache</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Misc</key>
|
||||||
|
<dict>
|
||||||
|
<key>BlessOverride</key>
|
||||||
|
<array/>
|
||||||
|
<key>Boot</key>
|
||||||
|
<dict>
|
||||||
|
<key>ConsoleAttributes</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>HibernateMode</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>HideAuxiliary</key>
|
||||||
|
<true/>
|
||||||
|
<key>PickerAttributes</key>
|
||||||
|
<integer>1</integer>
|
||||||
|
<key>PickerAudioAssist</key>
|
||||||
|
<false/>
|
||||||
|
<key>PickerMode</key>
|
||||||
|
<string>External</string>
|
||||||
|
<key>PickerVariant</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>PollAppleHotKeys</key>
|
||||||
|
<false/>
|
||||||
|
<key>ShowPicker</key>
|
||||||
|
<true/>
|
||||||
|
<key>TakeoffDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Timeout</key>
|
||||||
|
<integer>5</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Debug</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleDebug</key>
|
||||||
|
<true/>
|
||||||
|
<key>ApplePanic</key>
|
||||||
|
<true/>
|
||||||
|
<key>DisableWatchDog</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisplayDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>DisplayLevel</key>
|
||||||
|
<integer>2147483650</integer>
|
||||||
|
<key>SerialInit</key>
|
||||||
|
<false/>
|
||||||
|
<key>SysReport</key>
|
||||||
|
<false/>
|
||||||
|
<key>Target</key>
|
||||||
|
<integer>3</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Entries</key>
|
||||||
|
<array/>
|
||||||
|
<key>Security</key>
|
||||||
|
<dict>
|
||||||
|
<key>AllowNvramReset</key>
|
||||||
|
<true/>
|
||||||
|
<key>AllowSetDefault</key>
|
||||||
|
<true/>
|
||||||
|
<key>ApECID</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AuthRestart</key>
|
||||||
|
<false/>
|
||||||
|
<key>BootProtect</key>
|
||||||
|
<string>Bootstrap</string>
|
||||||
|
<key>BlacklistAppleUpdate</key>
|
||||||
|
<true/>
|
||||||
|
<key>DmgLoading</key>
|
||||||
|
<string>Signed</string>
|
||||||
|
<key>EnablePassword</key>
|
||||||
|
<false/>
|
||||||
|
<key>ExposeSensitiveData</key>
|
||||||
|
<integer>15</integer>
|
||||||
|
<key>HaltLevel</key>
|
||||||
|
<integer>2147483648</integer>
|
||||||
|
<key>PasswordHash</key>
|
||||||
|
<data></data>
|
||||||
|
<key>PasswordSalt</key>
|
||||||
|
<data></data>
|
||||||
|
<key>ScanPolicy</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>SecureBootModel</key>
|
||||||
|
<string>x86legacy</string>
|
||||||
|
<key>Vault</key>
|
||||||
|
<string>Optional</string>
|
||||||
|
</dict>
|
||||||
|
<key>Tools</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Arguments</key>
|
||||||
|
<string></string>
|
||||||
|
<key>Auxiliary</key>
|
||||||
|
<true/>
|
||||||
|
<key>Name</key>
|
||||||
|
<string>BootKicker.efi</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>BootKicker.efi</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Path</key>
|
||||||
|
<string>BootKicker.efi</string>
|
||||||
|
<key>RealPath</key>
|
||||||
|
<false/>
|
||||||
|
<key>TextMode</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arguments</key>
|
||||||
|
<string></string>
|
||||||
|
<key>Auxiliary</key>
|
||||||
|
<false/>
|
||||||
|
<key>Name</key>
|
||||||
|
<string>OpenShell.efi</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>OpenShell.efi</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Path</key>
|
||||||
|
<string>OpenShell.efi</string>
|
||||||
|
<key>RealPath</key>
|
||||||
|
<false/>
|
||||||
|
<key>TextMode</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>NVRAM</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<dict>
|
||||||
|
<key>4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14</key>
|
||||||
|
<dict>
|
||||||
|
<key>DefaultBackgroundColor</key>
|
||||||
|
<data>AAAAAA==</data>
|
||||||
|
<key>UIScale</key>
|
||||||
|
<data>AQ==</data>
|
||||||
|
</dict>
|
||||||
|
<key>4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102</key>
|
||||||
|
<dict>
|
||||||
|
<key>rtc-blacklist</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
|
||||||
|
<dict>
|
||||||
|
<key>SystemAudioVolume</key>
|
||||||
|
<data>Rg==</data>
|
||||||
|
<key>boot-args</key>
|
||||||
|
<string>-v keepsyms=1 debug=0x100</string>
|
||||||
|
<key>run-efi-updater</key>
|
||||||
|
<string>No</string>
|
||||||
|
<key>csr-active-config</key>
|
||||||
|
<data>AAAAAA==</data>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Delete</key>
|
||||||
|
<dict>
|
||||||
|
<key>4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14</key>
|
||||||
|
<array>
|
||||||
|
<string>UIScale</string>
|
||||||
|
<string>DefaultBackgroundColor</string>
|
||||||
|
</array>
|
||||||
|
<key>4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102</key>
|
||||||
|
<array>
|
||||||
|
<string>rtc-blacklist</string>
|
||||||
|
</array>
|
||||||
|
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
|
||||||
|
<array>
|
||||||
|
<string>boot-args</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>LegacyEnable</key>
|
||||||
|
<false/>
|
||||||
|
<key>LegacyOverwrite</key>
|
||||||
|
<false/>
|
||||||
|
<key>LegacySchema</key>
|
||||||
|
<dict>
|
||||||
|
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
|
||||||
|
<array>
|
||||||
|
<string>EFILoginHiDPI</string>
|
||||||
|
<string>EFIBluetoothDelay</string>
|
||||||
|
<string>LocationServicesEnabled</string>
|
||||||
|
<string>SystemAudioVolume</string>
|
||||||
|
<string>SystemAudioVolumeDB</string>
|
||||||
|
<string>SystemAudioVolumeSaved</string>
|
||||||
|
<string>bluetoothActiveControllerInfo</string>
|
||||||
|
<string>bluetoothInternalControllerInfo</string>
|
||||||
|
<string>flagstate</string>
|
||||||
|
<string>fmm-computer-name</string>
|
||||||
|
<string>nvda_drv</string>
|
||||||
|
<string>prev-lang:kbd</string>
|
||||||
|
</array>
|
||||||
|
<key>8BE4DF61-93CA-11D2-AA0D-00E098032B8C</key>
|
||||||
|
<array>
|
||||||
|
<string>Boot0080</string>
|
||||||
|
<string>Boot0081</string>
|
||||||
|
<string>Boot0082</string>
|
||||||
|
<string>BootNext</string>
|
||||||
|
<string>BootOrder</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>WriteFlash</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>PlatformInfo</key>
|
||||||
|
<dict>
|
||||||
|
<key>Automatic</key>
|
||||||
|
<true/>
|
||||||
|
<key>CustomMemory</key>
|
||||||
|
<false/>
|
||||||
|
<key>Generic</key>
|
||||||
|
<dict>
|
||||||
|
<key>AdviseWindows</key>
|
||||||
|
<false/>
|
||||||
|
<key>SystemMemoryStatus</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>MLB</key>
|
||||||
|
<string>M0000000000000001</string>
|
||||||
|
<key>ProcessorType</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>ROM</key>
|
||||||
|
<data>ESIzRFVm</data>
|
||||||
|
<key>SpoofVendor</key>
|
||||||
|
<true/>
|
||||||
|
<key>SystemProductName</key>
|
||||||
|
<string>iMac19,1</string>
|
||||||
|
<key>SystemSerialNumber</key>
|
||||||
|
<string>W00000000001</string>
|
||||||
|
<key>SystemUUID</key>
|
||||||
|
<string>00000000-0000-0000-0000-000000000000</string>
|
||||||
|
</dict>
|
||||||
|
<key>UpdateDataHub</key>
|
||||||
|
<true/>
|
||||||
|
<key>UpdateNVRAM</key>
|
||||||
|
<true/>
|
||||||
|
<key>UpdateSMBIOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>UpdateSMBIOSMode</key>
|
||||||
|
<string>Create</string>
|
||||||
|
</dict>
|
||||||
|
<key>UEFI</key>
|
||||||
|
<dict>
|
||||||
|
<key>APFS</key>
|
||||||
|
<dict>
|
||||||
|
<key>EnableJumpstart</key>
|
||||||
|
<true/>
|
||||||
|
<key>GlobalConnect</key>
|
||||||
|
<false/>
|
||||||
|
<key>HideVerbose</key>
|
||||||
|
<true/>
|
||||||
|
<key>JumpstartHotPlug</key>
|
||||||
|
<false/>
|
||||||
|
<key>MinDate</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>MinVersion</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Audio</key>
|
||||||
|
<dict>
|
||||||
|
<key>AudioCodec</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AudioDevice</key>
|
||||||
|
<string>PciRoot(0x0)/Pci(0x1b,0x0)</string>
|
||||||
|
<key>AudioOut</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AudioSupport</key>
|
||||||
|
<false/>
|
||||||
|
<key>MinimumVolume</key>
|
||||||
|
<integer>20</integer>
|
||||||
|
<key>PlayChime</key>
|
||||||
|
<string>Disabled</string>
|
||||||
|
<key>SetupDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>VolumeAmplifier</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
</dict>
|
||||||
|
<key>ConnectDrivers</key>
|
||||||
|
<true/>
|
||||||
|
<key>Drivers</key>
|
||||||
|
<array>
|
||||||
|
<string>#NvmExpressDxe.efi</string>
|
||||||
|
<string>#OpenCanopy.efi</string>
|
||||||
|
<string>OpenRuntime.efi</string>
|
||||||
|
</array>
|
||||||
|
<key>Input</key>
|
||||||
|
<dict>
|
||||||
|
<key>KeyFiltering</key>
|
||||||
|
<false/>
|
||||||
|
<key>KeyForgetThreshold</key>
|
||||||
|
<integer>5</integer>
|
||||||
|
<key>KeyMergeThreshold</key>
|
||||||
|
<integer>2</integer>
|
||||||
|
<key>KeySupport</key>
|
||||||
|
<false/>
|
||||||
|
<key>KeySupportMode</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>KeySwap</key>
|
||||||
|
<false/>
|
||||||
|
<key>PointerSupport</key>
|
||||||
|
<false/>
|
||||||
|
<key>PointerSupportMode</key>
|
||||||
|
<string>ASUS</string>
|
||||||
|
<key>TimerResolution</key>
|
||||||
|
<integer>50000</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Output</key>
|
||||||
|
<dict>
|
||||||
|
<key>ClearScreenOnModeSwitch</key>
|
||||||
|
<false/>
|
||||||
|
<key>ConsoleMode</key>
|
||||||
|
<string></string>
|
||||||
|
<key>DirectGopRendering</key>
|
||||||
|
<false/>
|
||||||
|
<key>ForceResolution</key>
|
||||||
|
<false/>
|
||||||
|
<key>IgnoreTextInGraphics</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProvideConsoleGop</key>
|
||||||
|
<true/>
|
||||||
|
<key>ReconnectOnResChange</key>
|
||||||
|
<false/>
|
||||||
|
<key>ReplaceTabWithSpace</key>
|
||||||
|
<false/>
|
||||||
|
<key>Resolution</key>
|
||||||
|
<string>Max</string>
|
||||||
|
<key>SanitiseClearScreen</key>
|
||||||
|
<false/>
|
||||||
|
<key>TextRenderer</key>
|
||||||
|
<string>BuiltinGraphics</string>
|
||||||
|
<key>UgaPassThrough</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>ProtocolOverrides</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleAudio</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleBootPolicy</key>
|
||||||
|
<true/>
|
||||||
|
<key>AppleDebugLog</key>
|
||||||
|
<true/>
|
||||||
|
<key>AppleEvent</key>
|
||||||
|
<true/>
|
||||||
|
<key>AppleFramebufferInfo</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleImageConversion</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleImg4Verification</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleKeyMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleRtcRam</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleSecureBoot</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleSmcIo</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleUserInterfaceTheme</key>
|
||||||
|
<false/>
|
||||||
|
<key>DataHub</key>
|
||||||
|
<false/>
|
||||||
|
<key>DeviceProperties</key>
|
||||||
|
<false/>
|
||||||
|
<key>FirmwareVolume</key>
|
||||||
|
<false/>
|
||||||
|
<key>HashServices</key>
|
||||||
|
<false/>
|
||||||
|
<key>OSInfo</key>
|
||||||
|
<false/>
|
||||||
|
<key>UnicodeCollation</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>ExitBootServicesDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>IgnoreInvalidFlexRatio</key>
|
||||||
|
<false/>
|
||||||
|
<key>ReleaseUsbOwnership</key>
|
||||||
|
<false/>
|
||||||
|
<key>RequestBootVarRouting</key>
|
||||||
|
<true/>
|
||||||
|
<key>TscSyncTimeout</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>UnblockFsConnect</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>ReservedMemory</key>
|
||||||
|
<array/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
971
payloads/Config/v0.6.6/config.plist
Normal file
971
payloads/Config/v0.6.6/config.plist
Normal file
@@ -0,0 +1,971 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<!--OpenCore 0.6.4 config-->
|
||||||
|
<dict>
|
||||||
|
<key>ACPI</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--SSDT-CPBG-->
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Patch CPBG for Arrendale, Lynnfield and Clarkdale</string>
|
||||||
|
<key>Path</key>
|
||||||
|
<string>SSDT-CPBG.aml</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Delete</key>
|
||||||
|
<array/>
|
||||||
|
<key>Patch</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>XHC1 to SHC1</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Find</key>
|
||||||
|
<data>WEhDMQ==</data>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>OemTableId</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>U0hDMQ==</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableLength</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableSignature</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>EHC1 to EH01</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Find</key>
|
||||||
|
<data>RUhDMQ==</data>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>OemTableId</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>RUgwMQ==</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableLength</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableSignature</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>EHC2 to EH02</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Find</key>
|
||||||
|
<data>RUhDMg==</data>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>OemTableId</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>RUgwMg==</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableLength</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>TableSignature</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>FadtEnableReset</key>
|
||||||
|
<false/>
|
||||||
|
<key>NormalizeHeaders</key>
|
||||||
|
<false/>
|
||||||
|
<key>RebaseRegions</key>
|
||||||
|
<false/>
|
||||||
|
<key>ResetHwSig</key>
|
||||||
|
<false/>
|
||||||
|
<key>ResetLogoStatus</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Booter</key>
|
||||||
|
<dict>
|
||||||
|
<key>MmioWhitelist</key>
|
||||||
|
<array/>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>AllowRelocationBlock</key>
|
||||||
|
<false/>
|
||||||
|
<key>AvoidRuntimeDefrag</key>
|
||||||
|
<false/>
|
||||||
|
<key>DevirtualiseMmio</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableSingleUser</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableVariableWrite</key>
|
||||||
|
<false/>
|
||||||
|
<key>DiscardHibernateMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>EnableSafeModeSlide</key>
|
||||||
|
<false/>
|
||||||
|
<key>EnableWriteUnprotector</key>
|
||||||
|
<false/>
|
||||||
|
<key>ForceExitBootServices</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProtectMemoryRegions</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProtectSecureBoot</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProtectUefiServices</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProvideCustomSlide</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProvideMaxSlide</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>RebuildAppleMemoryMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>SetupVirtualMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>SignalAppleOS</key>
|
||||||
|
<false/>
|
||||||
|
<key>SyncRuntimePermissions</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>DeviceProperties</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<dict>
|
||||||
|
<key>#PciRoot(0x0)/Pci(0x1C,0x1)/Pci(0x0,0x0)</key>
|
||||||
|
<dict>
|
||||||
|
<key>device-id</key>
|
||||||
|
<data>ukMAAA==</data>
|
||||||
|
<key>compatible</key>
|
||||||
|
<string>pci14e4,43ba</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Delete</key>
|
||||||
|
<dict/>
|
||||||
|
</dict>
|
||||||
|
<key>Kernel</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Patching Engine</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/><!--Lilu-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>Lilu.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/Lilu</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>GPU Patching</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/><!--WEG-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>WhateverGreen.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/WhateverGreen</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Process Blocker</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--RestrictEvents-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>RestrictEvents.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/RestrictEvents</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>SSE Emulator</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AAAMouSSE-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AAAMouSSE.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/MouSSE</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>SSE Patcher</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--telemetrap-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>telemetrap.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/telemetrap</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>4331 Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirportBrcmFixup-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AirportBrcmFixup.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/AirportBrcmFixup</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>4331 Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirPortBrcmNIC_Injector-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string></string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Dual Socket Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AppleMCEReporterDisabler-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>AppleMCEReporterDisabler.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string></string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>BCM Ethernet patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--CatalinaBCM5701Ethernet-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>CatalinaBCM5701Ethernet.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/CatalinaBCM5701Ethernet</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Atheros Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--IO80211HighSierra-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211HighSierra.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/IO80211HighSierra</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Atheros Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirPortAtheros40-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211HighSierra.kext/Contents/PlugIns/AirPortAtheros40.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/AirPortAtheros40</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Broadcom Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--IO80211Mojave-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211Mojave.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/IO80211Mojave</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Broadcom Wifi Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--AirPortBrcm4331-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>IO80211Mojave.kext/Contents/PlugIns/AirPortBrcm4331.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/AirPortBrcm4331</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Marvel Ethernet Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--MarvelYukonEthernet-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>MarvelYukonEthernet.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/MarvelYukonEthernet</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Nvidia Ethernet Patch</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--nForceEthernet-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>19.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>nForceEthernet.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/nForceEthernet</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>VoodooHDA</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--VoodooHDA-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>18.0.0</string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>VoodooHDA.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string>Contents/MacOS/VoodooHDA</string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>USB Map</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--USBmap-->
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>BundlePath</key>
|
||||||
|
<string>USB-Map-SMBIOS.kext</string>
|
||||||
|
<key>ExecutablePath</key>
|
||||||
|
<string></string>
|
||||||
|
<key>PlistPath</key>
|
||||||
|
<string>Contents/Info.plist</string>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Block</key>
|
||||||
|
<array/>
|
||||||
|
<key>Emulate</key>
|
||||||
|
<dict>
|
||||||
|
<key>DummyPowerManagement</key>
|
||||||
|
<false/>
|
||||||
|
<key>Cpuid1Data</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Cpuid1Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string></string>
|
||||||
|
</dict>
|
||||||
|
<key>Force</key>
|
||||||
|
<array/>
|
||||||
|
<key>Patch</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Arch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>Base</key>
|
||||||
|
<string>_isSingleUser</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>Patch IOHIDFamily</string>
|
||||||
|
<key>Count</key>
|
||||||
|
<integer>1</integer>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<false/><!--IOHIDFamily-->
|
||||||
|
<key>Find</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Identifier</key>
|
||||||
|
<string>com.apple.iokit.IOHIDFamily</string>
|
||||||
|
<key>Limit</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Mask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>MaxKernel</key>
|
||||||
|
<string></string>
|
||||||
|
<key>MinKernel</key>
|
||||||
|
<string>20.0.0</string>
|
||||||
|
<key>Replace</key>
|
||||||
|
<data>uAEAAADD</data>
|
||||||
|
<key>ReplaceMask</key>
|
||||||
|
<data></data>
|
||||||
|
<key>Skip</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleCpuPmCfgLock</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleXcpmCfgLock</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleXcpmExtraMsrs</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleXcpmForceBoost</key>
|
||||||
|
<false/>
|
||||||
|
<key>CustomSMBIOSGuid</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableIoMapper</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisableLinkeditJettison</key>
|
||||||
|
<true/>
|
||||||
|
<key>DisableRtcChecksum</key>
|
||||||
|
<false/>
|
||||||
|
<key>ExtendBTFeatureFlags</key>
|
||||||
|
<false/>
|
||||||
|
<key>ExternalDiskIcons</key>
|
||||||
|
<false/>
|
||||||
|
<key>ForceSecureBootScheme</key>
|
||||||
|
<false/>
|
||||||
|
<key>IncreasePciBarSize</key>
|
||||||
|
<false/>
|
||||||
|
<key>LapicKernelPanic</key>
|
||||||
|
<false/>
|
||||||
|
<key>LegacyCommpage</key>
|
||||||
|
<false/>
|
||||||
|
<key>PanicNoKextDump</key>
|
||||||
|
<false/>
|
||||||
|
<key>PowerTimeoutKernelPanic</key>
|
||||||
|
<false/>
|
||||||
|
<key>ThirdPartyDrives</key>
|
||||||
|
<false/>
|
||||||
|
<key>XhciPortLimit</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>Scheme</key>
|
||||||
|
<dict>
|
||||||
|
<key>FuzzyMatch</key>
|
||||||
|
<true/>
|
||||||
|
<key>KernelArch</key>
|
||||||
|
<string>x86_64</string>
|
||||||
|
<key>KernelCache</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Misc</key>
|
||||||
|
<dict>
|
||||||
|
<key>BlessOverride</key>
|
||||||
|
<array/>
|
||||||
|
<key>Boot</key>
|
||||||
|
<dict>
|
||||||
|
<key>ConsoleAttributes</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>HibernateMode</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>HideAuxiliary</key>
|
||||||
|
<true/>
|
||||||
|
<key>PickerAttributes</key>
|
||||||
|
<integer>1</integer>
|
||||||
|
<key>PickerAudioAssist</key>
|
||||||
|
<false/>
|
||||||
|
<key>PickerMode</key>
|
||||||
|
<string>External</string>
|
||||||
|
<key>PickerVariant</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>PollAppleHotKeys</key>
|
||||||
|
<false/>
|
||||||
|
<key>ShowPicker</key>
|
||||||
|
<true/>
|
||||||
|
<key>TakeoffDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>Timeout</key>
|
||||||
|
<integer>5</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Debug</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleDebug</key>
|
||||||
|
<true/>
|
||||||
|
<key>ApplePanic</key>
|
||||||
|
<true/>
|
||||||
|
<key>DisableWatchDog</key>
|
||||||
|
<false/>
|
||||||
|
<key>DisplayDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>DisplayLevel</key>
|
||||||
|
<integer>2147483650</integer>
|
||||||
|
<key>SerialInit</key>
|
||||||
|
<false/>
|
||||||
|
<key>SysReport</key>
|
||||||
|
<false/>
|
||||||
|
<key>Target</key>
|
||||||
|
<integer>3</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Entries</key>
|
||||||
|
<array/>
|
||||||
|
<key>Security</key>
|
||||||
|
<dict>
|
||||||
|
<key>AllowNvramReset</key>
|
||||||
|
<true/>
|
||||||
|
<key>AllowSetDefault</key>
|
||||||
|
<true/>
|
||||||
|
<key>ApECID</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AuthRestart</key>
|
||||||
|
<false/>
|
||||||
|
<key>BootProtect</key>
|
||||||
|
<string>Bootstrap</string>
|
||||||
|
<key>BlacklistAppleUpdate</key>
|
||||||
|
<true/>
|
||||||
|
<key>DmgLoading</key>
|
||||||
|
<string>Signed</string>
|
||||||
|
<key>EnablePassword</key>
|
||||||
|
<false/>
|
||||||
|
<key>ExposeSensitiveData</key>
|
||||||
|
<integer>15</integer>
|
||||||
|
<key>HaltLevel</key>
|
||||||
|
<integer>2147483648</integer>
|
||||||
|
<key>PasswordHash</key>
|
||||||
|
<data></data>
|
||||||
|
<key>PasswordSalt</key>
|
||||||
|
<data></data>
|
||||||
|
<key>ScanPolicy</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>SecureBootModel</key>
|
||||||
|
<string>x86legacy</string>
|
||||||
|
<key>Vault</key>
|
||||||
|
<string>Optional</string>
|
||||||
|
</dict>
|
||||||
|
<key>Tools</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Arguments</key>
|
||||||
|
<string></string>
|
||||||
|
<key>Auxiliary</key>
|
||||||
|
<true/>
|
||||||
|
<key>Name</key>
|
||||||
|
<string>BootKicker.efi</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>BootKicker.efi</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Path</key>
|
||||||
|
<string>BootKicker.efi</string>
|
||||||
|
<key>RealPath</key>
|
||||||
|
<false/>
|
||||||
|
<key>TextMode</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>Arguments</key>
|
||||||
|
<string></string>
|
||||||
|
<key>Auxiliary</key>
|
||||||
|
<false/>
|
||||||
|
<key>Name</key>
|
||||||
|
<string>OpenShell.efi</string>
|
||||||
|
<key>Comment</key>
|
||||||
|
<string>OpenShell.efi</string>
|
||||||
|
<key>Enabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>Path</key>
|
||||||
|
<string>OpenShell.efi</string>
|
||||||
|
<key>RealPath</key>
|
||||||
|
<false/>
|
||||||
|
<key>TextMode</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>NVRAM</key>
|
||||||
|
<dict>
|
||||||
|
<key>Add</key>
|
||||||
|
<dict>
|
||||||
|
<key>4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14</key>
|
||||||
|
<dict>
|
||||||
|
<key>DefaultBackgroundColor</key>
|
||||||
|
<data>AAAAAA==</data>
|
||||||
|
<key>UIScale</key>
|
||||||
|
<data>AQ==</data>
|
||||||
|
</dict>
|
||||||
|
<key>4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102</key>
|
||||||
|
<dict>
|
||||||
|
<key>rtc-blacklist</key>
|
||||||
|
<data></data>
|
||||||
|
</dict>
|
||||||
|
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
|
||||||
|
<dict>
|
||||||
|
<key>SystemAudioVolume</key>
|
||||||
|
<data>Rg==</data>
|
||||||
|
<key>boot-args</key>
|
||||||
|
<string>-v keepsyms=1 debug=0x100</string>
|
||||||
|
<key>run-efi-updater</key>
|
||||||
|
<string>No</string>
|
||||||
|
<key>csr-active-config</key>
|
||||||
|
<data>AAAAAA==</data>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>Delete</key>
|
||||||
|
<dict>
|
||||||
|
<key>4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14</key>
|
||||||
|
<array>
|
||||||
|
<string>UIScale</string>
|
||||||
|
<string>DefaultBackgroundColor</string>
|
||||||
|
</array>
|
||||||
|
<key>4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102</key>
|
||||||
|
<array>
|
||||||
|
<string>rtc-blacklist</string>
|
||||||
|
</array>
|
||||||
|
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
|
||||||
|
<array>
|
||||||
|
<string>boot-args</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>LegacyEnable</key>
|
||||||
|
<false/>
|
||||||
|
<key>LegacyOverwrite</key>
|
||||||
|
<false/>
|
||||||
|
<key>LegacySchema</key>
|
||||||
|
<dict>
|
||||||
|
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
|
||||||
|
<array>
|
||||||
|
<string>EFILoginHiDPI</string>
|
||||||
|
<string>EFIBluetoothDelay</string>
|
||||||
|
<string>LocationServicesEnabled</string>
|
||||||
|
<string>SystemAudioVolume</string>
|
||||||
|
<string>SystemAudioVolumeDB</string>
|
||||||
|
<string>SystemAudioVolumeSaved</string>
|
||||||
|
<string>bluetoothActiveControllerInfo</string>
|
||||||
|
<string>bluetoothInternalControllerInfo</string>
|
||||||
|
<string>flagstate</string>
|
||||||
|
<string>fmm-computer-name</string>
|
||||||
|
<string>nvda_drv</string>
|
||||||
|
<string>prev-lang:kbd</string>
|
||||||
|
</array>
|
||||||
|
<key>8BE4DF61-93CA-11D2-AA0D-00E098032B8C</key>
|
||||||
|
<array>
|
||||||
|
<string>Boot0080</string>
|
||||||
|
<string>Boot0081</string>
|
||||||
|
<string>Boot0082</string>
|
||||||
|
<string>BootNext</string>
|
||||||
|
<string>BootOrder</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>WriteFlash</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>PlatformInfo</key>
|
||||||
|
<dict>
|
||||||
|
<key>Automatic</key>
|
||||||
|
<true/>
|
||||||
|
<key>CustomMemory</key>
|
||||||
|
<false/>
|
||||||
|
<key>Generic</key>
|
||||||
|
<dict>
|
||||||
|
<key>AdviseWindows</key>
|
||||||
|
<false/>
|
||||||
|
<key>SystemMemoryStatus</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>MaxBIOSVersion</key>
|
||||||
|
<true/>
|
||||||
|
<key>MLB</key>
|
||||||
|
<string>M0000000000000001</string>
|
||||||
|
<key>ProcessorType</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>ROM</key>
|
||||||
|
<data>ESIzRFVm</data>
|
||||||
|
<key>SpoofVendor</key>
|
||||||
|
<true/>
|
||||||
|
<key>SystemProductName</key>
|
||||||
|
<string>iMac19,1</string>
|
||||||
|
<key>SystemSerialNumber</key>
|
||||||
|
<string>W00000000001</string>
|
||||||
|
<key>SystemUUID</key>
|
||||||
|
<string>00000000-0000-0000-0000-000000000000</string>
|
||||||
|
</dict>
|
||||||
|
<key>UpdateDataHub</key>
|
||||||
|
<true/>
|
||||||
|
<key>UpdateNVRAM</key>
|
||||||
|
<true/>
|
||||||
|
<key>UpdateSMBIOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>UpdateSMBIOSMode</key>
|
||||||
|
<string>Create</string>
|
||||||
|
</dict>
|
||||||
|
<key>UEFI</key>
|
||||||
|
<dict>
|
||||||
|
<key>APFS</key>
|
||||||
|
<dict>
|
||||||
|
<key>EnableJumpstart</key>
|
||||||
|
<true/>
|
||||||
|
<key>GlobalConnect</key>
|
||||||
|
<false/>
|
||||||
|
<key>HideVerbose</key>
|
||||||
|
<true/>
|
||||||
|
<key>JumpstartHotPlug</key>
|
||||||
|
<false/>
|
||||||
|
<key>MinDate</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>MinVersion</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Audio</key>
|
||||||
|
<dict>
|
||||||
|
<key>AudioCodec</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AudioDevice</key>
|
||||||
|
<string>PciRoot(0x0)/Pci(0x1b,0x0)</string>
|
||||||
|
<key>AudioOut</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AudioSupport</key>
|
||||||
|
<false/>
|
||||||
|
<key>MinimumVolume</key>
|
||||||
|
<integer>20</integer>
|
||||||
|
<key>PlayChime</key>
|
||||||
|
<string>Disabled</string>
|
||||||
|
<key>SetupDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>VolumeAmplifier</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
</dict>
|
||||||
|
<key>ConnectDrivers</key>
|
||||||
|
<true/>
|
||||||
|
<key>Drivers</key>
|
||||||
|
<array>
|
||||||
|
<string>#NvmExpressDxe.efi</string>
|
||||||
|
<string>#OpenCanopy.efi</string>
|
||||||
|
<string>OpenRuntime.efi</string>
|
||||||
|
</array>
|
||||||
|
<key>Input</key>
|
||||||
|
<dict>
|
||||||
|
<key>KeyFiltering</key>
|
||||||
|
<false/>
|
||||||
|
<key>KeyForgetThreshold</key>
|
||||||
|
<integer>5</integer>
|
||||||
|
<key>KeyMergeThreshold</key>
|
||||||
|
<integer>2</integer>
|
||||||
|
<key>KeySupport</key>
|
||||||
|
<false/>
|
||||||
|
<key>KeySupportMode</key>
|
||||||
|
<string>Auto</string>
|
||||||
|
<key>KeySwap</key>
|
||||||
|
<false/>
|
||||||
|
<key>PointerSupport</key>
|
||||||
|
<false/>
|
||||||
|
<key>PointerSupportMode</key>
|
||||||
|
<string>ASUS</string>
|
||||||
|
<key>TimerResolution</key>
|
||||||
|
<integer>50000</integer>
|
||||||
|
</dict>
|
||||||
|
<key>Output</key>
|
||||||
|
<dict>
|
||||||
|
<key>ClearScreenOnModeSwitch</key>
|
||||||
|
<false/>
|
||||||
|
<key>ConsoleMode</key>
|
||||||
|
<string></string>
|
||||||
|
<key>DirectGopRendering</key>
|
||||||
|
<false/>
|
||||||
|
<key>ForceResolution</key>
|
||||||
|
<false/>
|
||||||
|
<key>IgnoreTextInGraphics</key>
|
||||||
|
<false/>
|
||||||
|
<key>ProvideConsoleGop</key>
|
||||||
|
<true/>
|
||||||
|
<key>ReconnectOnResChange</key>
|
||||||
|
<false/>
|
||||||
|
<key>ReplaceTabWithSpace</key>
|
||||||
|
<false/>
|
||||||
|
<key>Resolution</key>
|
||||||
|
<string>Max</string>
|
||||||
|
<key>SanitiseClearScreen</key>
|
||||||
|
<false/>
|
||||||
|
<key>TextRenderer</key>
|
||||||
|
<string>BuiltinGraphics</string>
|
||||||
|
<key>UgaPassThrough</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>ProtocolOverrides</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleAudio</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleBootPolicy</key>
|
||||||
|
<true/>
|
||||||
|
<key>AppleDebugLog</key>
|
||||||
|
<true/>
|
||||||
|
<key>AppleEvent</key>
|
||||||
|
<true/>
|
||||||
|
<key>AppleFramebufferInfo</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleImageConversion</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleImg4Verification</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleKeyMap</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleRtcRam</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleSecureBoot</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleSmcIo</key>
|
||||||
|
<false/>
|
||||||
|
<key>AppleUserInterfaceTheme</key>
|
||||||
|
<false/>
|
||||||
|
<key>DataHub</key>
|
||||||
|
<false/>
|
||||||
|
<key>DeviceProperties</key>
|
||||||
|
<false/>
|
||||||
|
<key>FirmwareVolume</key>
|
||||||
|
<false/>
|
||||||
|
<key>HashServices</key>
|
||||||
|
<false/>
|
||||||
|
<key>OSInfo</key>
|
||||||
|
<false/>
|
||||||
|
<key>UnicodeCollation</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>Quirks</key>
|
||||||
|
<dict>
|
||||||
|
<key>ExitBootServicesDelay</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>IgnoreInvalidFlexRatio</key>
|
||||||
|
<false/>
|
||||||
|
<key>ReleaseUsbOwnership</key>
|
||||||
|
<false/>
|
||||||
|
<key>RequestBootVarRouting</key>
|
||||||
|
<true/>
|
||||||
|
<key>TscSyncTimeout</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>UnblockFsConnect</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
<key>ReservedMemory</key>
|
||||||
|
<array/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
BIN
payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.2.zip
Normal file
BIN
payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.2.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.0.zip
Normal file
BIN
payloads/Kexts/Acidanthera/Lilu-v1.5.0.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.0.0.zip
Normal file
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.0.0.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/WhateverGreen-v1.4.6.zip
Normal file
BIN
payloads/Kexts/Acidanthera/WhateverGreen-v1.4.6.zip
Normal file
Binary file not shown.
BIN
payloads/OpenCore/OpenCore-v0.6.5.zip
Normal file
BIN
payloads/OpenCore/OpenCore-v0.6.5.zip
Normal file
Binary file not shown.
BIN
payloads/OpenCore/OpenCore-v0.6.6.zip
Normal file
BIN
payloads/OpenCore/OpenCore-v0.6.6.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user