├── .flake8 ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ ├── build-app-wxpython.yml │ ├── build-site.yml │ ├── validate-external.yml │ └── validate.yml ├── .gitignore ├── .pylintrc ├── Build-Project.command ├── CHANGELOG.md ├── LICENSE.txt ├── OpenCore-Patcher-GUI.command ├── OpenCore-Patcher-GUI.spec ├── PRIVACY.md ├── README.md ├── SOURCE.md ├── ci_tooling ├── build_modules │ ├── application.py │ ├── disk_images.py │ ├── package.py │ ├── package_scripts.py │ └── sign_notarize.py ├── entitlements │ └── entitlements.plist ├── installer_backups │ └── macOS_Installer_Backup.command ├── pkg_assets │ ├── PkgBackground-AutoPkg.png │ ├── PkgBackground-Installer.png │ ├── PkgBackground-Source-File.afdesign │ └── PkgBackground-Uninstaller.png └── privileged_helper_tool │ ├── Makefile │ ├── README.md │ ├── com.dortania.opencore-legacy-patcher.privileged-helper │ ├── install.sh │ └── main.m ├── docs ├── .markdownlint.json ├── .markdownlintignore ├── .vuepress │ ├── config.js │ ├── public │ │ ├── favicon.ico │ │ └── homepage.png │ └── styles │ │ ├── index.styl │ │ └── palette.styl ├── BOOT.md ├── BUILD.md ├── DEBUG.md ├── DONATE.md ├── FAQ.md ├── HOW.md ├── ICNS.md ├── INSTALLER.md ├── ISSUES-HOLD.md ├── Icon-Composer-10.11.zip ├── Icon-Composer-10.6.zip ├── LICENSE.md ├── MODELS.md ├── MONTEREY-DROP.md ├── PATCHEXPLAIN.md ├── POST-INSTALL.md ├── PROCESS.md ├── README.md ├── ResXtreme.zip ├── SEQUOIA-DROP.md ├── SONOMA-DROP.md ├── START.md ├── TERMS.md ├── TIMEMACHINE.md ├── TROUBLESHOOT-APP.md ├── TROUBLESHOOT-HARDWARE.md ├── TROUBLESHOOT-MISC.md ├── TROUBLESHOOT-NONMETAL.md ├── UNINSTALL.md ├── UNIVERSALCONTROL.md ├── UPDATE.md ├── VENTURA-DROP.md ├── WINDOWS.md ├── images │ ├── BOOTCAMP-1.png │ ├── BOOTCAMP-2.png │ ├── DISM-1.png │ ├── DISM-2.png │ ├── DISM-3.png │ ├── DISM-4.png │ ├── DISM-5.png │ ├── DISM-6.png │ ├── DISM-7.png │ ├── DISM-8.png │ ├── DISM-9.png │ ├── Error-No-Permission-To-Save.png │ ├── HD3000-Default-Colors.png │ ├── HD3000-Display-Colors.png │ ├── Hash-Mismatch.png │ ├── OC-Build.png │ ├── OC-Patcher.png │ ├── OC-Picker-External.png │ ├── OC-Picker-Internal.png │ ├── OC-Picker-SD.png │ ├── OC-Picker-SSD.png │ ├── OCLP-051-Initial-Support.png │ ├── OCLP-060-Initial-Support.png │ ├── OCLP-100-Initial-Support.png │ ├── OCLP-200-Initial-Support.png │ ├── OCLP-App-Allow-Native-Models.png │ ├── OCLP-GUI-Build-Finished.png │ ├── OCLP-GUI-Build-Start.png │ ├── OCLP-GUI-Create-Installer-Menu.png │ ├── OCLP-GUI-EFI-Finished-Install.png │ ├── OCLP-GUI-EFI-Needs-Permission.png │ ├── OCLP-GUI-EFI-Select-Disk.png │ ├── OCLP-GUI-EFI-Select-Partition.png │ ├── OCLP-GUI-Installer-Download-Catalog.png │ ├── OCLP-GUI-Installer-Download-Finished.png │ ├── OCLP-GUI-Installer-Download-Listed-Products.png │ ├── OCLP-GUI-Installer-Download-Progress.png │ ├── OCLP-GUI-Installer-Download-Unsupported.png │ ├── OCLP-GUI-Installer-Finished-Script.png │ ├── OCLP-GUI-Installer-Flashing-Process.png │ ├── OCLP-GUI-Installer-Format-USB.png │ ├── OCLP-GUI-Installer-Needs-Installing.png │ ├── OCLP-GUI-Installer-Select-Local-Installer.png │ ├── OCLP-GUI-Installer-Sucess-Prompt.png │ ├── OCLP-GUI-Main-Menu.png │ ├── OCLP-GUI-Root-Patch-Finished.png │ ├── OCLP-GUI-Root-Patch-Status.png │ ├── OCLP-GUI-Root-Patch.png │ ├── OCLP-GUI-SMBIOS-Minimal.png │ ├── OCLP-GUI-Settings-Beta-Blur.png │ ├── OCLP-GUI-Settings-SIP-Disabled.png │ ├── OCLP-GUI-Settings-SIP-Enabled.png │ ├── OCLP-GUI-Settings-SIP-Root-Patch.png │ ├── OCLP-GUI-Settings-ShowPicker.png │ ├── OCLP-GUI-root-patch-update.png │ ├── OCLP-SMBIOS-Allow-Native-Spoof.png │ ├── OCLP-smbios-settings.png │ ├── OCLP_Booted_Version.png │ ├── OCLP_Disable_mediaanalysisd_Setting.png │ ├── OCLP_Failed_to_find_applicable_disks.png │ ├── OCLP_FeatureUnlock_Setting.png │ ├── OCLP_Root_Patch_Version.png │ ├── OCLP_Update_Available.png │ ├── OCLP_Update_Successful.png │ ├── TimeMachine-Transfer-Uncheck.png │ ├── UC-enable-1.png │ ├── UC-enable-2.png │ ├── Unflashed-Boot-1.png │ ├── Unflashed-Boot-2.png │ ├── Unflashed-Boot-3.png │ ├── background-moved.png │ ├── build-dist.png │ ├── efi-boot.png │ ├── graphics-download.png │ ├── graphics-open.png │ ├── icns-sl-save.png │ ├── icnspack-done.png │ ├── icnspack-folder.png │ ├── icon-SL.png │ ├── logs-efi.png │ ├── mac-icns-drive.png │ ├── macos-monterey.png │ ├── macos-sequoia.png │ ├── macos-sequoia.png.png │ ├── mountefi.png │ ├── oc-boot.png │ ├── oc-explained.png │ ├── oc-windows-done.png │ ├── oc-windows.png │ ├── ocdebugimage.png │ ├── oclp-stuck-firstreboot.png │ ├── oclp-version.png │ ├── rsync-progess.png │ ├── sonoma.png │ ├── usb11-chart.png │ ├── ventura.png │ ├── ventura_uc1.png │ ├── ventura_uc2.png │ ├── windows-bootcamp-error.png │ ├── windows-bootcamp-msi.png │ ├── windows-iso.png │ ├── windows-mbr-format.png │ ├── windows-partition-1.png │ ├── windows-partition-2.png │ ├── windows-rsync-done.png │ ├── windows-rsync.png │ ├── wipe-disk.png │ └── wipe-volume.png ├── package.json ├── scripts │ ├── linkcheck.py │ └── sortDict.js └── yarn.lock ├── opencore_legacy_patcher ├── __init__.py ├── application_entry.py ├── constants.py ├── datasets │ ├── amfi_data.py │ ├── bluetooth_data.py │ ├── cpu_data.py │ ├── css_data.py │ ├── example_data.py │ ├── model_array.py │ ├── os_data.py │ ├── pci_data.py │ ├── sip_data.py │ ├── smbios_data.py │ ├── usb_data.py │ └── video_bios_data.py ├── detections │ ├── amfi_detect.py │ ├── device_probe.py │ ├── ioreg.py │ └── os_probe.py ├── efi_builder │ ├── bluetooth.py │ ├── build.py │ ├── firmware.py │ ├── graphics_audio.py │ ├── misc.py │ ├── networking │ │ ├── wired.py │ │ └── wireless.py │ ├── security.py │ ├── smbios.py │ ├── storage.py │ └── support.py ├── sucatalog │ ├── __init__.py │ ├── constants.py │ ├── products.py │ ├── products_appledb.py │ └── url.py ├── support │ ├── analytics_handler.py │ ├── arguments.py │ ├── commit_info.py │ ├── defaults.py │ ├── generate_smbios.py │ ├── global_settings.py │ ├── install.py │ ├── integrity_verification.py │ ├── kdk_handler.py │ ├── logging_handler.py │ ├── macos_installer_handler.py │ ├── metallib_handler.py │ ├── network_handler.py │ ├── reroute_payloads.py │ ├── subprocess_wrapper.py │ ├── updates.py │ ├── utilities.py │ └── validation.py ├── sys_patch │ ├── auto_patcher │ │ ├── __init__.py │ │ ├── install.py │ │ └── start.py │ ├── kernelcache │ │ ├── __init__.py │ │ ├── base │ │ │ └── cache.py │ │ ├── kernel_collection │ │ │ ├── auxiliary.py │ │ │ ├── boot_system.py │ │ │ └── support.py │ │ ├── mkext │ │ │ └── mkext.py │ │ ├── prelinked │ │ │ └── prelinked.py │ │ └── rebuild.py │ ├── mount │ │ ├── __init__.py │ │ ├── mount.py │ │ └── snapshot.py │ ├── patchsets │ │ ├── __init__.py │ │ ├── base.py │ │ ├── detect.py │ │ ├── hardware │ │ │ ├── base.py │ │ │ ├── graphics │ │ │ │ ├── amd_legacy_gcn.py │ │ │ │ ├── amd_navi.py │ │ │ │ ├── amd_polaris.py │ │ │ │ ├── amd_terascale_1.py │ │ │ │ ├── amd_terascale_2.py │ │ │ │ ├── amd_vega.py │ │ │ │ ├── intel_broadwell.py │ │ │ │ ├── intel_haswell.py │ │ │ │ ├── intel_iron_lake.py │ │ │ │ ├── intel_ivy_bridge.py │ │ │ │ ├── intel_sandy_bridge.py │ │ │ │ ├── intel_skylake.py │ │ │ │ ├── nvidia_kepler.py │ │ │ │ ├── nvidia_tesla.py │ │ │ │ └── nvidia_webdriver.py │ │ │ ├── misc │ │ │ │ ├── cpu_missing_avx.py │ │ │ │ ├── display_backlight.py │ │ │ │ ├── gmux.py │ │ │ │ ├── keyboard_backlight.py │ │ │ │ ├── legacy_audio.py │ │ │ │ ├── pcie_webcam.py │ │ │ │ ├── t1_security.py │ │ │ │ └── usb11.py │ │ │ └── networking │ │ │ │ ├── legacy_wireless.py │ │ │ │ └── modern_wireless.py │ │ └── shared_patches │ │ │ ├── amd_opencl.py │ │ │ ├── amd_terascale.py │ │ │ ├── base.py │ │ │ ├── big_sur_gva.py │ │ │ ├── big_sur_opencl.py │ │ │ ├── high_sierra_gva.py │ │ │ ├── metal_3802.py │ │ │ ├── monterey_gva.py │ │ │ ├── monterey_opencl.py │ │ │ ├── monterey_webkit.py │ │ │ ├── non_metal.py │ │ │ ├── non_metal_coredisplay.py │ │ │ ├── non_metal_enforcement.py │ │ │ └── non_metal_ioaccel.py │ ├── sys_patch.py │ ├── sys_patch_helpers.py │ └── utilities │ │ ├── __init__.py │ │ ├── dmg_mount.py │ │ ├── files.py │ │ └── kdk_merge.py ├── volume │ ├── __init__.py │ ├── copy.py │ └── properties.py └── wx_gui │ ├── gui_about.py │ ├── gui_build.py │ ├── gui_cache_os_update.py │ ├── gui_download.py │ ├── gui_entry.py │ ├── gui_help.py │ ├── gui_install_oc.py │ ├── gui_macos_installer_download.py │ ├── gui_macos_installer_flash.py │ ├── gui_main_menu.py │ ├── gui_settings.py │ ├── gui_support.py │ ├── gui_sys_patch_display.py │ ├── gui_sys_patch_start.py │ └── gui_update.py ├── payloads ├── ACPI │ ├── SSDT-CPBG.aml │ ├── SSDT-DGPU.aml │ ├── SSDT-PCI.aml │ └── Source │ │ ├── SSDT-CPBG.dsl │ │ ├── SSDT-DGPU.dsl │ │ └── SSDT-PCI.dsl ├── Config │ └── config.plist ├── Drivers │ ├── AMDGOP.efi │ ├── ExFatDxeLegacy.efi │ ├── FixPCIeLinkRate.efi │ ├── NVGOP_GK.efi │ ├── NvmExpressDxe.efi │ ├── UsbBusDxe.efi │ ├── XhciDxe.efi │ └── diags.efi ├── Icon │ ├── AppIcons │ │ ├── BigSur.icns │ │ ├── Generic.icns │ │ ├── Monterey.icns │ │ ├── OC-Build.icns │ │ ├── OC-Installer.icns │ │ ├── OC-Patch.icns │ │ ├── OC-Patcher.icns │ │ ├── OC-Support.icns │ │ ├── Sequoia.icns │ │ ├── Sonoma.icns │ │ └── Ventura.icns │ ├── DriveIcons │ │ ├── External │ │ │ └── .VolumeIcon.icns │ │ ├── Internal │ │ │ └── .VolumeIcon.icns │ │ ├── SD-Card │ │ │ └── .VolumeIcon.icns │ │ └── SSD │ │ │ └── .VolumeIcon.icns │ └── Resources.zip ├── Kexts │ ├── Acidanthera │ │ ├── AMFIPass-v1.4.1-RELEASE.zip │ │ ├── AirportBrcmFixup-v2.1.9-DEBUG.zip │ │ ├── AirportBrcmFixup-v2.1.9-RELEASE.zip │ │ ├── AppleALC-v1.6.3-DEBUG.zip │ │ ├── AppleALC-v1.6.3-RELEASE.zip │ │ ├── AutoPkgInstaller-v1.0.4-DEBUG.zip │ │ ├── AutoPkgInstaller-v1.0.4-RELEASE.zip │ │ ├── BlueToolFixup-v2.6.9-DEBUG.zip │ │ ├── BlueToolFixup-v2.6.9-RELEASE.zip │ │ ├── CPUFriend-v1.2.9-DEBUG.zip │ │ ├── CPUFriend-v1.2.9-RELEASE.zip │ │ ├── CSLVFixup-v2.6.1.zip │ │ ├── CryptexFixup-v1.0.4-DEBUG.zip │ │ ├── CryptexFixup-v1.0.4-RELEASE.zip │ │ ├── DebugEnhancer-v1.1.0-DEBUG.zip │ │ ├── DebugEnhancer-v1.1.0-RELEASE.zip │ │ ├── EFICheckDisabler.md │ │ ├── EFICheckDisabler.zip │ │ ├── FeatureUnlock-v1.1.7-DEBUG.zip │ │ ├── FeatureUnlock-v1.1.7-RELEASE.zip │ │ ├── Lilu-v1.7.0-DEBUG.zip │ │ ├── Lilu-v1.7.0-RELEASE.zip │ │ ├── NVMeFix-v1.1.2-DEBUG.zip │ │ ├── NVMeFix-v1.1.2-RELEASE.zip │ │ ├── RSRHelper-v1.0.2-DEBUG.zip │ │ ├── RSRHelper-v1.0.2-RELEASE.zip │ │ ├── RestrictEvents-v1.1.5-DEBUG.zip │ │ ├── RestrictEvents-v1.1.5-RELEASE.zip │ │ ├── WhateverGreen-Navi-Backlight.md │ │ ├── WhateverGreen-Navi-Backlight.patch │ │ ├── WhateverGreen-v1.6.9-DEBUG.zip │ │ ├── WhateverGreen-v1.6.9-Navi-DEBUG.zip │ │ ├── WhateverGreen-v1.6.9-Navi-RELEASE.zip │ │ └── WhateverGreen-v1.6.9-RELEASE.zip │ ├── Ethernet │ │ ├── AppleEthernetAbuantiaAqtion-v1.1.0.zip │ │ ├── AppleIntel8254XEthernet-v1.0.0.zip │ │ ├── CatalinaBCM5701Ethernet-v1.0.2.zip │ │ ├── CatalinaIntelI210Ethernet-v1.0.0.zip │ │ ├── Intel82574L-v1.0.0.zip │ │ ├── MarvelYukonEthernet-v1.0.1.zip │ │ └── nForceEthernet-v1.0.1.zip │ ├── FireWire │ │ ├── IOFireWireFamily-v1.0.1.zip │ │ ├── IOFireWireSBP2-v1.0.1.zip │ │ └── IOFireWireSerialBusProtocolTransport-v1.0.1.zip │ ├── Misc │ │ ├── AMDGPUWakeHandler-v1.0.0.zip │ │ ├── ASPP-Override-v1.0.1.zip │ │ ├── AppleCameraInterface-v1.0.0.zip │ │ ├── AppleCredentialManager-v1.0.0.zip │ │ ├── AppleHSSPIHIDDriver-v1.0.0.zip │ │ ├── AppleHSSPISupport-v1.0.0.zip │ │ ├── AppleIntelCPUPowerManagement-v1.0.0.zip │ │ ├── AppleIntelCPUPowerManagementClient-v1.0.0.zip │ │ ├── AppleIntelPIIXATA-v1.0.1.zip │ │ ├── AppleKeyStore-v1.1.0.zip │ │ ├── AppleMCEReporterDisabler-v1.0.0.zip │ │ ├── AppleRAIDCard-v1.0.0.zip │ │ ├── AppleSSE-v1.1.0.zip │ │ ├── AppleTopCaseInjector-v1.0.0.zip │ │ ├── AppleUSBMultitouch-v1.0.0.zip │ │ ├── AppleUSBTopCase-v1.0.0.zip │ │ ├── AppleUSBTrackpad-v1.0.1.zip │ │ ├── BacklightInjector-v1.1.0.zip │ │ ├── BacklightInjectorA-v1.0.0.zip │ │ ├── BigSurSDXC-v1.0.0.zip │ │ ├── Bluetooth-Spoof-v1.0.0.zip │ │ ├── ECM-Override-v1.0.0.zip │ │ ├── IOS3XeFamily-v1.0.0.zip │ │ ├── Innie-v1.3.1-DEBUG.zip │ │ ├── Innie-v1.3.1-RELEASE.zip │ │ ├── KDKlessWorkaround-v1.0.0-DEBUG.zip │ │ ├── KDKlessWorkaround-v1.0.0-RELEASE.zip │ │ ├── KernelRelayHost-v1.0.0.zip │ │ ├── LegacyKeyboardInjector-v1.0.0.zip │ │ ├── LegacyUSBVideoSupport-v1.0.0.zip │ │ ├── MonteAHCIPort-v1.0.0.zip │ │ ├── NoAVXFSCompressionTypeZlib-AVXpel-v12.6.zip │ │ ├── NoAVXFSCompressionTypeZlib-v12.3.1.zip │ │ ├── SMC-Spoof-v1.0.0.zip │ │ ├── SimpleMSR-v1.0.0.zip │ │ └── corecrypto_T1-v1.0.1.zip │ ├── Plists │ │ ├── AppleGraphicsDevicePolicy │ │ │ ├── AppleGraphicsDevicePolicy.plist │ │ │ └── Info.plist │ │ ├── AppleGraphicsPowerManagement │ │ │ ├── AppleGraphicsPowerManagement.plist │ │ │ └── Info.plist │ │ ├── AppleMuxControl │ │ │ ├── AppleMuxControl.plist │ │ │ └── Info.plist │ │ ├── AppleUSBMaps │ │ │ └── Info.plist │ │ └── PlatformPlugin │ │ │ ├── MacBook10,1 │ │ │ ├── Info.plist │ │ │ └── Mac-EE2EBD4B90B839A8.plist │ │ │ ├── MacBook5,1 │ │ │ ├── Info.plist │ │ │ └── MacBook5_1.plist │ │ │ ├── MacBook5,2 │ │ │ ├── Info.plist │ │ │ └── MacBook5_2.plist │ │ │ ├── MacBook6,1 │ │ │ ├── Info.plist │ │ │ └── MacBook6_1.plist │ │ │ ├── MacBook7,1 │ │ │ ├── Info.plist │ │ │ └── MacBook7_1.plist │ │ │ ├── MacBook8,1 │ │ │ ├── Info.plist │ │ │ └── Mac-BE0E8AC46FE800CC.plist │ │ │ ├── MacBook9,1 │ │ │ ├── Info.plist │ │ │ └── Mac-9AE82516C7C6B903.plist │ │ │ ├── MacBookAir2,1 │ │ │ ├── Info.plist │ │ │ └── MacBookAir2_1.plist │ │ │ ├── MacBookAir3,1 │ │ │ ├── Info.plist │ │ │ └── MacBookAir3_1.plist │ │ │ ├── MacBookAir3,2 │ │ │ ├── Info.plist │ │ │ └── MacBookAir3_2.plist │ │ │ ├── MacBookAir4,1 │ │ │ ├── Info.plist │ │ │ └── MacBookAir4_1.plist │ │ │ ├── MacBookAir4,2 │ │ │ ├── Info.plist │ │ │ └── MacBookAir4_2.plist │ │ │ ├── MacBookAir5,1 │ │ │ ├── Info.plist │ │ │ └── MacBookAir5,1.plist │ │ │ ├── MacBookAir5,2 │ │ │ ├── Info.plist │ │ │ └── MacBookAir5,2.plist │ │ │ ├── MacBookAir6,1 │ │ │ ├── Info.plist │ │ │ └── Mac-35C1E88140C3E6CF.plist │ │ │ ├── MacBookAir6,2 │ │ │ ├── Info.plist │ │ │ └── Mac-7DF21CB3ED6977E5.plist │ │ │ ├── MacBookAir7,1 │ │ │ ├── Info.plist │ │ │ └── Mac-9F18E312C5C2BF0B.plist │ │ │ ├── MacBookAir7,2 │ │ │ ├── Info.plist │ │ │ └── Mac-937CB26E2E02BB01.plist │ │ │ ├── MacBookAir8,1 │ │ │ ├── Info.plist │ │ │ └── Mac-112818653D3AABFC.plist │ │ │ ├── MacBookAir8,2 │ │ │ ├── Info.plist │ │ │ └── Mac-226CB3C6A851A671.plist │ │ │ ├── MacBookAir9,1 │ │ │ ├── Info.plist │ │ │ └── Mac-0CFF9C7C2B63DF8D.plist │ │ │ ├── MacBookPro10,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro10,1.plist │ │ │ ├── MacBookPro10,2 │ │ │ ├── Info.plist │ │ │ └── MacBookPro10,2.plist │ │ │ ├── MacBookPro11,1 │ │ │ ├── Info.plist │ │ │ └── Mac-189A3D4F975D5FFC.plist │ │ │ ├── MacBookPro11,2 │ │ │ ├── Info.plist │ │ │ └── Mac-3CBD00234E554E41.plist │ │ │ ├── MacBookPro11,3 │ │ │ ├── Info.plist │ │ │ └── Mac-2BD1B31983FE1663.plist │ │ │ ├── MacBookPro11,4 │ │ │ ├── Info.plist │ │ │ └── Mac-06F11FD93F0323C5.plist │ │ │ ├── MacBookPro11,5 │ │ │ ├── Info.plist │ │ │ └── Mac-06F11F11946D27C5.plist │ │ │ ├── MacBookPro12,1 │ │ │ ├── Info.plist │ │ │ └── Mac-E43C1C25D4880AD6.plist │ │ │ ├── MacBookPro13,1 │ │ │ ├── Info.plist │ │ │ └── Mac-473D31EABEB93F9B.plist │ │ │ ├── MacBookPro13,2 │ │ │ ├── Info.plist │ │ │ └── Mac-66E35819EE2D0D05.plist │ │ │ ├── MacBookPro13,3 │ │ │ ├── Info.plist │ │ │ └── Mac-A5C67F76ED83108C.plist │ │ │ ├── MacBookPro14,1 │ │ │ ├── Info.plist │ │ │ └── Mac-B4831CEBD52A0C4C.plist │ │ │ ├── MacBookPro14,2 │ │ │ ├── Info.plist │ │ │ └── Mac-CAD6701F7CEA0921.plist │ │ │ ├── MacBookPro14,3 │ │ │ ├── Info.plist │ │ │ └── Mac-551B86E5744E2388.plist │ │ │ ├── MacBookPro15,1 │ │ │ ├── Info.plist │ │ │ └── Mac-937A206F2EE63C01.plist │ │ │ ├── MacBookPro15,2 │ │ │ ├── Info.plist │ │ │ └── Mac-827FB448E656EC26.plist │ │ │ ├── MacBookPro15,3 │ │ │ ├── Info.plist │ │ │ └── Mac-1E7E29AD0135F9BC.plist │ │ │ ├── MacBookPro15,4 │ │ │ ├── Info.plist │ │ │ └── Mac-53FDB3D8DB8CA971.plist │ │ │ ├── MacBookPro16,1 │ │ │ ├── Info.plist │ │ │ └── Mac-E1008331FDC96864.plist │ │ │ ├── MacBookPro16,2 │ │ │ ├── Info.plist │ │ │ └── Mac-5F9802EFE386AA28.plist │ │ │ ├── MacBookPro16,3 │ │ │ ├── Info.plist │ │ │ └── Mac-E7203C0F68AA0004.plist │ │ │ ├── MacBookPro16,4 │ │ │ ├── Info.plist │ │ │ └── Mac-A61BADE1FDAD7B05.plist │ │ │ ├── MacBookPro4,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro4_1.plist │ │ │ ├── MacBookPro5,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro5_1.plist │ │ │ ├── MacBookPro5,2 │ │ │ ├── Info.plist │ │ │ └── MacBookPro5_2.plist │ │ │ ├── MacBookPro5,3 │ │ │ ├── Info.plist │ │ │ └── MacBookPro5_3.plist │ │ │ ├── MacBookPro5,4 │ │ │ ├── Info.plist │ │ │ └── MacBookPro5_4.plist │ │ │ ├── MacBookPro5,5 │ │ │ ├── Info.plist │ │ │ └── MacBookPro5_5.plist │ │ │ ├── MacBookPro6,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro6_1.plist │ │ │ ├── MacBookPro6,2 │ │ │ ├── Info.plist │ │ │ └── MacBookPro6_2.plist │ │ │ ├── MacBookPro7,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro7_1.plist │ │ │ ├── MacBookPro8,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro8_1.plist │ │ │ ├── MacBookPro8,2 │ │ │ ├── Info.plist │ │ │ └── MacBookPro8_2.plist │ │ │ ├── MacBookPro8,3 │ │ │ ├── Info.plist │ │ │ └── MacBookPro8_3.plist │ │ │ ├── MacBookPro9,1 │ │ │ ├── Info.plist │ │ │ └── MacBookPro9,1.plist │ │ │ ├── MacBookPro9,2 │ │ │ ├── Info.plist │ │ │ └── MacBookPro9,2.plist │ │ │ ├── MacPro3,1 │ │ │ ├── Info.plist │ │ │ └── MacPro3_1.plist │ │ │ ├── MacPro4,1 │ │ │ ├── Info.plist │ │ │ └── MacPro4_1.plist │ │ │ ├── MacPro5,1 │ │ │ ├── Info.plist │ │ │ └── MacPro5_1.plist │ │ │ ├── MacPro6,1 │ │ │ ├── Info.plist │ │ │ └── Mac-F60DEB81FF30ACF6.plist │ │ │ ├── MacPro7,1 │ │ │ ├── Info.plist │ │ │ └── Mac-27AD2F918AE68F61.plist │ │ │ ├── Macmini3,1 │ │ │ ├── Info.plist │ │ │ └── Macmini3_1.plist │ │ │ ├── Macmini4,1 │ │ │ ├── Info.plist │ │ │ └── Macmini4_1.plist │ │ │ ├── Macmini5,1 │ │ │ ├── Info.plist │ │ │ └── Macmini5_1.plist │ │ │ ├── Macmini5,2 │ │ │ ├── Info.plist │ │ │ └── Macmini5_2.plist │ │ │ ├── Macmini5,3 │ │ │ ├── Info.plist │ │ │ └── Macmini5_3.plist │ │ │ ├── Macmini6,1 │ │ │ ├── Info.plist │ │ │ └── Macmini6,1.plist │ │ │ ├── Macmini6,2 │ │ │ ├── Info.plist │ │ │ └── Macmini6,2.plist │ │ │ ├── Macmini7,1 │ │ │ ├── Info.plist │ │ │ └── Mac-35C5E08120C7EEAF.plist │ │ │ ├── Macmini8,1 │ │ │ ├── Info.plist │ │ │ └── Mac-7BA5B2DFE22DDD8C.plist │ │ │ ├── README.md │ │ │ ├── Xserve3,1 │ │ │ ├── Info.plist │ │ │ └── Xserve3_1.plist │ │ │ ├── iMac10,1 │ │ │ ├── Info.plist │ │ │ └── iMac10_1.plist │ │ │ ├── iMac11,1 │ │ │ ├── Info.plist │ │ │ └── iMac11_1.plist │ │ │ ├── iMac11,2 │ │ │ ├── Info.plist │ │ │ └── iMac11_2.plist │ │ │ ├── iMac11,3 │ │ │ ├── Info.plist │ │ │ └── iMac11_3.plist │ │ │ ├── iMac12,1 │ │ │ ├── Info.plist │ │ │ └── iMac12_1.plist │ │ │ ├── iMac12,2 │ │ │ ├── Info.plist │ │ │ └── iMac12_2.plist │ │ │ ├── iMac13,1 │ │ │ ├── Info.plist │ │ │ └── iMac13,1.plist │ │ │ ├── iMac13,2 │ │ │ ├── Info.plist │ │ │ └── iMac13,2.plist │ │ │ ├── iMac13,3 │ │ │ ├── Info.plist │ │ │ └── iMac13,3.plist │ │ │ ├── iMac14,1 │ │ │ ├── Info.plist │ │ │ └── iMac14,1.plist │ │ │ ├── iMac14,2 │ │ │ ├── Info.plist │ │ │ └── iMac14,2.plist │ │ │ ├── iMac14,3 │ │ │ ├── Info.plist │ │ │ └── iMac14,3.plist │ │ │ ├── iMac14,4 │ │ │ ├── Info.plist │ │ │ └── Mac-81E3E92DD6088272.plist │ │ │ ├── iMac15,1 │ │ │ ├── Info.plist │ │ │ └── Mac-42FD25EABCABB274.plist │ │ │ ├── iMac16,1 │ │ │ ├── Info.plist │ │ │ └── Mac-A369DDC4E67F1C45.plist │ │ │ ├── iMac16,2 │ │ │ ├── Info.plist │ │ │ └── Mac-FFE5EF870D7BA81A.plist │ │ │ ├── iMac17,1 │ │ │ ├── Info.plist │ │ │ ├── Mac-65CE76090165799A.plist │ │ │ ├── Mac-B809C3757DA9BB8D.plist │ │ │ └── Mac-DB15BD556843C820.plist │ │ │ ├── iMac18,1 │ │ │ ├── Info.plist │ │ │ └── Mac-4B682C642B45593E.plist │ │ │ ├── iMac18,2 │ │ │ ├── Info.plist │ │ │ └── Mac-77F17D7DA9285301.plist │ │ │ ├── iMac18,3 │ │ │ ├── Info.plist │ │ │ └── Mac-BE088AF8C5EB4FA2.plist │ │ │ ├── iMac19,1 │ │ │ ├── Info.plist │ │ │ └── Mac-AA95B1DDAB278B95.plist │ │ │ ├── iMac19,2 │ │ │ ├── Info.plist │ │ │ └── Mac-63001698E7A34814.plist │ │ │ ├── iMac20,1 │ │ │ ├── Info.plist │ │ │ └── Mac-CFF7D910A743CAAF.plist │ │ │ ├── iMac20,2 │ │ │ ├── Info.plist │ │ │ └── Mac-AF89B6D9451A490B.plist │ │ │ ├── iMac8,1 │ │ │ ├── Info.plist │ │ │ └── iMac8_1.plist │ │ │ ├── iMac9,1 │ │ │ ├── Info.plist │ │ │ └── iMac9_1.plist │ │ │ └── iMacPro1,1 │ │ │ ├── Info.plist │ │ │ └── Mac-7BA5B2D9E42DDD94.plist │ ├── SSE │ │ ├── AAAMouSSE-v0.95-Dortania.zip │ │ ├── AAAMouSSE-v0.95.zip │ │ └── telemetrap-v1.0.0.zip │ ├── USB │ │ └── USB1.1-Injector-v1.0.0.zip │ ├── Update-Kexts.command │ └── Wifi │ │ ├── IO80211ElCap-v2.0.1.zip │ │ ├── IO80211FamilyLegacy-v1.0.0.zip │ │ ├── IOSkywalkFamily-v1.2.0.txt │ │ ├── IOSkywalkFamily-v1.2.0.zip │ │ └── corecaptureElCap-v1.0.2.zip ├── Launch Services │ ├── com.dortania.opencore-legacy-patcher.auto-patch.plist │ ├── com.dortania.opencore-legacy-patcher.macos-update.plist │ ├── com.dortania.opencore-legacy-patcher.os-caching.plist │ └── com.dortania.opencore-legacy-patcher.rsr-monitor.plist ├── OpenCore │ ├── OpenCore-DEBUG.zip │ ├── OpenCore-RELEASE.zip │ ├── Update-OpenCore.command │ ├── macserial │ └── ocvalidate └── Tools │ ├── CreateVault │ ├── RsaTool │ ├── create_vault.sh │ ├── openssl │ ├── sign.command │ └── strings │ ├── OpenCore-Patcher.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── OpenCore-Patcher │ │ └── Resources │ │ └── OC-Patcher.icns │ └── RSRRepair └── requirements.txt /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: opencore-legacy-patcher 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/workflows/build-app-wxpython.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.github/workflows/build-app-wxpython.yml -------------------------------------------------------------------------------- /.github/workflows/build-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.github/workflows/build-site.yml -------------------------------------------------------------------------------- /.github/workflows/validate-external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.github/workflows/validate-external.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/.pylintrc -------------------------------------------------------------------------------- /Build-Project.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/Build-Project.command -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OpenCore-Patcher-GUI.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/OpenCore-Patcher-GUI.command -------------------------------------------------------------------------------- /OpenCore-Patcher-GUI.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/OpenCore-Patcher-GUI.spec -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/README.md -------------------------------------------------------------------------------- /SOURCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/SOURCE.md -------------------------------------------------------------------------------- /ci_tooling/build_modules/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/build_modules/application.py -------------------------------------------------------------------------------- /ci_tooling/build_modules/disk_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/build_modules/disk_images.py -------------------------------------------------------------------------------- /ci_tooling/build_modules/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/build_modules/package.py -------------------------------------------------------------------------------- /ci_tooling/build_modules/package_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/build_modules/package_scripts.py -------------------------------------------------------------------------------- /ci_tooling/build_modules/sign_notarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/build_modules/sign_notarize.py -------------------------------------------------------------------------------- /ci_tooling/entitlements/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/entitlements/entitlements.plist -------------------------------------------------------------------------------- /ci_tooling/installer_backups/macOS_Installer_Backup.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/installer_backups/macOS_Installer_Backup.command -------------------------------------------------------------------------------- /ci_tooling/pkg_assets/PkgBackground-AutoPkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/pkg_assets/PkgBackground-AutoPkg.png -------------------------------------------------------------------------------- /ci_tooling/pkg_assets/PkgBackground-Installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/pkg_assets/PkgBackground-Installer.png -------------------------------------------------------------------------------- /ci_tooling/pkg_assets/PkgBackground-Source-File.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/pkg_assets/PkgBackground-Source-File.afdesign -------------------------------------------------------------------------------- /ci_tooling/pkg_assets/PkgBackground-Uninstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/pkg_assets/PkgBackground-Uninstaller.png -------------------------------------------------------------------------------- /ci_tooling/privileged_helper_tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/privileged_helper_tool/Makefile -------------------------------------------------------------------------------- /ci_tooling/privileged_helper_tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/privileged_helper_tool/README.md -------------------------------------------------------------------------------- /ci_tooling/privileged_helper_tool/com.dortania.opencore-legacy-patcher.privileged-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/privileged_helper_tool/com.dortania.opencore-legacy-patcher.privileged-helper -------------------------------------------------------------------------------- /ci_tooling/privileged_helper_tool/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/privileged_helper_tool/install.sh -------------------------------------------------------------------------------- /ci_tooling/privileged_helper_tool/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/ci_tooling/privileged_helper_tool/main.m -------------------------------------------------------------------------------- /docs/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.markdownlint.json -------------------------------------------------------------------------------- /docs/.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.markdownlintignore -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /docs/.vuepress/public/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.vuepress/public/homepage.png -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/.vuepress/styles/palette.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/.vuepress/styles/palette.styl -------------------------------------------------------------------------------- /docs/BOOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/BOOT.md -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /docs/DEBUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/DEBUG.md -------------------------------------------------------------------------------- /docs/DONATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/DONATE.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/HOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/HOW.md -------------------------------------------------------------------------------- /docs/ICNS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/ICNS.md -------------------------------------------------------------------------------- /docs/INSTALLER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/INSTALLER.md -------------------------------------------------------------------------------- /docs/ISSUES-HOLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/ISSUES-HOLD.md -------------------------------------------------------------------------------- /docs/Icon-Composer-10.11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/Icon-Composer-10.11.zip -------------------------------------------------------------------------------- /docs/Icon-Composer-10.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/Icon-Composer-10.6.zip -------------------------------------------------------------------------------- /docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/LICENSE.md -------------------------------------------------------------------------------- /docs/MODELS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/MODELS.md -------------------------------------------------------------------------------- /docs/MONTEREY-DROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/MONTEREY-DROP.md -------------------------------------------------------------------------------- /docs/PATCHEXPLAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/PATCHEXPLAIN.md -------------------------------------------------------------------------------- /docs/POST-INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/POST-INSTALL.md -------------------------------------------------------------------------------- /docs/PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/PROCESS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/ResXtreme.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/ResXtreme.zip -------------------------------------------------------------------------------- /docs/SEQUOIA-DROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/SEQUOIA-DROP.md -------------------------------------------------------------------------------- /docs/SONOMA-DROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/SONOMA-DROP.md -------------------------------------------------------------------------------- /docs/START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/START.md -------------------------------------------------------------------------------- /docs/TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/TERMS.md -------------------------------------------------------------------------------- /docs/TIMEMACHINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/TIMEMACHINE.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOT-APP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/TROUBLESHOOT-APP.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOT-HARDWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/TROUBLESHOOT-HARDWARE.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOT-MISC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/TROUBLESHOOT-MISC.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOT-NONMETAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/TROUBLESHOOT-NONMETAL.md -------------------------------------------------------------------------------- /docs/UNINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/UNINSTALL.md -------------------------------------------------------------------------------- /docs/UNIVERSALCONTROL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/UNIVERSALCONTROL.md -------------------------------------------------------------------------------- /docs/UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/UPDATE.md -------------------------------------------------------------------------------- /docs/VENTURA-DROP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/VENTURA-DROP.md -------------------------------------------------------------------------------- /docs/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/WINDOWS.md -------------------------------------------------------------------------------- /docs/images/BOOTCAMP-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/BOOTCAMP-1.png -------------------------------------------------------------------------------- /docs/images/BOOTCAMP-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/BOOTCAMP-2.png -------------------------------------------------------------------------------- /docs/images/DISM-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-1.png -------------------------------------------------------------------------------- /docs/images/DISM-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-2.png -------------------------------------------------------------------------------- /docs/images/DISM-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-3.png -------------------------------------------------------------------------------- /docs/images/DISM-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-4.png -------------------------------------------------------------------------------- /docs/images/DISM-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-5.png -------------------------------------------------------------------------------- /docs/images/DISM-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-6.png -------------------------------------------------------------------------------- /docs/images/DISM-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-7.png -------------------------------------------------------------------------------- /docs/images/DISM-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-8.png -------------------------------------------------------------------------------- /docs/images/DISM-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/DISM-9.png -------------------------------------------------------------------------------- /docs/images/Error-No-Permission-To-Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/Error-No-Permission-To-Save.png -------------------------------------------------------------------------------- /docs/images/HD3000-Default-Colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/HD3000-Default-Colors.png -------------------------------------------------------------------------------- /docs/images/HD3000-Display-Colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/HD3000-Display-Colors.png -------------------------------------------------------------------------------- /docs/images/Hash-Mismatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/Hash-Mismatch.png -------------------------------------------------------------------------------- /docs/images/OC-Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OC-Build.png -------------------------------------------------------------------------------- /docs/images/OC-Patcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OC-Patcher.png -------------------------------------------------------------------------------- /docs/images/OC-Picker-External.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OC-Picker-External.png -------------------------------------------------------------------------------- /docs/images/OC-Picker-Internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OC-Picker-Internal.png -------------------------------------------------------------------------------- /docs/images/OC-Picker-SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OC-Picker-SD.png -------------------------------------------------------------------------------- /docs/images/OC-Picker-SSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OC-Picker-SSD.png -------------------------------------------------------------------------------- /docs/images/OCLP-051-Initial-Support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-051-Initial-Support.png -------------------------------------------------------------------------------- /docs/images/OCLP-060-Initial-Support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-060-Initial-Support.png -------------------------------------------------------------------------------- /docs/images/OCLP-100-Initial-Support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-100-Initial-Support.png -------------------------------------------------------------------------------- /docs/images/OCLP-200-Initial-Support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-200-Initial-Support.png -------------------------------------------------------------------------------- /docs/images/OCLP-App-Allow-Native-Models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-App-Allow-Native-Models.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Build-Finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Build-Finished.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Build-Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Build-Start.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Create-Installer-Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Create-Installer-Menu.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-EFI-Finished-Install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-EFI-Finished-Install.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-EFI-Needs-Permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-EFI-Needs-Permission.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-EFI-Select-Disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-EFI-Select-Disk.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-EFI-Select-Partition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-EFI-Select-Partition.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Download-Catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Download-Catalog.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Download-Finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Download-Finished.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Download-Listed-Products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Download-Listed-Products.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Download-Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Download-Progress.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Download-Unsupported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Download-Unsupported.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Finished-Script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Finished-Script.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Flashing-Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Flashing-Process.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Format-USB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Format-USB.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Needs-Installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Needs-Installing.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Select-Local-Installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Select-Local-Installer.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Installer-Sucess-Prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Installer-Sucess-Prompt.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Main-Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Main-Menu.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Root-Patch-Finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Root-Patch-Finished.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Root-Patch-Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Root-Patch-Status.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Root-Patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Root-Patch.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-SMBIOS-Minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-SMBIOS-Minimal.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Settings-Beta-Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Settings-Beta-Blur.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Settings-SIP-Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Settings-SIP-Disabled.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Settings-SIP-Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Settings-SIP-Enabled.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Settings-SIP-Root-Patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Settings-SIP-Root-Patch.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-Settings-ShowPicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-Settings-ShowPicker.png -------------------------------------------------------------------------------- /docs/images/OCLP-GUI-root-patch-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-GUI-root-patch-update.png -------------------------------------------------------------------------------- /docs/images/OCLP-SMBIOS-Allow-Native-Spoof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-SMBIOS-Allow-Native-Spoof.png -------------------------------------------------------------------------------- /docs/images/OCLP-smbios-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP-smbios-settings.png -------------------------------------------------------------------------------- /docs/images/OCLP_Booted_Version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_Booted_Version.png -------------------------------------------------------------------------------- /docs/images/OCLP_Disable_mediaanalysisd_Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_Disable_mediaanalysisd_Setting.png -------------------------------------------------------------------------------- /docs/images/OCLP_Failed_to_find_applicable_disks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_Failed_to_find_applicable_disks.png -------------------------------------------------------------------------------- /docs/images/OCLP_FeatureUnlock_Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_FeatureUnlock_Setting.png -------------------------------------------------------------------------------- /docs/images/OCLP_Root_Patch_Version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_Root_Patch_Version.png -------------------------------------------------------------------------------- /docs/images/OCLP_Update_Available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_Update_Available.png -------------------------------------------------------------------------------- /docs/images/OCLP_Update_Successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/OCLP_Update_Successful.png -------------------------------------------------------------------------------- /docs/images/TimeMachine-Transfer-Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/TimeMachine-Transfer-Uncheck.png -------------------------------------------------------------------------------- /docs/images/UC-enable-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/UC-enable-1.png -------------------------------------------------------------------------------- /docs/images/UC-enable-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/UC-enable-2.png -------------------------------------------------------------------------------- /docs/images/Unflashed-Boot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/Unflashed-Boot-1.png -------------------------------------------------------------------------------- /docs/images/Unflashed-Boot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/Unflashed-Boot-2.png -------------------------------------------------------------------------------- /docs/images/Unflashed-Boot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/Unflashed-Boot-3.png -------------------------------------------------------------------------------- /docs/images/background-moved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/background-moved.png -------------------------------------------------------------------------------- /docs/images/build-dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/build-dist.png -------------------------------------------------------------------------------- /docs/images/efi-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/efi-boot.png -------------------------------------------------------------------------------- /docs/images/graphics-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/graphics-download.png -------------------------------------------------------------------------------- /docs/images/graphics-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/graphics-open.png -------------------------------------------------------------------------------- /docs/images/icns-sl-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/icns-sl-save.png -------------------------------------------------------------------------------- /docs/images/icnspack-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/icnspack-done.png -------------------------------------------------------------------------------- /docs/images/icnspack-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/icnspack-folder.png -------------------------------------------------------------------------------- /docs/images/icon-SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/icon-SL.png -------------------------------------------------------------------------------- /docs/images/logs-efi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/logs-efi.png -------------------------------------------------------------------------------- /docs/images/mac-icns-drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/mac-icns-drive.png -------------------------------------------------------------------------------- /docs/images/macos-monterey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/macos-monterey.png -------------------------------------------------------------------------------- /docs/images/macos-sequoia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/macos-sequoia.png -------------------------------------------------------------------------------- /docs/images/macos-sequoia.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/macos-sequoia.png.png -------------------------------------------------------------------------------- /docs/images/mountefi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/mountefi.png -------------------------------------------------------------------------------- /docs/images/oc-boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/oc-boot.png -------------------------------------------------------------------------------- /docs/images/oc-explained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/oc-explained.png -------------------------------------------------------------------------------- /docs/images/oc-windows-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/oc-windows-done.png -------------------------------------------------------------------------------- /docs/images/oc-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/oc-windows.png -------------------------------------------------------------------------------- /docs/images/ocdebugimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/ocdebugimage.png -------------------------------------------------------------------------------- /docs/images/oclp-stuck-firstreboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/oclp-stuck-firstreboot.png -------------------------------------------------------------------------------- /docs/images/oclp-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/oclp-version.png -------------------------------------------------------------------------------- /docs/images/rsync-progess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/rsync-progess.png -------------------------------------------------------------------------------- /docs/images/sonoma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/sonoma.png -------------------------------------------------------------------------------- /docs/images/usb11-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/usb11-chart.png -------------------------------------------------------------------------------- /docs/images/ventura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/ventura.png -------------------------------------------------------------------------------- /docs/images/ventura_uc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/ventura_uc1.png -------------------------------------------------------------------------------- /docs/images/ventura_uc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/ventura_uc2.png -------------------------------------------------------------------------------- /docs/images/windows-bootcamp-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-bootcamp-error.png -------------------------------------------------------------------------------- /docs/images/windows-bootcamp-msi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-bootcamp-msi.png -------------------------------------------------------------------------------- /docs/images/windows-iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-iso.png -------------------------------------------------------------------------------- /docs/images/windows-mbr-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-mbr-format.png -------------------------------------------------------------------------------- /docs/images/windows-partition-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-partition-1.png -------------------------------------------------------------------------------- /docs/images/windows-partition-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-partition-2.png -------------------------------------------------------------------------------- /docs/images/windows-rsync-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-rsync-done.png -------------------------------------------------------------------------------- /docs/images/windows-rsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/windows-rsync.png -------------------------------------------------------------------------------- /docs/images/wipe-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/wipe-disk.png -------------------------------------------------------------------------------- /docs/images/wipe-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/images/wipe-volume.png -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/scripts/linkcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/scripts/linkcheck.py -------------------------------------------------------------------------------- /docs/scripts/sortDict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/scripts/sortDict.js -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /opencore_legacy_patcher/__init__.py: -------------------------------------------------------------------------------- 1 | from .application_entry import main -------------------------------------------------------------------------------- /opencore_legacy_patcher/application_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/application_entry.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/constants.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/amfi_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/amfi_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/bluetooth_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/bluetooth_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/cpu_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/cpu_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/css_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/css_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/example_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/example_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/model_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/model_array.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/os_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/os_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/pci_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/pci_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/sip_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/sip_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/smbios_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/smbios_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/usb_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/usb_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/datasets/video_bios_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/datasets/video_bios_data.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/detections/amfi_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/detections/amfi_detect.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/detections/device_probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/detections/device_probe.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/detections/ioreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/detections/ioreg.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/detections/os_probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/detections/os_probe.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/bluetooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/bluetooth.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/build.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/firmware.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/graphics_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/graphics_audio.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/misc.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/networking/wired.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/networking/wired.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/networking/wireless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/networking/wireless.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/security.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/smbios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/smbios.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/storage.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/efi_builder/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/efi_builder/support.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sucatalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sucatalog/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sucatalog/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sucatalog/constants.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sucatalog/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sucatalog/products.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sucatalog/products_appledb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sucatalog/products_appledb.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sucatalog/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sucatalog/url.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/analytics_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/analytics_handler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/arguments.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/commit_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/commit_info.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/defaults.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/generate_smbios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/generate_smbios.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/global_settings.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/install.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/integrity_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/integrity_verification.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/kdk_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/kdk_handler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/logging_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/logging_handler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/macos_installer_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/macos_installer_handler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/metallib_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/metallib_handler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/network_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/network_handler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/reroute_payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/reroute_payloads.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/subprocess_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/subprocess_wrapper.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/updates.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/utilities.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/support/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/support/validation.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/auto_patcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/auto_patcher/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/auto_patcher/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/auto_patcher/install.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/auto_patcher/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/auto_patcher/start.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/base/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/base/cache.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/kernel_collection/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/kernel_collection/auxiliary.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/kernel_collection/boot_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/kernel_collection/boot_system.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/kernel_collection/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/kernel_collection/support.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/mkext/mkext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/mkext/mkext.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/prelinked/prelinked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/prelinked/prelinked.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/kernelcache/rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/kernelcache/rebuild.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/mount/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/mount/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/mount/mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/mount/mount.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/mount/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/mount/snapshot.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/base.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/detect.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/base.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_legacy_gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_legacy_gcn.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_navi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_navi.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_polaris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_polaris.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_terascale_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_terascale_1.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_terascale_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_terascale_2.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_vega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/amd_vega.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_broadwell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_broadwell.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_haswell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_haswell.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_iron_lake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_iron_lake.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_ivy_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_ivy_bridge.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_sandy_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_sandy_bridge.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_skylake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/intel_skylake.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/nvidia_kepler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/nvidia_kepler.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/nvidia_tesla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/nvidia_tesla.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/nvidia_webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/graphics/nvidia_webdriver.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/cpu_missing_avx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/cpu_missing_avx.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/display_backlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/display_backlight.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/gmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/gmux.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/keyboard_backlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/keyboard_backlight.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/legacy_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/legacy_audio.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/pcie_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/pcie_webcam.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/t1_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/t1_security.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/usb11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/usb11.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/networking/legacy_wireless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/networking/legacy_wireless.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/hardware/networking/modern_wireless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/hardware/networking/modern_wireless.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/amd_opencl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/amd_opencl.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/amd_terascale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/amd_terascale.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/base.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/big_sur_gva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/big_sur_gva.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/big_sur_opencl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/big_sur_opencl.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/high_sierra_gva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/high_sierra_gva.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/metal_3802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/metal_3802.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/monterey_gva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/monterey_gva.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/monterey_opencl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/monterey_opencl.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/monterey_webkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/monterey_webkit.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal_coredisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal_coredisplay.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal_enforcement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal_enforcement.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal_ioaccel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/patchsets/shared_patches/non_metal_ioaccel.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/sys_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/sys_patch.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/sys_patch_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/sys_patch_helpers.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/utilities/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/utilities/dmg_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/utilities/dmg_mount.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/utilities/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/utilities/files.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/sys_patch/utilities/kdk_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/sys_patch/utilities/kdk_merge.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/volume/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/volume/__init__.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/volume/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/volume/copy.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/volume/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/volume/properties.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_about.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_build.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_cache_os_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_cache_os_update.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_download.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_entry.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_help.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_install_oc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_install_oc.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_macos_installer_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_macos_installer_download.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_macos_installer_flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_macos_installer_flash.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_main_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_main_menu.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_settings.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_support.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_sys_patch_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_sys_patch_display.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_sys_patch_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_sys_patch_start.py -------------------------------------------------------------------------------- /opencore_legacy_patcher/wx_gui/gui_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/opencore_legacy_patcher/wx_gui/gui_update.py -------------------------------------------------------------------------------- /payloads/ACPI/SSDT-CPBG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/ACPI/SSDT-CPBG.aml -------------------------------------------------------------------------------- /payloads/ACPI/SSDT-DGPU.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/ACPI/SSDT-DGPU.aml -------------------------------------------------------------------------------- /payloads/ACPI/SSDT-PCI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/ACPI/SSDT-PCI.aml -------------------------------------------------------------------------------- /payloads/ACPI/Source/SSDT-CPBG.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/ACPI/Source/SSDT-CPBG.dsl -------------------------------------------------------------------------------- /payloads/ACPI/Source/SSDT-DGPU.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/ACPI/Source/SSDT-DGPU.dsl -------------------------------------------------------------------------------- /payloads/ACPI/Source/SSDT-PCI.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/ACPI/Source/SSDT-PCI.dsl -------------------------------------------------------------------------------- /payloads/Config/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Config/config.plist -------------------------------------------------------------------------------- /payloads/Drivers/AMDGOP.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/AMDGOP.efi -------------------------------------------------------------------------------- /payloads/Drivers/ExFatDxeLegacy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/ExFatDxeLegacy.efi -------------------------------------------------------------------------------- /payloads/Drivers/FixPCIeLinkRate.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/FixPCIeLinkRate.efi -------------------------------------------------------------------------------- /payloads/Drivers/NVGOP_GK.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/NVGOP_GK.efi -------------------------------------------------------------------------------- /payloads/Drivers/NvmExpressDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/NvmExpressDxe.efi -------------------------------------------------------------------------------- /payloads/Drivers/UsbBusDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/UsbBusDxe.efi -------------------------------------------------------------------------------- /payloads/Drivers/XhciDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/XhciDxe.efi -------------------------------------------------------------------------------- /payloads/Drivers/diags.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Drivers/diags.efi -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/BigSur.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/BigSur.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/Generic.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/Generic.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/Monterey.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/Monterey.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/OC-Build.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/OC-Build.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/OC-Installer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/OC-Installer.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/OC-Patch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/OC-Patch.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/OC-Patcher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/OC-Patcher.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/OC-Support.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/OC-Support.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/Sequoia.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/Sequoia.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/Sonoma.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/Sonoma.icns -------------------------------------------------------------------------------- /payloads/Icon/AppIcons/Ventura.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/AppIcons/Ventura.icns -------------------------------------------------------------------------------- /payloads/Icon/DriveIcons/External/.VolumeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/DriveIcons/External/.VolumeIcon.icns -------------------------------------------------------------------------------- /payloads/Icon/DriveIcons/Internal/.VolumeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/DriveIcons/Internal/.VolumeIcon.icns -------------------------------------------------------------------------------- /payloads/Icon/DriveIcons/SD-Card/.VolumeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/DriveIcons/SD-Card/.VolumeIcon.icns -------------------------------------------------------------------------------- /payloads/Icon/DriveIcons/SSD/.VolumeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/DriveIcons/SSD/.VolumeIcon.icns -------------------------------------------------------------------------------- /payloads/Icon/Resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Icon/Resources.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AMFIPass-v1.4.1-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AMFIPass-v1.4.1-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.9-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.9-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.9-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.9-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AppleALC-v1.6.3-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AppleALC-v1.6.3-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AppleALC-v1.6.3-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AppleALC-v1.6.3-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AutoPkgInstaller-v1.0.4-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AutoPkgInstaller-v1.0.4-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/AutoPkgInstaller-v1.0.4-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/AutoPkgInstaller-v1.0.4-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.9-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.9-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.9-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.9-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/CPUFriend-v1.2.9-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/CPUFriend-v1.2.9-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/CPUFriend-v1.2.9-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/CPUFriend-v1.2.9-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/CSLVFixup-v2.6.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/CSLVFixup-v2.6.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/CryptexFixup-v1.0.4-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.4-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/CryptexFixup-v1.0.4-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.4-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/DebugEnhancer-v1.1.0-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/DebugEnhancer-v1.1.0-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/DebugEnhancer-v1.1.0-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/DebugEnhancer-v1.1.0-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/EFICheckDisabler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/EFICheckDisabler.md -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/EFICheckDisabler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/EFICheckDisabler.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/FeatureUnlock-v1.1.7-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/FeatureUnlock-v1.1.7-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/FeatureUnlock-v1.1.7-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/FeatureUnlock-v1.1.7-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/Lilu-v1.7.0-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/Lilu-v1.7.0-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/Lilu-v1.7.0-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/Lilu-v1.7.0-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/NVMeFix-v1.1.2-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/NVMeFix-v1.1.2-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/NVMeFix-v1.1.2-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/NVMeFix-v1.1.2-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/RSRHelper-v1.0.2-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/RSRHelper-v1.0.2-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/RSRHelper-v1.0.2-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/RSRHelper-v1.0.2-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/RestrictEvents-v1.1.5-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/RestrictEvents-v1.1.5-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/RestrictEvents-v1.1.5-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/RestrictEvents-v1.1.5-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/WhateverGreen-Navi-Backlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/WhateverGreen-Navi-Backlight.md -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/WhateverGreen-Navi-Backlight.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/WhateverGreen-Navi-Backlight.patch -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-Navi-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-Navi-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-Navi-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-Navi-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Acidanthera/WhateverGreen-v1.6.9-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/AppleEthernetAbuantiaAqtion-v1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/AppleEthernetAbuantiaAqtion-v1.1.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/AppleIntel8254XEthernet-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/AppleIntel8254XEthernet-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/CatalinaBCM5701Ethernet-v1.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/CatalinaBCM5701Ethernet-v1.0.2.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/CatalinaIntelI210Ethernet-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/CatalinaIntelI210Ethernet-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/Intel82574L-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/Intel82574L-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/MarvelYukonEthernet-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/MarvelYukonEthernet-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Ethernet/nForceEthernet-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Ethernet/nForceEthernet-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/FireWire/IOFireWireFamily-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/FireWire/IOFireWireFamily-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/FireWire/IOFireWireSBP2-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/FireWire/IOFireWireSBP2-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/FireWire/IOFireWireSerialBusProtocolTransport-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/FireWire/IOFireWireSerialBusProtocolTransport-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AMDGPUWakeHandler-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AMDGPUWakeHandler-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/ASPP-Override-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/ASPP-Override-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleCameraInterface-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleCameraInterface-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleCredentialManager-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleCredentialManager-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleHSSPIHIDDriver-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleHSSPIHIDDriver-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleHSSPISupport-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleHSSPISupport-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleIntelCPUPowerManagement-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleIntelCPUPowerManagement-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleIntelCPUPowerManagementClient-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleIntelCPUPowerManagementClient-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleIntelPIIXATA-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleIntelPIIXATA-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleKeyStore-v1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleKeyStore-v1.1.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleMCEReporterDisabler-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleMCEReporterDisabler-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleRAIDCard-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleRAIDCard-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleSSE-v1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleSSE-v1.1.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleTopCaseInjector-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleTopCaseInjector-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleUSBMultitouch-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleUSBMultitouch-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleUSBTopCase-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleUSBTopCase-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/AppleUSBTrackpad-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/AppleUSBTrackpad-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/BacklightInjector-v1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/BacklightInjector-v1.1.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/BacklightInjectorA-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/BacklightInjectorA-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/BigSurSDXC-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/BigSurSDXC-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/Bluetooth-Spoof-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/Bluetooth-Spoof-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/ECM-Override-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/ECM-Override-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/IOS3XeFamily-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/IOS3XeFamily-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/Innie-v1.3.1-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/Innie-v1.3.1-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/Innie-v1.3.1-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/Innie-v1.3.1-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/KDKlessWorkaround-v1.0.0-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/KDKlessWorkaround-v1.0.0-DEBUG.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/KDKlessWorkaround-v1.0.0-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/KDKlessWorkaround-v1.0.0-RELEASE.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/KernelRelayHost-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/KernelRelayHost-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/LegacyKeyboardInjector-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/LegacyKeyboardInjector-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/LegacyUSBVideoSupport-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/LegacyUSBVideoSupport-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/MonteAHCIPort-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/MonteAHCIPort-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/NoAVXFSCompressionTypeZlib-AVXpel-v12.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/NoAVXFSCompressionTypeZlib-AVXpel-v12.6.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/NoAVXFSCompressionTypeZlib-v12.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/NoAVXFSCompressionTypeZlib-v12.3.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/SMC-Spoof-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/SMC-Spoof-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/SimpleMSR-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/SimpleMSR-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Misc/corecrypto_T1-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Misc/corecrypto_T1-v1.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleGraphicsDevicePolicy/AppleGraphicsDevicePolicy.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleGraphicsDevicePolicy/AppleGraphicsDevicePolicy.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleGraphicsDevicePolicy/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleGraphicsDevicePolicy/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleGraphicsPowerManagement/AppleGraphicsPowerManagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleGraphicsPowerManagement/AppleGraphicsPowerManagement.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleGraphicsPowerManagement/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleGraphicsPowerManagement/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleMuxControl/AppleMuxControl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleMuxControl/AppleMuxControl.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleMuxControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleMuxControl/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/AppleUSBMaps/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/AppleUSBMaps/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook10,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook10,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook10,1/Mac-EE2EBD4B90B839A8.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook10,1/Mac-EE2EBD4B90B839A8.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook5,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook5,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook5,1/MacBook5_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook5,1/MacBook5_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook5,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook5,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook5,2/MacBook5_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook5,2/MacBook5_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook6,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook6,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook6,1/MacBook6_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook6,1/MacBook6_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook7,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook7,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook7,1/MacBook7_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook7,1/MacBook7_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook8,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook8,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook8,1/Mac-BE0E8AC46FE800CC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook8,1/Mac-BE0E8AC46FE800CC.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook9,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook9,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBook9,1/Mac-9AE82516C7C6B903.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBook9,1/Mac-9AE82516C7C6B903.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir2,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir2,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir2,1/MacBookAir2_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir2,1/MacBookAir2_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,1/MacBookAir3_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,1/MacBookAir3_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,2/MacBookAir3_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir3,2/MacBookAir3_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,1/MacBookAir4_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,1/MacBookAir4_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,2/MacBookAir4_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir4,2/MacBookAir4_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,1/MacBookAir5,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,1/MacBookAir5,1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,2/MacBookAir5,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir5,2/MacBookAir5,2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,1/Mac-35C1E88140C3E6CF.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,1/Mac-35C1E88140C3E6CF.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,2/Mac-7DF21CB3ED6977E5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir6,2/Mac-7DF21CB3ED6977E5.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,1/Mac-9F18E312C5C2BF0B.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,1/Mac-9F18E312C5C2BF0B.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,2/Mac-937CB26E2E02BB01.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir7,2/Mac-937CB26E2E02BB01.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,1/Mac-112818653D3AABFC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,1/Mac-112818653D3AABFC.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,2/Mac-226CB3C6A851A671.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir8,2/Mac-226CB3C6A851A671.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir9,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir9,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookAir9,1/Mac-0CFF9C7C2B63DF8D.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookAir9,1/Mac-0CFF9C7C2B63DF8D.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,1/MacBookPro10,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,1/MacBookPro10,1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,2/MacBookPro10,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro10,2/MacBookPro10,2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,1/Mac-189A3D4F975D5FFC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,1/Mac-189A3D4F975D5FFC.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,2/Mac-3CBD00234E554E41.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,2/Mac-3CBD00234E554E41.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,3/Mac-2BD1B31983FE1663.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,3/Mac-2BD1B31983FE1663.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,4/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,4/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,4/Mac-06F11FD93F0323C5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,4/Mac-06F11FD93F0323C5.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,5/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,5/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,5/Mac-06F11F11946D27C5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro11,5/Mac-06F11F11946D27C5.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro12,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro12,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro12,1/Mac-E43C1C25D4880AD6.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro12,1/Mac-E43C1C25D4880AD6.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,1/Mac-473D31EABEB93F9B.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,1/Mac-473D31EABEB93F9B.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,2/Mac-66E35819EE2D0D05.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,2/Mac-66E35819EE2D0D05.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,3/Mac-A5C67F76ED83108C.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro13,3/Mac-A5C67F76ED83108C.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,1/Mac-B4831CEBD52A0C4C.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,1/Mac-B4831CEBD52A0C4C.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,2/Mac-CAD6701F7CEA0921.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,2/Mac-CAD6701F7CEA0921.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,3/Mac-551B86E5744E2388.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro14,3/Mac-551B86E5744E2388.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,1/Mac-937A206F2EE63C01.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,1/Mac-937A206F2EE63C01.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,2/Mac-827FB448E656EC26.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,2/Mac-827FB448E656EC26.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,3/Mac-1E7E29AD0135F9BC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,3/Mac-1E7E29AD0135F9BC.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,4/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,4/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,4/Mac-53FDB3D8DB8CA971.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro15,4/Mac-53FDB3D8DB8CA971.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,1/Mac-E1008331FDC96864.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,1/Mac-E1008331FDC96864.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,2/Mac-5F9802EFE386AA28.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,2/Mac-5F9802EFE386AA28.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,3/Mac-E7203C0F68AA0004.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,3/Mac-E7203C0F68AA0004.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,4/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,4/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,4/Mac-A61BADE1FDAD7B05.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro16,4/Mac-A61BADE1FDAD7B05.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro4,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro4,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro4,1/MacBookPro4_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro4,1/MacBookPro4_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,1/MacBookPro5_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,1/MacBookPro5_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,2/MacBookPro5_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,2/MacBookPro5_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,3/MacBookPro5_3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,3/MacBookPro5_3.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,4/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,4/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,4/MacBookPro5_4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,4/MacBookPro5_4.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,5/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,5/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,5/MacBookPro5_5.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro5,5/MacBookPro5_5.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,1/MacBookPro6_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,1/MacBookPro6_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,2/MacBookPro6_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro6,2/MacBookPro6_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro7,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro7,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro7,1/MacBookPro7_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro7,1/MacBookPro7_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,1/MacBookPro8_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,1/MacBookPro8_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,2/MacBookPro8_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,2/MacBookPro8_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,3/MacBookPro8_3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro8,3/MacBookPro8_3.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,1/MacBookPro9,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,1/MacBookPro9,1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,2/MacBookPro9,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacBookPro9,2/MacBookPro9,2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro3,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro3,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro3,1/MacPro3_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro3,1/MacPro3_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro4,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro4,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro4,1/MacPro4_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro4,1/MacPro4_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro5,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro5,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro5,1/MacPro5_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro5,1/MacPro5_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro6,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro6,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro6,1/Mac-F60DEB81FF30ACF6.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro6,1/Mac-F60DEB81FF30ACF6.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro7,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro7,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/MacPro7,1/Mac-27AD2F918AE68F61.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/MacPro7,1/Mac-27AD2F918AE68F61.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini3,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini3,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini3,1/Macmini3_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini3,1/Macmini3_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini4,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini4,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini4,1/Macmini4_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini4,1/Macmini4_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini5,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini5,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini5,1/Macmini5_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini5,1/Macmini5_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini5,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini5,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini5,2/Macmini5_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini5,2/Macmini5_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini5,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini5,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini5,3/Macmini5_3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini5,3/Macmini5_3.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini6,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini6,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini6,1/Macmini6,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini6,1/Macmini6,1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini6,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini6,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini6,2/Macmini6,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini6,2/Macmini6,2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini7,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini7,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini7,1/Mac-35C5E08120C7EEAF.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini7,1/Mac-35C5E08120C7EEAF.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini8,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini8,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Macmini8,1/Mac-7BA5B2DFE22DDD8C.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Macmini8,1/Mac-7BA5B2DFE22DDD8C.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/README.md -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Xserve3,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Xserve3,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/Xserve3,1/Xserve3_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/Xserve3,1/Xserve3_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac10,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac10,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac10,1/iMac10_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac10,1/iMac10_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac11,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac11,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac11,1/iMac11_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac11,1/iMac11_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac11,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac11,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac11,2/iMac11_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac11,2/iMac11_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac11,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac11,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac11,3/iMac11_3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac11,3/iMac11_3.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac12,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac12,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac12,1/iMac12_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac12,1/iMac12_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac12,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac12,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac12,2/iMac12_2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac12,2/iMac12_2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac13,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac13,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac13,1/iMac13,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac13,1/iMac13,1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac13,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac13,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac13,2/iMac13,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac13,2/iMac13,2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac13,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac13,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac13,3/iMac13,3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac13,3/iMac13,3.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,1/iMac14,1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,1/iMac14,1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,2/iMac14,2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,2/iMac14,2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,3/iMac14,3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,3/iMac14,3.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,4/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,4/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac14,4/Mac-81E3E92DD6088272.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac14,4/Mac-81E3E92DD6088272.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac15,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac15,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac15,1/Mac-42FD25EABCABB274.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac15,1/Mac-42FD25EABCABB274.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac16,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac16,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac16,1/Mac-A369DDC4E67F1C45.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac16,1/Mac-A369DDC4E67F1C45.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac16,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac16,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac16,2/Mac-FFE5EF870D7BA81A.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac16,2/Mac-FFE5EF870D7BA81A.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Mac-65CE76090165799A.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Mac-65CE76090165799A.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Mac-B809C3757DA9BB8D.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Mac-B809C3757DA9BB8D.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Mac-DB15BD556843C820.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac17,1/Mac-DB15BD556843C820.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac18,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac18,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac18,1/Mac-4B682C642B45593E.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac18,1/Mac-4B682C642B45593E.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac18,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac18,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac18,2/Mac-77F17D7DA9285301.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac18,2/Mac-77F17D7DA9285301.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac18,3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac18,3/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac18,3/Mac-BE088AF8C5EB4FA2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac18,3/Mac-BE088AF8C5EB4FA2.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac19,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac19,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac19,1/Mac-AA95B1DDAB278B95.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac19,1/Mac-AA95B1DDAB278B95.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac19,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac19,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac19,2/Mac-63001698E7A34814.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac19,2/Mac-63001698E7A34814.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac20,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac20,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac20,1/Mac-CFF7D910A743CAAF.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac20,1/Mac-CFF7D910A743CAAF.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac20,2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac20,2/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac20,2/Mac-AF89B6D9451A490B.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac20,2/Mac-AF89B6D9451A490B.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac8,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac8,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac8,1/iMac8_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac8,1/iMac8_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac9,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac9,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMac9,1/iMac9_1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMac9,1/iMac9_1.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMacPro1,1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMacPro1,1/Info.plist -------------------------------------------------------------------------------- /payloads/Kexts/Plists/PlatformPlugin/iMacPro1,1/Mac-7BA5B2D9E42DDD94.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Plists/PlatformPlugin/iMacPro1,1/Mac-7BA5B2D9E42DDD94.plist -------------------------------------------------------------------------------- /payloads/Kexts/SSE/AAAMouSSE-v0.95-Dortania.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/SSE/AAAMouSSE-v0.95-Dortania.zip -------------------------------------------------------------------------------- /payloads/Kexts/SSE/AAAMouSSE-v0.95.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/SSE/AAAMouSSE-v0.95.zip -------------------------------------------------------------------------------- /payloads/Kexts/SSE/telemetrap-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/SSE/telemetrap-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/USB/USB1.1-Injector-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/USB/USB1.1-Injector-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Update-Kexts.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Update-Kexts.command -------------------------------------------------------------------------------- /payloads/Kexts/Wifi/IO80211ElCap-v2.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Wifi/IO80211ElCap-v2.0.1.zip -------------------------------------------------------------------------------- /payloads/Kexts/Wifi/IO80211FamilyLegacy-v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Wifi/IO80211FamilyLegacy-v1.0.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Wifi/IOSkywalkFamily-v1.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Wifi/IOSkywalkFamily-v1.2.0.txt -------------------------------------------------------------------------------- /payloads/Kexts/Wifi/IOSkywalkFamily-v1.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Wifi/IOSkywalkFamily-v1.2.0.zip -------------------------------------------------------------------------------- /payloads/Kexts/Wifi/corecaptureElCap-v1.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Kexts/Wifi/corecaptureElCap-v1.0.2.zip -------------------------------------------------------------------------------- /payloads/Launch Services/com.dortania.opencore-legacy-patcher.auto-patch.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Launch Services/com.dortania.opencore-legacy-patcher.auto-patch.plist -------------------------------------------------------------------------------- /payloads/Launch Services/com.dortania.opencore-legacy-patcher.macos-update.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Launch Services/com.dortania.opencore-legacy-patcher.macos-update.plist -------------------------------------------------------------------------------- /payloads/Launch Services/com.dortania.opencore-legacy-patcher.os-caching.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Launch Services/com.dortania.opencore-legacy-patcher.os-caching.plist -------------------------------------------------------------------------------- /payloads/Launch Services/com.dortania.opencore-legacy-patcher.rsr-monitor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Launch Services/com.dortania.opencore-legacy-patcher.rsr-monitor.plist -------------------------------------------------------------------------------- /payloads/OpenCore/OpenCore-DEBUG.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/OpenCore/OpenCore-DEBUG.zip -------------------------------------------------------------------------------- /payloads/OpenCore/OpenCore-RELEASE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/OpenCore/OpenCore-RELEASE.zip -------------------------------------------------------------------------------- /payloads/OpenCore/Update-OpenCore.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/OpenCore/Update-OpenCore.command -------------------------------------------------------------------------------- /payloads/OpenCore/macserial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/OpenCore/macserial -------------------------------------------------------------------------------- /payloads/OpenCore/ocvalidate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/OpenCore/ocvalidate -------------------------------------------------------------------------------- /payloads/Tools/CreateVault/RsaTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/CreateVault/RsaTool -------------------------------------------------------------------------------- /payloads/Tools/CreateVault/create_vault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/CreateVault/create_vault.sh -------------------------------------------------------------------------------- /payloads/Tools/CreateVault/openssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/CreateVault/openssl -------------------------------------------------------------------------------- /payloads/Tools/CreateVault/sign.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/CreateVault/sign.command -------------------------------------------------------------------------------- /payloads/Tools/CreateVault/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/CreateVault/strings -------------------------------------------------------------------------------- /payloads/Tools/OpenCore-Patcher.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/OpenCore-Patcher.app/Contents/Info.plist -------------------------------------------------------------------------------- /payloads/Tools/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher -------------------------------------------------------------------------------- /payloads/Tools/OpenCore-Patcher.app/Contents/Resources/OC-Patcher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/OpenCore-Patcher.app/Contents/Resources/OC-Patcher.icns -------------------------------------------------------------------------------- /payloads/Tools/RSRRepair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/payloads/Tools/RSRRepair -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dortania/OpenCore-Legacy-Patcher/HEAD/requirements.txt --------------------------------------------------------------------------------