├── .gitignore ├── OC ├── OpenCore.efi ├── Tools │ ├── RU.efi │ ├── CFGLock.efi │ ├── CsrUtil.efi │ ├── GopStop.efi │ ├── RtcRw.efi │ ├── TpmInfo.efi │ ├── ChipTune.efi │ ├── KeyTester.efi │ ├── MmapDump.efi │ ├── OpenShell.efi │ ├── BootKicker.efi │ ├── CleanNvram.efi │ ├── ControlMsrE2.efi │ ├── FontTester.efi │ ├── HdaCodecDump.efi │ ├── OpenControl.efi │ ├── ResetSystem.efi │ ├── VerifyMsrE2.efi │ └── ListPartitions.efi ├── ACPI │ ├── SSDT-EC.aml │ ├── SSDT-ALS0.aml │ ├── SSDT-BATS.aml │ ├── SSDT-DMAC.aml │ ├── SSDT-DMAR.aml │ ├── SSDT-ECRW.aml │ ├── SSDT-GPRW.aml │ ├── SSDT-MCHC.aml │ ├── SSDT-MEM2.aml │ ├── SSDT-PLUG.aml │ ├── SSDT-PMCR.aml │ ├── SSDT-PNLF.aml │ ├── SSDT-PS2K.aml │ ├── SSDT-RCSM.aml │ ├── SSDT-SBUS.aml │ ├── SSDT-SDXC.aml │ ├── SSDT-SLPB.aml │ ├── SSDT-THINK.aml │ ├── SSDT-OC-XOSI.aml │ ├── SSDT-dGPU-Off.aml │ └── SSDT-NumLockSupport.aml ├── Drivers │ ├── ArpDxe.efi │ ├── DnsDxe.efi │ ├── DpcDxe.efi │ ├── Ext4Dxe.efi │ ├── HttpDxe.efi │ ├── Ip4Dxe.efi │ ├── Ip6Dxe.efi │ ├── MnpDxe.efi │ ├── RngDxe.efi │ ├── SnpDxe.efi │ ├── TcpDxe.efi │ ├── TlsDxe.efi │ ├── Udp4Dxe.efi │ ├── Udp6Dxe.efi │ ├── XhciDxe.efi │ ├── AudioDxe.efi │ ├── BiosVideo.efi │ ├── Dhcp4Dxe.efi │ ├── Dhcp6Dxe.efi │ ├── Mtftp4Dxe.efi │ ├── Mtftp6Dxe.efi │ ├── OpenCanopy.efi │ ├── RamDiskDxe.efi │ ├── Virtio10.efi │ ├── VirtualSmc.efi │ ├── HiiDatabase.efi │ ├── HttpBootDxe.efi │ ├── OpenHfsPlus.efi │ ├── OpenNtfsDxe.efi │ ├── OpenRuntime.efi │ ├── OpenUsbKbDxe.efi │ ├── Ps2MouseDxe.efi │ ├── UefiPxeBcDxe.efi │ ├── UsbMouseDxe.efi │ ├── VirtioBlkDxe.efi │ ├── VirtioGpuDxe.efi │ ├── VirtioNetDxe.efi │ ├── apfs_aligned.efi │ ├── CrScreenshotDxe.efi │ ├── Hash2DxeCrypto.efi │ ├── NvmExpressDxe.efi │ ├── OpenLegacyBoot.efi │ ├── OpenLinuxBoot.efi │ ├── OpenNetworkBoot.efi │ ├── Ps2KeyboardDxe.efi │ ├── ResetNvramEntry.efi │ ├── ToggleSipEntry.efi │ ├── VirtioScsiDxe.efi │ ├── VirtioSerialDxe.efi │ ├── ApfsDriverLoader.efi │ ├── HttpUtilitiesDxe.efi │ ├── OpenPartitionDxe.efi │ ├── VirtioPciDeviceDxe.efi │ ├── FirmwareSettingsEntry.efi │ └── OpenVariableRuntimeDxe.efi ├── Resources │ ├── Label │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Windows.l2x │ │ ├── Windows.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── SIPDisabled.l2x │ │ ├── SIPDisabled.lbl │ │ ├── SIPEnabled.l2x │ │ ├── SIPEnabled.lbl │ │ ├── FirmwareSettings.l2x │ │ └── FirmwareSettings.lbl │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ └── Acidanthera │ │ │ ├── Syrah │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Right.icns │ │ │ ├── Shell.icns │ │ │ ├── Tool.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Windows.icns │ │ │ ├── AppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── HardDrive.icns │ │ │ ├── SetDefault.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtHardDrive.icns │ │ │ └── FirmwareSettings.icns │ │ │ ├── Chardonnay │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Right.icns │ │ │ ├── Shell.icns │ │ │ ├── Tool.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Windows.icns │ │ │ ├── AppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── HardDrive.icns │ │ │ ├── SetDefault.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtHardDrive.icns │ │ │ └── FirmwareSettings.icns │ │ │ └── GoldenGate │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Right.icns │ │ │ ├── Shell.icns │ │ │ ├── Tool.icns │ │ │ ├── Apple11.icns │ │ │ ├── Apple12.icns │ │ │ ├── Apple13.icns │ │ │ ├── Apple14.icns │ │ │ ├── Apple15.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Windows.icns │ │ │ ├── Apple10_10.icns │ │ │ ├── Apple10_11.icns │ │ │ ├── Apple10_12.icns │ │ │ ├── Apple10_13.icns │ │ │ ├── Apple10_14.icns │ │ │ ├── Apple10_15.icns │ │ │ ├── Apple10_4.icns │ │ │ ├── Apple10_5.icns │ │ │ ├── Apple10_6.icns │ │ │ ├── Apple10_7.icns │ │ │ ├── Apple10_8.icns │ │ │ ├── Apple10_9.icns │ │ │ ├── AppleRecv.icns │ │ │ ├── ExtApple11.icns │ │ │ ├── ExtApple12.icns │ │ │ ├── ExtApple13.icns │ │ │ ├── ExtApple14.icns │ │ │ ├── ExtApple15.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── HardDrive.icns │ │ │ ├── SetDefault.icns │ │ │ ├── AppleRecv10_7.icns │ │ │ ├── AppleRecv10_8.icns │ │ │ ├── AppleRecv10_9.icns │ │ │ ├── AppleRecv11.icns │ │ │ ├── AppleRecv12.icns │ │ │ ├── AppleRecv13.icns │ │ │ ├── AppleRecv14.icns │ │ │ ├── AppleRecv15.icns │ │ │ ├── ExtApple10_10.icns │ │ │ ├── ExtApple10_11.icns │ │ │ ├── ExtApple10_12.icns │ │ │ ├── ExtApple10_13.icns │ │ │ ├── ExtApple10_14.icns │ │ │ ├── ExtApple10_15.icns │ │ │ ├── ExtApple10_4.icns │ │ │ ├── ExtApple10_5.icns │ │ │ ├── ExtApple10_6.icns │ │ │ ├── ExtApple10_7.icns │ │ │ ├── ExtApple10_8.icns │ │ │ ├── ExtApple10_9.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── AppleRecv10_10.icns │ │ │ ├── AppleRecv10_11.icns │ │ │ ├── AppleRecv10_12.icns │ │ │ ├── AppleRecv10_13.icns │ │ │ ├── AppleRecv10_14.icns │ │ │ ├── AppleRecv10_15.icns │ │ │ ├── ExtAppleRecv11.icns │ │ │ ├── ExtAppleRecv12.icns │ │ │ ├── ExtAppleRecv13.icns │ │ │ ├── ExtAppleRecv14.icns │ │ │ ├── ExtAppleRecv15.icns │ │ │ ├── ExtAppleRecv10_10.icns │ │ │ ├── ExtAppleRecv10_11.icns │ │ │ ├── ExtAppleRecv10_12.icns │ │ │ ├── ExtAppleRecv10_13.icns │ │ │ ├── ExtAppleRecv10_14.icns │ │ │ ├── ExtAppleRecv10_15.icns │ │ │ ├── ExtAppleRecv10_7.icns │ │ │ ├── ExtAppleRecv10_8.icns │ │ │ └── ExtAppleRecv10_9.icns │ └── Audio │ │ └── OCEFIAudio_VoiceOver_Boot.mp3 └── Kexts │ ├── Lilu.kext │ └── Contents │ │ ├── MacOS │ │ └── Lilu │ │ └── Info.plist │ ├── YogaSMC.kext │ └── Contents │ │ ├── MacOS │ │ └── YogaSMC │ │ └── _CodeSignature │ │ └── CodeResources │ ├── AMFIPass.kext │ └── Contents │ │ ├── MacOS │ │ └── AMFIPass │ │ ├── Info.plist │ │ └── _CodeSignature │ │ └── CodeResources │ ├── AppleALC.kext │ └── Contents │ │ └── MacOS │ │ └── AppleALC │ ├── BigSurSDXC.kext │ └── Contents │ │ ├── MacOS │ │ └── BigSurSDXC │ │ └── Info.plist │ ├── CPUFriend.kext │ └── Contents │ │ ├── MacOS │ │ └── CPUFriend │ │ └── Info.plist │ ├── CpuTscSync.kext │ └── Contents │ │ ├── MacOS │ │ └── CpuTscSync │ │ └── Info.plist │ ├── ECEnabler.kext │ └── Contents │ │ ├── MacOS │ │ └── ECEnabler │ │ └── Info.plist │ ├── RSRHelper.kext │ └── Contents │ │ ├── MacOS │ │ └── RSRHelper │ │ └── Info.plist │ ├── SMCSuperIO.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCSuperIO │ │ └── Info.plist │ ├── VirtualSMC.kext │ └── Contents │ │ └── MacOS │ │ └── VirtualSMC │ ├── SMCProcessor.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCProcessor │ │ └── Info.plist │ ├── WhateverGreen.kext │ └── Contents │ │ ├── MacOS │ │ └── WhateverGreen │ │ └── Info.plist │ ├── BrightnessKeys.kext │ └── Contents │ │ ├── MacOS │ │ └── BrightnessKeys │ │ └── Info.plist │ ├── CodecCommander.kext │ └── Contents │ │ ├── MacOS │ │ └── CodecCommander │ │ └── Resources │ │ └── Samples │ │ ├── SSDT-AppleALC.dsl │ │ ├── SSDT-ALC1220.dsl │ │ ├── SSDT-CX20752.dsl │ │ ├── SSDT-ALC283.dsl │ │ ├── SSDT-ALC256-insanelydeepak.dsl │ │ ├── SSDT-ALC280.dsl │ │ ├── SSDT-ALC298.dsl │ │ ├── SSDT-ALC256-vbourachot.dsl │ │ ├── SSDT-ALC298a.dsl │ │ └── SSDT-ALC668.dsl │ ├── IOSkywalkFamily.kext │ └── Contents │ │ ├── MacOS │ │ └── IOSkywalkFamily │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── Info.plist │ ├── RealtekRTL8111.kext │ └── Contents │ │ ├── MacOS │ │ └── RealtekRTL8111 │ │ ├── Resources │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Info.plist │ ├── RestrictEvents.kext │ └── Contents │ │ ├── MacOS │ │ └── RestrictEvents │ │ └── Info.plist │ ├── SMCLightSensor.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCLightSensor │ │ └── Info.plist │ ├── AirportBrcmFixup.kext │ └── Contents │ │ ├── MacOS │ │ └── AirportBrcmFixup │ │ ├── PlugIns │ │ ├── AirPortBrcm4360_Injector.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ └── AirPortBrcmNIC_Injector.kext │ │ │ └── Contents │ │ │ └── Info.plist │ │ └── Info.plist │ ├── AutoPkgInstaller.kext │ └── Contents │ │ ├── MacOS │ │ └── AutoPkgInstaller │ │ └── Info.plist │ ├── HibernationFixup.kext │ └── Contents │ │ ├── MacOS │ │ └── HibernationFixup │ │ └── Info.plist │ ├── SMCBatteryManager.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCBatteryManager │ │ └── Info.plist │ ├── IO80211FamilyLegacy.kext │ └── Contents │ │ ├── MacOS │ │ └── IO80211FamilyLegacy │ │ ├── PlugIns │ │ └── AirPortBrcmNIC.kext │ │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── AirPortBrcmNIC │ │ │ ├── version.plist │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── Info.plist │ │ └── Info.plist │ ├── VoodooPS2Controller.kext │ └── Contents │ │ ├── MacOS │ │ └── VoodooPS2Controller │ │ ├── PlugIns │ │ ├── VoodooInput.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooInput │ │ │ │ ├── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ │ └── Info.plist │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ └── MacOS │ │ │ └── VoodooPS2Trackpad │ │ └── Info.plist │ ├── SATA-100-series-unsupported.kext │ └── Contents │ │ └── Info.plist │ └── USBMap.kext │ └── Contents │ └── Info.plist ├── BOOT └── BOOTx64.efi ├── bios_variable.txt ├── .github └── workflows │ └── tests.yml ├── README.md └── MSR_CFG_unlock.md /.gitignore: -------------------------------------------------------------------------------- 1 | #MacOS Desktop Config 2 | ._* 3 | .empty 4 | .DS_Store 5 | .contentFlavour 6 | -------------------------------------------------------------------------------- /OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/OpenCore.efi -------------------------------------------------------------------------------- /OC/Tools/RU.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/RU.efi -------------------------------------------------------------------------------- /BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /OC/Tools/CFGLock.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/CFGLock.efi -------------------------------------------------------------------------------- /OC/Tools/CsrUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/CsrUtil.efi -------------------------------------------------------------------------------- /OC/Tools/GopStop.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/GopStop.efi -------------------------------------------------------------------------------- /OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /OC/Tools/TpmInfo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/TpmInfo.efi -------------------------------------------------------------------------------- /OC/ACPI/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-ALS0.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-BATS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-BATS.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-DMAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-DMAC.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-DMAR.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-DMAR.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-ECRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-ECRW.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-GPRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-GPRW.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-MCHC.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-MEM2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-MEM2.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-PMCR.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-PMCR.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-PS2K.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-PS2K.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-RCSM.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-RCSM.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-SBUS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-SBUS.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-SDXC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-SDXC.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-SLPB.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-SLPB.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-THINK.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-THINK.aml -------------------------------------------------------------------------------- /OC/Drivers/ArpDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/ArpDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/DnsDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/DnsDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/DpcDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/DpcDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Ext4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Ext4Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/HttpDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/HttpDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Ip4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Ip4Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Ip6Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Ip6Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/MnpDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/MnpDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/RngDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/RngDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/SnpDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/SnpDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/TcpDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/TcpDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/TlsDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/TlsDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Udp4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Udp4Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Udp6Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Udp6Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/XhciDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/XhciDxe.efi -------------------------------------------------------------------------------- /OC/Tools/ChipTune.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/ChipTune.efi -------------------------------------------------------------------------------- /OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /OC/Tools/MmapDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/MmapDump.efi -------------------------------------------------------------------------------- /OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /OC/ACPI/SSDT-OC-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-OC-XOSI.aml -------------------------------------------------------------------------------- /OC/ACPI/SSDT-dGPU-Off.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-dGPU-Off.aml -------------------------------------------------------------------------------- /OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/BiosVideo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/BiosVideo.efi -------------------------------------------------------------------------------- /OC/Drivers/Dhcp4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Dhcp4Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Dhcp6Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Dhcp6Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Mtftp4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Mtftp4Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Mtftp6Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Mtftp6Dxe.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /OC/Drivers/RamDiskDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/RamDiskDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Virtio10.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Virtio10.efi -------------------------------------------------------------------------------- /OC/Drivers/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtualSmc.efi -------------------------------------------------------------------------------- /OC/Tools/BootKicker.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/BootKicker.efi -------------------------------------------------------------------------------- /OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /OC/Tools/ControlMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/ControlMsrE2.efi -------------------------------------------------------------------------------- /OC/Tools/FontTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/FontTester.efi -------------------------------------------------------------------------------- /OC/Tools/HdaCodecDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/HdaCodecDump.efi -------------------------------------------------------------------------------- /OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /OC/Tools/VerifyMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/VerifyMsrE2.efi -------------------------------------------------------------------------------- /OC/Drivers/HiiDatabase.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/HiiDatabase.efi -------------------------------------------------------------------------------- /OC/Drivers/HttpBootDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/HttpBootDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenHfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenHfsPlus.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenNtfsDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenNtfsDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenUsbKbDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenUsbKbDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Ps2MouseDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Ps2MouseDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/UefiPxeBcDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/UefiPxeBcDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/UsbMouseDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/UsbMouseDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/VirtioBlkDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtioBlkDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/VirtioGpuDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtioGpuDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/VirtioNetDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtioNetDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/apfs_aligned.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/apfs_aligned.efi -------------------------------------------------------------------------------- /OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /OC/Tools/ListPartitions.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Tools/ListPartitions.efi -------------------------------------------------------------------------------- /OC/Drivers/CrScreenshotDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/CrScreenshotDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/Hash2DxeCrypto.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Hash2DxeCrypto.efi -------------------------------------------------------------------------------- /OC/Drivers/NvmExpressDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/NvmExpressDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenLegacyBoot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenLegacyBoot.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenLinuxBoot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenLinuxBoot.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenNetworkBoot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenNetworkBoot.efi -------------------------------------------------------------------------------- /OC/Drivers/Ps2KeyboardDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/Ps2KeyboardDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /OC/Drivers/ToggleSipEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/ToggleSipEntry.efi -------------------------------------------------------------------------------- /OC/Drivers/VirtioScsiDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtioScsiDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/VirtioSerialDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtioSerialDxe.efi -------------------------------------------------------------------------------- /OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /OC/ACPI/SSDT-NumLockSupport.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/ACPI/SSDT-NumLockSupport.aml -------------------------------------------------------------------------------- /OC/Drivers/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /OC/Drivers/HttpUtilitiesDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/HttpUtilitiesDxe.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenPartitionDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenPartitionDxe.efi -------------------------------------------------------------------------------- /OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /OC/Drivers/VirtioPciDeviceDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/VirtioPciDeviceDxe.efi -------------------------------------------------------------------------------- /OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /OC/Drivers/FirmwareSettingsEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/FirmwareSettingsEntry.efi -------------------------------------------------------------------------------- /OC/Drivers/OpenVariableRuntimeDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Drivers/OpenVariableRuntimeDxe.efi -------------------------------------------------------------------------------- /OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /OC/Resources/Label/FirmwareSettings.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/FirmwareSettings.l2x -------------------------------------------------------------------------------- /OC/Resources/Label/FirmwareSettings.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Label/FirmwareSettings.lbl -------------------------------------------------------------------------------- /bios_variable.txt: -------------------------------------------------------------------------------- 1 | Name Offset VarStore Value 2 | BIOS Lock 0x17 PchSetup 0x0 3 | CFG Lock 0x3C CpuSetup 0x0 4 | DVMT Pre-Allocated 0xDF SaSetup 0x2 5 | -------------------------------------------------------------------------------- /OC/Kexts/YogaSMC.kext/Contents/MacOS/YogaSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/YogaSMC.kext/Contents/MacOS/YogaSMC -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Dot.icns -------------------------------------------------------------------------------- /OC/Kexts/AMFIPass.kext/Contents/MacOS/AMFIPass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/AMFIPass.kext/Contents/MacOS/AMFIPass -------------------------------------------------------------------------------- /OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Tool.icns -------------------------------------------------------------------------------- /OC/Kexts/BigSurSDXC.kext/Contents/MacOS/BigSurSDXC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/BigSurSDXC.kext/Contents/MacOS/BigSurSDXC -------------------------------------------------------------------------------- /OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /OC/Kexts/CpuTscSync.kext/Contents/MacOS/CpuTscSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/CpuTscSync.kext/Contents/MacOS/CpuTscSync -------------------------------------------------------------------------------- /OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler -------------------------------------------------------------------------------- /OC/Kexts/RSRHelper.kext/Contents/MacOS/RSRHelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/RSRHelper.kext/Contents/MacOS/RSRHelper -------------------------------------------------------------------------------- /OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.mp3 -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns -------------------------------------------------------------------------------- /OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_10.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_4.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_4.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_5.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_5.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_6.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_6.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_7.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_8.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/Apple10_9.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_9.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/MacOS/CodecCommander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/CodecCommander.kext/Contents/MacOS/CodecCommander -------------------------------------------------------------------------------- /OC/Kexts/IOSkywalkFamily.kext/Contents/MacOS/IOSkywalkFamily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/IOSkywalkFamily.kext/Contents/MacOS/IOSkywalkFamily -------------------------------------------------------------------------------- /OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_7.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_8.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_9.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_9.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_10.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_4.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_4.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_5.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_5.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_6.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_6.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_7.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_8.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_9.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple10_9.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Syrah/FirmwareSettings.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Syrah/FirmwareSettings.icns -------------------------------------------------------------------------------- /OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /OC/Kexts/AutoPkgInstaller.kext/Contents/MacOS/AutoPkgInstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/AutoPkgInstaller.kext/Contents/MacOS/AutoPkgInstaller -------------------------------------------------------------------------------- /OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_10.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv10_15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv15.icns -------------------------------------------------------------------------------- /OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/Chardonnay/FirmwareSettings.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/Chardonnay/FirmwareSettings.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_10.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_11.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_12.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_13.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_14.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_15.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_7.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_8.icns -------------------------------------------------------------------------------- /OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_9.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv10_9.icns -------------------------------------------------------------------------------- /OC/Kexts/IO80211FamilyLegacy.kext/Contents/MacOS/IO80211FamilyLegacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/IO80211FamilyLegacy.kext/Contents/MacOS/IO80211FamilyLegacy -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /OC/Kexts/IO80211FamilyLegacy.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/MacOS/AirPortBrcmNIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/IO80211FamilyLegacy.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/MacOS/AirPortBrcmNIC -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/happylzyy/Hackintosh-Lenovo-R720/HEAD/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- 1 | name: tests 2 | on: 3 | push: 4 | branches: 5 | - main 6 | pull_request: 7 | jobs: 8 | ocvalidate: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v3 12 | 13 | - uses: brokeyourbike/ocvalidate-action@v0.3 14 | with: 15 | opencore-version: '1.0.5' 16 | release: true 17 | 18 | - run: ocvalidate ./OC/config.plist 19 | -------------------------------------------------------------------------------- /OC/Kexts/IO80211FamilyLegacy.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 42 7 | CFBundleShortVersionString 8 | 14.0 9 | CFBundleVersion 10 | 1400.1.1 11 | ProjectName 12 | AirPortDriverBrcmNIC 13 | SourceVersion 14 | 1772001000000000 15 | 16 | 17 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-AppleALC.dsl: -------------------------------------------------------------------------------- 1 | // This SSDT demonstrates a custom configuration with certain features 2 | // disabled when using AppleALC.kext. 3 | // AppleALC.kext has some extra patches for AppleHDA that interfere with these 4 | // features breaking audio after wake from sleep. 5 | // 6 | // Customize to suit your needs. 7 | // 8 | // As of CodecCommander v2.7.1, CodecCommander detects AppleALC for setting the default 9 | // of these two options false. 10 | 11 | DefinitionBlock ("", "SSDT", 1, "hack", "_CCALC", 0) 12 | { 13 | External(_SB.PCI0.HDEF, DeviceObj) 14 | Name(_SB.PCI0.HDEF.RMCF, Package() 15 | { 16 | "CodecCommander", Package() 17 | { 18 | "Perform Reset", ">n", 19 | "Perform Reset on External Wake", ">n", 20 | }, 21 | }) 22 | } 23 | //EOF 24 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC1220.dsl: -------------------------------------------------------------------------------- 1 | // CodecCommander configuration for ALC1220 2 | // provided by daliansky @github 3 | 4 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC1220", 0) 5 | { 6 | External(_SB.PCI0.HDEF, DeviceObj) 7 | Name(_SB.PCI0.HDEF.RMCF, Package() 8 | { 9 | "CodecCommander", Package() 10 | { 11 | "Custom Commands", Package() 12 | { 13 | Package(){}, // signifies Array instead of Dictionary 14 | Package() 15 | { 16 | // 0x19 SET_PIN_WIDGET_CONTROL 0x24 17 | "Command", Buffer() { 0x01, 0x97, 0x07, 0x24 }, 18 | "On Init", ">y", 19 | "On Sleep", ">n", 20 | "On Wake", ">y", 21 | }, 22 | Package() 23 | { 24 | // 0x1B SET_UNSOLICITED_ENABLE 0x83 25 | "Command", Buffer() { 0x01, 0xB7, 0x08, 0x83 }, 26 | "On Init", ">y", 27 | "On Sleep", ">n", 28 | "On Wake", ">y", 29 | }, 30 | }, 31 | "Perform Reset", ">y", 32 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 33 | "Send Delay", 10, 34 | "Sleep Nodes", ">n", 35 | }, 36 | }) 37 | } 38 | //EOF 39 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-CX20752.dsl: -------------------------------------------------------------------------------- 1 | // SSDT to correct some problems headphone/mic on CX20752. 2 | // 3 | // Note: For use with the Anti-pop patches (seee RehabMan NUC repo) 4 | // 5 | // created by nayeweiyang/XuWang 6 | 7 | DefinitionBlock ("", "SSDT", 1, "hack", "_CX20752", 0) 8 | { 9 | External(_SB.PCI0.HDEF, DeviceObj) 10 | 11 | Name(_SB.PCI0.HDEF.RMCF, Package() 12 | { 13 | "CodecCommander", Package() 14 | { 15 | "Custom Commands", Package() 16 | { 17 | Package(){}, // signifies Array instead of Dictionary 18 | Package() 19 | { 20 | // 0x19 SET_PIN_WIDGET_CONTROL 0x24 21 | "Command", Buffer() { 0x01, 0x97, 0x07, 0x24 }, 22 | "On Init", ">y", 23 | "On Sleep", ">n", 24 | "On Wake", ">y", 25 | }, 26 | Package() 27 | { 28 | // 0x1a SET_PIN_WIDGET_CONTROL 0x24 29 | "Command", Buffer() { 0x01, 0xa7, 0x07, 0x24 }, 30 | "On Init", ">y", 31 | "On Sleep", ">n", 32 | "On Wake", ">y", 33 | }, 34 | 35 | }, 36 | "Perform Reset", ">n", 37 | "Perform Reset on External Wake", ">n", 38 | }, 39 | }) 40 | } 41 | //EOF 42 | 43 | 44 | -------------------------------------------------------------------------------- /OC/Kexts/SATA-100-series-unsupported.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Version 0.5.1, Copyright 2016, RehabMan (GPLv2) 7 | CFBundleIdentifier 8 | org.rehabman.injector.SATA-100-series-unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | SATA-100-series-unsupported 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 0.5.1 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.5.1 21 | IOKitPersonalities 22 | 23 | Intel10SeriesAHCI-unsupported 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AppleAHCIPort 27 | Chipset Name 28 | 10 Series Chipset 29 | IOClass 30 | AppleIntelPchSeriesAHCI 31 | IONameMatch 32 | 33 | pci8086,a103 34 | pci8086,9d03 35 | 36 | IOProbeScore 37 | 2000 38 | IOProviderClass 39 | IOPCIDevice 40 | Vendor Name 41 | Intel 42 | 43 | 44 | OSBundleRequired 45 | Local-Root 46 | 47 | 48 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC283.dsl: -------------------------------------------------------------------------------- 1 | // This SSDT demonstrates a custom configuration for ALC283. 2 | // It is the same data that is currently in the Info.plist 3 | 4 | // If you had a codec that needed the same configuration, you could 5 | // load this SSDT in order to implement it without modifying the kext. 6 | // It will override the defaults specfied by the CodecCommander Info.plist 7 | 8 | // Customize to suit your needs. 9 | 10 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC283", 0) 11 | { 12 | External(_SB.PCI0.HDEF, DeviceObj) 13 | Name(_SB.PCI0.HDEF.RMCF, Package() 14 | { 15 | "CodecCommander", Package() 16 | { 17 | "Custom Commands", Package() 18 | { 19 | Package(){}, // signifies Array instead of Dictionary 20 | Package() 21 | { 22 | // 0x19 SET_PIN_WIDGET_CONTROL 0x25 23 | "Command", Buffer() { 0x01, 0x97, 0x07, 0x25 }, 24 | "On Init", ">y", 25 | "On Sleep", ">n", 26 | "On Wake", ">y", 27 | }, 28 | Package() 29 | { 30 | // 0x21 SET_UNSOLICITED_ENABLE 0x83 31 | "Command", Buffer() { 0x02, 0x17, 0x08, 0x83 }, 32 | "On Init", ">y", 33 | "On Sleep", ">n", 34 | "On Wake", ">y", 35 | }, 36 | }, 37 | "Perform Reset", ">n", 38 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 39 | "Send Delay", 10, 40 | "Sleep Nodes", ">n", 41 | }, 42 | }) 43 | } 44 | //EOF 45 | -------------------------------------------------------------------------------- /OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcm4360Injector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcm4360 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_Brcm4360 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.Brcm4360 27 | IOClass 28 | AirPort_Brcm4360 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43a3 37 | pci14e4,43b1 38 | pci14e4,43b2 39 | 40 | IOProbeScore 41 | 1110 42 | IOProviderClass 43 | IOPCIDevice 44 | TruePowerOff 45 | 46 | 47 | 48 | OSBundleRequired 49 | Network-Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC256-insanelydeepak.dsl: -------------------------------------------------------------------------------- 1 | // CodecCommander configuration for ALC256 to fix various issue 2 | // repo: https://github.com/insanelydeepak/cloverHDA-for-Mac-OS-Sierra-10.12 3 | 4 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC256i", 0) 5 | { 6 | External(_SB.PCI0.HDEF, DeviceObj) 7 | Name(_SB.PCI0.HDEF.RMCF, Package() 8 | { 9 | "CodecCommander", Package() 10 | { 11 | "Custom Commands", Package() 12 | { 13 | Package(){}, // signifies Array instead of Dictionary 14 | Package() 15 | { 16 | // 0x19 SET_PIN_WIDGET_CONTROL 0x24 17 | "Command", Buffer() { 0x01, 0x97, 0x07, 0x24 }, 18 | "On Init", ">y", 19 | "On Sleep", ">n", 20 | "On Wake", ">y", 21 | }, 22 | Package() 23 | { 24 | // 0x1A SET_PIN_WIDGET_CONTROL 0x20 25 | "Command", Buffer() { 0x01, 0xA7, 0x07, 0x20 }, 26 | "On Init", ">y", 27 | "On Sleep", ">n", 28 | "On Wake", ">y", 29 | }, 30 | Package() 31 | { 32 | // 0x21 SET_UNSOLICITED_ENABLE 0x83 33 | "Command", Buffer() { 0x02, 0x17, 0x08, 0x83 }, 34 | "On Init", ">y", 35 | "On Sleep", ">n", 36 | "On Wake", ">y", 37 | } 38 | }, 39 | "Perform Reset", ">n", 40 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 41 | "Send Delay", 10, 42 | "Sleep Nodes", ">n", 43 | }, 44 | }) 45 | } 46 | //EOF 47 | -------------------------------------------------------------------------------- /OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcmNICInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcmNIC 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_BrcmNIC 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.BrcmNIC 27 | IOClass 28 | AirPort_BrcmNIC 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43ba 37 | pci14e4,43a3 38 | pci14e4,43a0 39 | pci14e4,43b1 40 | pci14e4,43b2 41 | 42 | IOProbeScore 43 | 2048 44 | IOProviderClass 45 | IOPCIDevice 46 | TruePowerOff 47 | 48 | 49 | 50 | OSBundleRequired 51 | Network-Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC280.dsl: -------------------------------------------------------------------------------- 1 | // This SSDT demonstrates a custom configuration for ALC280. 2 | 3 | // If you had a codec that needed the same configuration, you could 4 | // load this SSDT in order to implement it without modifying the kext. 5 | // It will override the defaults specfied by the CodecCommander Info.plist 6 | 7 | // Customize to suit your needs. 8 | 9 | // This data provided by @zirkaiva. 10 | // See here: http://www.tonymacx86.com/el-capitan-laptop-guides/175935-guide-lenovo-t430-el-capitan-34.html#post1239765 11 | 12 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC280", 0) 13 | { 14 | External(_SB.PCI0.HDEF, DeviceObj) 15 | Name(_SB.PCI0.HDEF.RMCF, Package() 16 | { 17 | "CodecCommander", Package() 18 | { 19 | "Custom Commands", Package() 20 | { 21 | Package(){}, // signifies Array instead of Dictionary 22 | Package() 23 | { 24 | // 0x15 SET_UNSOLICITED_ENABLE 0x83 25 | "Command", Buffer() { 0x01, 0x57, 0x08, 0x83 }, 26 | "On Init", ">y", 27 | "On Sleep", ">n", 28 | "On Wake", ">y", 29 | }, 30 | Package() 31 | { 32 | // 0x1a SET_PIN_WIDGET_CONTROL 0x24 33 | // Node 0x1a - Pin Control (In Enable / VRefEn) 34 | "Command", Buffer() { 0x01, 0xa7, 0x07, 0x24 }, 35 | "On Init", ">y", 36 | "On Sleep", ">n", 37 | "On Wake", ">y", 38 | }, 39 | }, 40 | //"Perform Reset", ">n", // enable if using AppleALC 41 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 42 | }, 43 | }) 44 | } 45 | //EOF 46 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC298.dsl: -------------------------------------------------------------------------------- 1 | // This SSDT demonstrates a custom configuration for ALC298. 2 | // It is the same data that is currently in the Info.plist 3 | 4 | // If you had a codec that needed the same configuration, you could 5 | // load this SSDT in order to implement it without modifying the kext. 6 | // It will override the defaults specfied by the CodecCommander Info.plist 7 | 8 | // Customize to suit your needs. 9 | 10 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC298", 0) 11 | { 12 | External(_SB.PCI0.HDEF, DeviceObj) 13 | Name(_SB.PCI0.HDEF.RMCF, Package() 14 | { 15 | "CodecCommander", Package() 16 | { 17 | "Custom Commands", Package() 18 | { 19 | Package(){}, // signifies Array instead of Dictionary 20 | Package() 21 | { 22 | // 0x18 SET_PIN_WIDGET_CONTROL 0x22 23 | "Command", Buffer() { 0x01, 0x87, 0x07, 0x22 }, 24 | "On Init", ">y", 25 | "On Sleep", ">n", 26 | "On Wake", ">y", 27 | }, 28 | Package() 29 | { 30 | // 0x1a SET_PIN_WIDGET_CONTROL 0x23 31 | "Command", Buffer() { 0x01, 0xa7, 0x07, 0x23 }, 32 | "On Init", ">y", 33 | "On Sleep", ">n", 34 | "On Wake", ">y", 35 | }, 36 | Package() 37 | { 38 | // 0x21 SET_UNSOLICITED_ENABLE 0x83 39 | "Command", Buffer() { 0x02, 0x17, 0x08, 0x83 }, 40 | "On Init", ">y", 41 | "On Sleep", ">n", 42 | "On Wake", ">y", 43 | }, 44 | }, 45 | "Perform Reset", ">n", 46 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 47 | "Send Delay", 10, 48 | "Sleep Nodes", ">n", 49 | }, 50 | }) 51 | } 52 | //EOF 53 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC256-vbourachot.dsl: -------------------------------------------------------------------------------- 1 | // CodecCommander configuration for ALC256 2 | // From: https://github.com/vbourachot/XPS13-9350-OSX/blob/master/ssdt/SSDT-ALC256.dsl 3 | 4 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC256v", 0x00003000) 5 | { 6 | External(_SB.PCI0.HDEF, DeviceObj) 7 | Name(_SB.PCI0.HDEF.RMCF, Package() 8 | { 9 | "CodecCommander", Package() 10 | { 11 | "Custom Commands", Package() 12 | { 13 | Package(){}, // signifies Array instead of Dictionary 14 | Package() 15 | { 16 | // 0x19 SET_PIN_WIDGET_CONTROL 0x25 17 | "Command", Buffer() { 0x01, 0x97, 0x07, 0x25 }, 18 | "On Init", ">y", 19 | "On Sleep", ">n", 20 | "On Wake", ">y", 21 | }, 22 | Package() 23 | { 24 | // 0x21 SET_UNSOLICITED_ENABLE 0x83 25 | "Command", Buffer() { 0x02, 0x17, 0x08, 0x83 }, 26 | "On Init", ">y", 27 | "On Sleep", ">n", 28 | "On Wake", ">y", 29 | }, 30 | Package() 31 | { 32 | // 0x20 SET_COEF_INDEX 0x36 33 | "Command", Buffer() { 0x02, 0x05, 0x00, 0x36 }, 34 | "On Init", ">y", 35 | "On Sleep", ">n", 36 | "On Wake", ">y", 37 | }, 38 | Package() 39 | { 40 | // 0x20 SET_PROC_COEF 0x1737 41 | "Command", Buffer() { 0x02, 0x04, 0x17, 0x37 }, 42 | "On Init", ">y", 43 | "On Sleep", ">n", 44 | "On Wake", ">y", 45 | }, 46 | }, 47 | "Perform Reset", ">n", 48 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 49 | "Send Delay", 10, 50 | "Sleep Nodes", ">n", 51 | }, 52 | }) 53 | } 54 | //EOF 55 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC298a.dsl: -------------------------------------------------------------------------------- 1 | // This SSDT demonstrates a custom configuration for ALC298. 2 | // 3 | // It is reportedly needed to solve problems of jack sense and 4 | // distorted sound with headphone. 5 | // 6 | // See here for details: 7 | // http://www.tonymacx86.com/threads/alc3266-10ec0298-files-for-applehdapatcher.191231/page-5#post-1323829 8 | // 9 | 10 | // Customize to suit your needs. 11 | // Compile to SSDT-ALC298.aml, place in ACPI/patched. Make sure SortedOrder includes it. 12 | 13 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC298a", 0) 14 | { 15 | External(_SB.PCI0.HDEF, DeviceObj) 16 | Name(_SB.PCI0.HDEF.RMCF, Package() 17 | { 18 | "CodecCommander", Package() 19 | { 20 | "Custom Commands", Package() 21 | { 22 | Package(){}, // signifies Array instead of Dictionary 23 | Package() 24 | { 25 | // 0x01 SET_CODEC_RESET 0x00 26 | "Command", Buffer() { 0x00, 0x17, 0xff, 0x00 }, 27 | "On Init", ">y", 28 | "On Sleep", ">n", 29 | "On Wake", ">n", 30 | }, 31 | Package() 32 | { 33 | // 0x01 SET_CODEC_RESET 0x00 34 | "Command", Buffer() { 0x00, 0x17, 0xff, 0x00 }, 35 | "On Init", ">y", 36 | "On Sleep", ">n", 37 | "On Wake", ">n", 38 | }, 39 | Package() 40 | { 41 | // 0x1 SET_POWER_STATE 0x03 42 | "Command", Buffer() { 0x00, 0x17, 0x05, 0x03 }, 43 | "On Init", ">y", 44 | "On Sleep", ">n", 45 | "On Wake", ">n", 46 | }, 47 | Package() 48 | { 49 | // 0x21 SET_UNSOLICITED_ENABLE 0x83 50 | "Command", Buffer() { 0x02, 0x17, 0x08, 0x83 }, 51 | "On Init", ">y", 52 | "On Sleep", ">n", 53 | "On Wake", ">y", 54 | }, 55 | }, 56 | //"Perform Reset", ">n", // enable if using AppleALC 57 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 58 | }, 59 | }) 60 | } 61 | //EOF 62 | -------------------------------------------------------------------------------- /OC/Kexts/CodecCommander.kext/Contents/Resources/Samples/SSDT-ALC668.dsl: -------------------------------------------------------------------------------- 1 | // This SSDT demonstrates a custom configuration for ALC668. 2 | // 3 | // It is reportedly needed to solve a problem with booting 4 | // OS X after Windows. 5 | // 6 | // See here for details: 7 | // http://www.tonymacx86.com/el-capitan-laptop-support/185808-alc668-no-sound-after-reboot-windows-10-a.html#post1201248 8 | // 9 | 10 | // Customize to suit your needs. 11 | // Compile to SSDT-ALC668.aml, place in ACPI/patched. Make sure SortedOrder includes it. 12 | 13 | DefinitionBlock ("", "SSDT", 1, "hack", "_ALC668", 0) 14 | { 15 | External(_SB.PCI0.HDEF, DeviceObj) 16 | Name(_SB.PCI0.HDEF.RMCF, Package() 17 | { 18 | "CodecCommander", Package() 19 | { 20 | "Custom Commands", Package() 21 | { 22 | Package(){}, // signifies Array instead of Dictionary 23 | // correcting headphones (this is in the Info.plist too) 24 | Package() 25 | { 26 | // 0x15 SET_UNSOLICITED_ENABLE 0x83 27 | "Command", Buffer() { 0x01, 0x57, 0x08, 0x83 }, 28 | "On Init", ">y", 29 | "On Sleep", ">n", 30 | "On Wake", ">y", 31 | }, 32 | Package() 33 | { 34 | // Node 0x1b - Pin Control (In Enable) 35 | "Command", Buffer() { 0x01, 0xb7, 0x07, 0x20 }, 36 | "On Init", ">n", 37 | "On Sleep", ">n", 38 | "On Wake", ">y", 39 | }, 40 | // correcting audio after Windows (not in current Info.plist) 41 | Package() 42 | { 43 | // 0x20 SET_COEF_INDEX 0x07 44 | "Command", Buffer() { 0x02, 0x05, 0x00, 0x07 }, 45 | "On Init", ">y", 46 | "On Sleep", ">n", 47 | "On Wake", ">n", 48 | }, 49 | Package() 50 | { 51 | // 0x20 SET_PROC_COEF 0x0F80 52 | "Command", Buffer() { 0x02, 0x04, 0x0f, 0x80 }, 53 | "On Init", ">y", 54 | "On Sleep", ">n", 55 | "On Wake", ">n", 56 | }, 57 | }, 58 | //"Perform Reset", ">n", // enable if using AppleALC 59 | //"Perform Reset on External Wake", ">n", // enable if using AppleALC 60 | }, 61 | }) 62 | } 63 | //EOF 64 | -------------------------------------------------------------------------------- /OC/Kexts/ECEnabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | ECEnabler 11 | CFBundleIdentifier 12 | com.1Revenger1.ECEnabler 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ECEnabler 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 14.2 35 | DTSDKBuild 36 | 23C53 37 | DTSDKName 38 | macosx14.2 39 | DTXcode 40 | 1520 41 | DTXcodeBuild 42 | 15C500b 43 | IOKitPersonalities 44 | 45 | com.1Revenger1.ECEnabler 46 | 47 | CFBundleIdentifier 48 | com.1Revenger1.ECEnabler 49 | IOClass 50 | ECEnabler 51 | IOClassCategory 52 | ECEnabler 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.7 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.4.9 65 | com.apple.kpi.bsd 66 | 11.0.0 67 | com.apple.kpi.dsep 68 | 11.0.0 69 | com.apple.kpi.iokit 70 | 11.0.0 71 | com.apple.kpi.libkern 72 | 11.0.0 73 | com.apple.kpi.mach 74 | 11.0.0 75 | com.apple.kpi.unsupported 76 | 11.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G217 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13F100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.3 35 | DTSDKBuild 36 | 21E226 37 | DTSDKName 38 | macosx12.3 39 | DTXcode 40 | 1341 41 | DTXcodeBuild 42 | 13F100 43 | IOKitPersonalities 44 | 45 | Voodoo Input 46 | 47 | CFBundleIdentifier 48 | me.kishorprins.VoodooInput 49 | IOClass 50 | VoodooInput 51 | IOProbeScore 52 | 200 53 | IOPropertyMatch 54 | 55 | VoodooInputSupported 56 | 57 | 58 | IOProviderClass 59 | IOService 60 | 61 | 62 | LSMinimumSystemVersion 63 | 10.11 64 | NSHumanReadableCopyright 65 | Copyright © 2019 Kishor Prins. All rights reserved. 66 | OSBundleLibraries 67 | 68 | com.apple.iokit.IOHIDFamily 69 | 2.0 70 | com.apple.kpi.iokit 71 | 14 72 | com.apple.kpi.libkern 73 | 14 74 | com.apple.kpi.mach 75 | 13.0 76 | 77 | OSBundleRequired 78 | Root 79 | 80 | 81 | -------------------------------------------------------------------------------- /OC/Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | BrightnessKeys 11 | CFBundleIdentifier 12 | as.acidanthera.BrightnessKeys 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | BrightnessKeys 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSupportedPlatforms 20 | 21 | MacOSX 22 | 23 | CFBundleVersion 24 | 1.0.3 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 13F100 29 | DTPlatformName 30 | macosx 31 | DTPlatformVersion 32 | 12.3 33 | DTSDKBuild 34 | 21E226 35 | DTSDKName 36 | macosx12.3 37 | DTXcode 38 | 1341 39 | DTXcodeBuild 40 | 13F100 41 | IOKitPersonalities 42 | 43 | BrightnessKeys 44 | 45 | CFBundleIdentifier 46 | as.acidanthera.BrightnessKeys 47 | IOClass 48 | BrightnessKeys 49 | IOMatchCategory 50 | BrightnessKeys 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.11 59 | OSBundleLibraries 60 | 61 | as.vit9696.Lilu 62 | 1.2.0 63 | com.apple.iokit.IOACPIFamily 64 | 1.0.0d1 65 | com.apple.iokit.IOHIDFamily 66 | 1.0.0b1 67 | com.apple.kpi.bsd 68 | 8.0.0 69 | com.apple.kpi.iokit 70 | 8.0.0 71 | com.apple.kpi.libkern 72 | 8.0.0 73 | com.apple.kpi.mach 74 | 8.0.0 75 | com.apple.kpi.unsupported 76 | 8.0.0 77 | 78 | OSBundleRequired 79 | Console 80 | 81 | 82 | -------------------------------------------------------------------------------- /OC/Kexts/RSRHelper.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23G93 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | RSRHelper 11 | CFBundleIdentifier 12 | com.khronokernel.RSRHelper 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RSRHelper 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.2 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.2 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 13.3 35 | DTSDKBuild 36 | 22E245 37 | DTSDKName 38 | macosx13.3 39 | DTXcode 40 | 1431 41 | DTXcodeBuild 42 | 14E300c 43 | IOKitPersonalities 44 | 45 | RSRHelper 46 | 47 | CFBundleIdentifier 48 | com.khronokernel.RSRHelper 49 | IOClass 50 | RSRHelper 51 | IOMatchCategory 52 | RSRHelper 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2021 Khronokernel. All rights reserved. 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.4.7 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.unsupported 78 | 12.0.0 79 | 80 | OSBundleRequired 81 | Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /OC/Kexts/AMFIPass.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 22G630 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AMFIPass 11 | CFBundleIdentifier 12 | com.dhinakg.AMFIPass 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AMFIPass 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.4.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 14.2 35 | DTSDKBuild 36 | 23C53 37 | DTSDKName 38 | macosx14.2 39 | DTXcode 40 | 1520 41 | DTXcodeBuild 42 | 15C500b 43 | IOKitPersonalities 44 | 45 | AMFIPass 46 | 47 | CFBundleIdentifier 48 | com.dhinakg.AMFIPass 49 | IOClass 50 | AMFIPass 51 | IOMatchCategory 52 | AMFIPass 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.15 61 | NSHumanReadableCopyright 62 | Copyright © 2022-2023 Dhinak G. All rights reserved. 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.6.8 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.private 78 | 12.0.0 79 | com.apple.kpi.unsupported 80 | 12.0.0 81 | 82 | OSBundleRequired 83 | Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /OC/Kexts/AutoPkgInstaller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23G93 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AutoPkgInstaller 11 | CFBundleIdentifier 12 | com.khronokernel.AutoPkgInstaller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AutoPkgInstaller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 13.3 35 | DTSDKBuild 36 | 22E245 37 | DTSDKName 38 | macosx13.3 39 | DTXcode 40 | 1431 41 | DTXcodeBuild 42 | 14E300c 43 | IOKitPersonalities 44 | 45 | AutoPkgInstaller 46 | 47 | CFBundleIdentifier 48 | com.khronokernel.AutoPkgInstaller 49 | IOClass 50 | AutoPkgInstaller 51 | IOMatchCategory 52 | AutoPkgInstaller 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2022 Khronokernel. All rights reserved. 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.4.7 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.unsupported 78 | 12.0.0 79 | 80 | OSBundleRequired 81 | Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /OC/Kexts/HibernationFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | HibernationFixup 11 | CFBundleIdentifier 12 | as.lvs1974.HibernationFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | HibernationFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.5.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | as.lvs1974.HibernationFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.HibernationFixup 51 | IOClass 52 | HibernationFixup 53 | IOMatchCategory 54 | HibernationFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.8 63 | NSHumanReadableCopyright 64 | Copyright © 2017 lvs1974. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.0 67 | OSBundleLibraries 68 | 69 | as.vit9696.Lilu 70 | 1.2.4 71 | com.apple.kpi.bsd 72 | 12.0.0 73 | com.apple.kpi.dsep 74 | 12.0.0 75 | com.apple.kpi.iokit 76 | 12.0.0 77 | com.apple.kpi.libkern 78 | 12.0.0 79 | com.apple.kpi.mach 80 | 12.0.0 81 | com.apple.kpi.unsupported 82 | 12.0.0 83 | 84 | OSBundleRequired 85 | Root 86 | 87 | 88 | -------------------------------------------------------------------------------- /OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCLightSensor 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCLightSensor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCLightSensor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.3.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 14.2 35 | DTSDKBuild 36 | 23C53 37 | DTSDKName 38 | macosx14.2 39 | DTXcode 40 | 1520 41 | DTXcodeBuild 42 | 15C500b 43 | IOKitPersonalities 44 | 45 | SMCLightSensor 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCLightSensor 49 | IOClass 50 | SMCLightSensor 51 | IOMatchCategory 52 | SMCLightSensor 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.6 61 | NSHumanReadableCopyright 62 | Copyright © 2018 vit9696. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 10.0.0 75 | com.apple.kpi.dsep 76 | 10.0.0 77 | com.apple.kpi.iokit 78 | 10.0.0 79 | com.apple.kpi.libkern 80 | 10.0.0 81 | com.apple.kpi.mach 82 | 10.0.0 83 | com.apple.kpi.unsupported 84 | 10.0.0 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /OC/Kexts/AMFIPass.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /OC/Kexts/YogaSMC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /OC/Kexts/IOSkywalkFamily.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /OC/Kexts/IO80211FamilyLegacy.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 22A380010 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | IO80211FamilyLegacy 11 | CFBundleGetInfoString 12 | 12.0, Copyright © 2005-2016 Apple Inc. All rights reserved. 13 | CFBundleIdentifier 14 | com.apple.iokit.IO80211FamilyLegacy 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | IO80211FamilyLegacy 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 12.0 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1200.12.2b1 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 22G5038a 35 | DTPlatformName 36 | macosx 37 | DTPlatformVersion 38 | 13.5 39 | DTSDKBuild 40 | 22G5038a 41 | DTSDKName 42 | macosx13.5.internal 43 | DTXcode 44 | 1430 45 | DTXcodeBuild 46 | 14E6097d 47 | IOKitPersonalities 48 | 49 | LSMinimumSystemVersion 50 | 13.5 51 | OSBundleCompatibleVersion 52 | 1.0 53 | OSBundleLibraries 54 | 55 | com.apple.driver.AppleMobileFileIntegrity 56 | 1.0.1 57 | com.apple.driver.corecapture 58 | 1.0.0 59 | com.apple.iokit.CoreAnalyticsFamily 60 | 1.0 61 | com.apple.iokit.IONetworkingFamily 62 | 3.0 63 | com.apple.iokit.IOSkywalkFamily 64 | 1.0 65 | com.apple.kec.corecrypto 66 | 1.0 67 | com.apple.kpi.bsd 68 | 15.0.0 69 | com.apple.kpi.iokit 70 | 15.0.0 71 | com.apple.kpi.libkern 72 | 15.0.0 73 | com.apple.kpi.mach 74 | 15.0.0 75 | com.apple.kpi.private 76 | 15.0.0 77 | com.apple.kpi.unsupported 78 | 15.0.0 79 | 80 | OSBundleRequired 81 | Network-Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /OC/Kexts/IO80211FamilyLegacy.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | version.plist 8 | 9 | qIixle+W2C/+sBp1SInmYObzhV4= 10 | 11 | 12 | files2 13 | 14 | version.plist 15 | 16 | hash2 17 | 18 | ji2WfnRNNWU/8pJpqBz/wrCq9bjOZa7wiGteYMeYsOE= 19 | 20 | 21 | 22 | rules 23 | 24 | ^Resources/ 25 | 26 | ^Resources/.*\.lproj/ 27 | 28 | optional 29 | 30 | weight 31 | 1000 32 | 33 | ^Resources/.*\.lproj/locversion.plist$ 34 | 35 | omit 36 | 37 | weight 38 | 1100 39 | 40 | ^Resources/Base\.lproj/ 41 | 42 | weight 43 | 1010 44 | 45 | ^version.plist$ 46 | 47 | 48 | rules2 49 | 50 | .*\.dSYM($|/) 51 | 52 | weight 53 | 11 54 | 55 | ^(.*/)?\.DS_Store$ 56 | 57 | omit 58 | 59 | weight 60 | 2000 61 | 62 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 63 | 64 | nested 65 | 66 | weight 67 | 10 68 | 69 | ^.* 70 | 71 | ^Info\.plist$ 72 | 73 | omit 74 | 75 | weight 76 | 20 77 | 78 | ^PkgInfo$ 79 | 80 | omit 81 | 82 | weight 83 | 20 84 | 85 | ^Resources/ 86 | 87 | weight 88 | 20 89 | 90 | ^Resources/.*\.lproj/ 91 | 92 | optional 93 | 94 | weight 95 | 1000 96 | 97 | ^Resources/.*\.lproj/locversion.plist$ 98 | 99 | omit 100 | 101 | weight 102 | 1100 103 | 104 | ^Resources/Base\.lproj/ 105 | 106 | weight 107 | 1010 108 | 109 | ^[^/]+$ 110 | 111 | nested 112 | 113 | weight 114 | 10 115 | 116 | ^embedded\.provisionprofile$ 117 | 118 | weight 119 | 20 120 | 121 | ^version\.plist$ 122 | 123 | weight 124 | 20 125 | 126 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Hackintosh-Lenovo-R720 2 | ========= 3 | 4 | #### 配置信息 5 | 6 | | 项目 | 参数 | 7 | | ----------------------- | -------------------------------- | 8 | | 电脑型号 | Lenovo Rescuer R720-15IKBN | 9 | | CPU | Intel Core i5-7300HQ (Kaby Lake) | 10 | | 显卡 | 核显 HD 630;独显 GTX 1050 Ti | 11 | | 有线网卡 | Realtek RTL8168GU/8111GU | 12 | | 无线网卡/蓝牙(已更换) | BCM94360CS2 | 13 | | 声卡 | Realtek ALC235 | 14 | 15 | 适用于联想拯救者R720-15IKBN的OpenCore EFI,经过测试可以用于 16 | 17 | - macOS Tahoe 26.0 18 | - macOS Sequoia 15.x 19 | - macOS Ventura 13.x 20 | - macOS Monterey 12.x 21 | - macOS Big Sur 11.x 22 | - macOS Catalina 10.15.x 23 | 24 | macOS Sonoma / Sequoia 移除了Broadcom、Atheros等无线网卡的驱动,需要使用[OpenCore Legacy Patcher](https://dortania.github.io/OpenCore-Legacy-Patcher/)对系统进行修补。 25 | 26 | macOS Tahoe移除了AppleHDA驱动,导致声卡无法驱动,需要使用修改版OCLP对系统进行修补。 27 | 28 | OTA升级macOS Tahoe可能遇到NSU 1130错误,需要设置`SecureBootModel`为`Disabled`。 29 | 30 | #### 已驱动 31 | 32 | * 核显 HD630 33 | * 屏幕亮度调节,亮度调节功能键 34 | * CPU变频:支持900MHz~3100MHz共23档变频(来自CPU-S工具的估算值) 35 | * 睡眠唤醒:普通睡眠、合盖睡眠正常 36 | * 声卡驱动(layout-id=14):扬声器、耳机、麦克风阵列、线路输入、EAPD工作正常 37 | * 有线网卡 38 | * 触控板与键盘:支持苹果触控板手势,小键盘与NumLock键正常 39 | * 摄像头 40 | * USB2.0/3.0,type-C 41 | * 蓝牙(BCM94360CS2):随航、接力、隔空投送、通用控制 42 | * WLAN(BCM94360CS2) 43 | * 联想OEM的部分功能:Fn+Fxx键、风扇传感器、电池传感器 44 | * SD读卡器 45 | * HDMI、type-C外接显示器 46 | * 注入三码后iServices服务正常 47 | 48 | #### 已知问题 49 | 50 | * HDMI、type-C外接显示器分辨率识别可能不准确 51 | 52 | #### 附加内容 53 | 54 | 1. PrtSc键已通过SSDT-PS2K映射到F13,系统偏好设置中设置截图快捷键为F13即可使用PrtSc截图功能。 55 | 2. 联想OEM部分功能(Fn+Fxx键、键盘背光控制、风扇传感器)需要安装额外的应用和面板[YogaSMCNC](https://github.com/zhen-zen/YogaSMC/releases)。 56 | 3. 关于解锁MSR 0x2E CFG Lock等BIOS修改,详见[MSR_CFG_unlock.md](https://github.com/happylzyy/Hackintosh-Lenovo-R720/blob/main/MSR_CFG_unlock.md)和[BIOS variable](https://github.com/happylzyy/Hackintosh-Lenovo-R720/blob/main/bios_variable.txt)。 57 | 58 | #### 参考资料 59 | 60 | 1. [英特尔® 核芯显卡 常见问答](https://github.com/acidanthera/WhateverGreen/blob/master/Manual/FAQ.IntelHD.cn.md) 61 | 2. [AppleALC](https://github.com/acidanthera/AppleALC) 62 | 3. [VoodooPS2](https://github.com/acidanthera/VoodooPS2) 63 | 4. [OC-little](https://github.com/daliansky/OC-little) 64 | 5. [OpenCore黑苹果引导开机声音与图形界面设置](https://shuiyunxc.gitee.io/2020/03/19/SoundGra/index/) 65 | 6. [AirportBrcmFixup](https://github.com/acidanthera/AirportBrcmFixup) 66 | 7. [USBToolBox](https://github.com/USBToolBox) 67 | 8. [EAPD-Codec-Commander](https://github.com/RehabMan/EAPD-Codec-Commander) 68 | 9. [CPUFriend](https://github.com/acidanthera/CPUFriend) 69 | 10. [one-key-cpufriend](https://github.com/stevezhengshiqi/one-key-cpufriend) 70 | 11. [详解Mac睡眠模式设置](https://www.cnblogs.com/motoyang/p/4947139.html)、[Mac的睡眠模式介绍](https://www.cnblogs.com/motoyang/p/6075609.html) 71 | 12. [YogaSMC](https://github.com/zhen-zen/YogaSMC) 72 | 13. [OpenCore Legacy Patcher](https://dortania.github.io/OpenCore-Legacy-Patcher/) 73 | 14. [ferxiit/Y520-15IKBN-OpenCore](https://github.com/ferxiit/Y520-15IKBN-OpenCore) 74 | 15. [[Guide] Lenovo Legion Y520/Y720 using Clover UEFI](https://www.tonymacx86.com/threads/guide-lenovo-legion-y520-y720-using-clover-uefi.261009/) 75 | -------------------------------------------------------------------------------- /OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.7.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.7.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOBSD 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kernel.6.0 70 | 7.9.9 71 | com.apple.kpi.bsd 72 | 8.0.0 73 | com.apple.kpi.iokit 74 | 8.0.0 75 | com.apple.kpi.libkern 76 | 8.0.0 77 | com.apple.kpi.mach 78 | 8.0.0 79 | com.apple.kpi.unsupported 80 | 8.0.0 81 | 82 | OSBundleLibraries_x86_64 83 | 84 | com.apple.kpi.bsd 85 | 10.0.0 86 | com.apple.kpi.dsep 87 | 10.0.0 88 | com.apple.kpi.iokit 89 | 10.0.0 90 | com.apple.kpi.libkern 91 | 10.0.0 92 | com.apple.kpi.mach 93 | 10.0.0 94 | com.apple.kpi.unsupported 95 | 10.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /OC/Kexts/CpuTscSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CpuTscSync 11 | CFBundleIdentifier 12 | org.lvs1974.driver.CpuTscSync 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CpuTscSync 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | CpuTscSync 48 | 49 | CFBundleIdentifier 50 | org.lvs1974.driver.CpuTscSync 51 | IOClass 52 | CpuTscSync 53 | IOMatchCategory 54 | CpuTscSync 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | VoodooTSCSync 61 | 62 | CFBundleIdentifier 63 | org.lvs1974.driver.CpuTscSync 64 | IOClass 65 | VoodooTSCSync 66 | IOMatchCategory 67 | VoodooTSCSync 68 | IOProviderClass 69 | AppleACPICPU 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.8 74 | NSHumanReadableCopyright 75 | Copyright © 2020 lvs1974. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | com.apple.iokit.IOACPIFamily 83 | 1.0.0d1 84 | com.apple.kpi.bsd 85 | 12.0.0 86 | com.apple.kpi.dsep 87 | 12.0.0 88 | com.apple.kpi.iokit 89 | 12.0.0 90 | com.apple.kpi.libkern 91 | 12.0.0 92 | com.apple.kpi.mach 93 | 12.0.0 94 | com.apple.kpi.unsupported 95 | 12.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1030 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | RealtekRTL8111 11 | CFBundleIdentifier 12 | com.insanelymac.RealtekRTL8111 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RealtekRTL8111 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.4.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.4.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10G8 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18G74 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1030 41 | DTXcodeBuild 42 | 10G8 43 | IOKitPersonalities 44 | 45 | RTL8111 PCIe Adapter 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.RealtekRTL8111 49 | Driver Parameters 50 | 51 | disableASPM 52 | 53 | enableCSO6 54 | 55 | enableTSO4 56 | 57 | enableTSO6 58 | 59 | fallbackMAC 60 | 61 | intrMitigate 62 | 53080 63 | rxPolling 64 | 65 | 66 | Driver_Version 67 | 2.4.2 68 | IOClass 69 | RTL8111 70 | IOPCIMatch 71 | 0x816810ec 0x81681186 0x250210ec 0x260010ec 72 | IOProbeScore 73 | 1000 74 | IOProviderClass 75 | IOPCIDevice 76 | Model 77 | RTL8111 78 | Vendor 79 | Realtek 80 | 81 | 82 | LSMinimumSystemVersion 83 | 10.14 84 | NSHumanReadableCopyright 85 | Copyright © 2013 Laura Müller. All rights reserved. 86 | OSBundleLibraries 87 | 88 | com.apple.iokit.IONetworkingFamily 89 | 1.5.0 90 | com.apple.iokit.IOPCIFamily 91 | 1.7 92 | com.apple.kpi.bsd 93 | 8.10.0 94 | com.apple.kpi.iokit 95 | 8.10.0 96 | com.apple.kpi.libkern 97 | 8.10.0 98 | com.apple.kpi.mach 99 | 8.10.0 100 | 101 | OSBundleRequired 102 | Network-Root 103 | 104 | 105 | -------------------------------------------------------------------------------- /OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCBatteryManager 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCBatteryManager 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCBatteryManager 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.3.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 14.2 35 | DTSDKBuild 36 | 23C53 37 | DTSDKName 38 | macosx14.2 39 | DTXcode 40 | 1520 41 | DTXcodeBuild 42 | 15C500b 43 | IOKitPersonalities 44 | 45 | IOSMBusController 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCBatteryManager 49 | IOClass 50 | SMCSMBusController 51 | IOMatchCategory 52 | SMCSMBusController 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | SMCBatteryManager 59 | 60 | CFBundleIdentifier 61 | ru.usrsse2.SMCBatteryManager 62 | IOClass 63 | SMCBatteryManager 64 | IOMatchCategory 65 | SMCBatteryManager 66 | IOProviderClass 67 | IOResources 68 | IOResourceMatch 69 | IOKit 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.6 74 | NSHumanReadableCopyright 75 | Copyright © 2018 usrsse2. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | as.vit9696.VirtualSMC 83 | 1.0.0 84 | com.apple.iokit.IOACPIFamily 85 | 1.0.0d1 86 | com.apple.iokit.IOSMBusFamily 87 | 1.0.0 88 | com.apple.kpi.bsd 89 | 8.0.0 90 | com.apple.kpi.iokit 91 | 8.0.0 92 | com.apple.kpi.libkern 93 | 8.0.0 94 | com.apple.kpi.mach 95 | 8.0.0 96 | com.apple.kpi.unsupported 97 | 8.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /OC/Kexts/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CPUFriend 11 | CFBundleIdentifier 12 | org.acidanthera.driver.CPUFriend 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CPUFriend 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | CPUFriend 48 | 49 | CFBundleIdentifier 50 | org.acidanthera.driver.CPUFriend 51 | IOClass 52 | CPUFriend 53 | IOMatchCategory 54 | CPUFriend 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | CPUFriendPlatform 61 | 62 | CFBundleIdentifier 63 | org.acidanthera.driver.CPUFriend 64 | IOClass 65 | CPUFriendData 66 | IOProbeScore 67 | 6000 68 | IOPropertyMatch 69 | 70 | IOCPUNumber 71 | 0 72 | 73 | IOProviderClass 74 | AppleACPICPU 75 | IOResourceMatch 76 | ACPI 77 | 78 | 79 | LSMinimumSystemVersion 80 | 10.8 81 | NSHumanReadableCopyright 82 | Copyright © 2017-2022 PMheart. All rights reserved. 83 | OSBundleCompatibleVersion 84 | 1.0 85 | OSBundleLibraries 86 | 87 | as.vit9696.Lilu 88 | 1.2.0 89 | com.apple.iokit.IOACPIFamily 90 | 1.0.0d1 91 | com.apple.kpi.bsd 92 | 10.0.0 93 | com.apple.kpi.dsep 94 | 10.0.0 95 | com.apple.kpi.iokit 96 | 10.0.0 97 | com.apple.kpi.libkern 98 | 10.0.0 99 | com.apple.kpi.mach 100 | 10.0.0 101 | com.apple.kpi.unsupported 102 | 10.0.0 103 | 104 | OSBundleRequired 105 | Root 106 | 107 | 108 | -------------------------------------------------------------------------------- /OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.7.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.7.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.6 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 10.0.0 92 | com.apple.kpi.dsep 93 | 10.0.0 94 | com.apple.kpi.iokit 95 | 10.0.0 96 | com.apple.kpi.libkern 97 | 10.0.0 98 | com.apple.kpi.mach 99 | 10.0.0 100 | com.apple.kpi.unsupported 101 | 10.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /OC/Kexts/IO80211FamilyLegacy.kext/Contents/PlugIns/AirPortBrcmNIC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 22A380010 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | AirPortBrcmNIC 11 | CFBundleGetInfoString 12 | 14.0, Copyright © 2006-2014 Apple Inc. All rights reserved. 13 | CFBundleIdentifier 14 | com.apple.driver.AirPort.BrcmNIC 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | AirPortBrcmNIC 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 14.0 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1400.1.1 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 22G5038a 35 | DTPlatformName 36 | macosx 37 | DTPlatformVersion 38 | 13.5 39 | DTSDKBuild 40 | 22G5038a 41 | DTSDKName 42 | macosx13.5.internal 43 | DTXcode 44 | 1430 45 | DTXcodeBuild 46 | 14E6097d 47 | IOKitPersonalities 48 | 49 | Broadcom 802.11 PCI 50 | 51 | CFBundleIdentifier 52 | com.apple.driver.AirPort.BrcmNIC 53 | IOClass 54 | AirPort_BrcmNIC 55 | IOMatchCategory 56 | IODefaultMatchCategory 57 | IONameMatch 58 | 59 | pci14e4,43ba 60 | pci14e4,43a3 61 | pci14e4,43a0 62 | 63 | IOProbeScore 64 | 1400 65 | IOProviderClass 66 | IOPCIDevice 67 | TruePowerOff 68 | 69 | 70 | 71 | LSMinimumSystemVersion 72 | 13.5 73 | OSBundleLibraries 74 | 75 | com.apple.driver.corecapture 76 | 1.0.0 77 | com.apple.driver.mDNSOffloadUserClient 78 | 1.0.0d7 79 | com.apple.iokit.IO80211FamilyLegacy 80 | 600.0 81 | com.apple.iokit.IONetworkingFamily 82 | 3.1 83 | com.apple.iokit.IOPCIFamily 84 | 2.8 85 | com.apple.iokit.IOSkywalkFamily 86 | 1.0 87 | com.apple.kpi.bsd 88 | 13.0.0 89 | com.apple.kpi.iokit 90 | 13.0.0 91 | com.apple.kpi.libkern 92 | 13.0.0 93 | com.apple.kpi.mach 94 | 13.0.0 95 | com.apple.kpi.private 96 | 14.0.0 97 | com.apple.kpi.unsupported 98 | 13.0.0 99 | 100 | OSBundleRequired 101 | Network-Root 102 | 103 | 104 | -------------------------------------------------------------------------------- /OC/Kexts/IOSkywalkFamily.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 22A380010 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | IOSkywalkFamily 11 | CFBundleIdentifier 12 | com.apple.iokit.IOSkywalkFamily 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IOSkywalkFamily 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 22G5038a 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 13.5 37 | DTSDKBuild 38 | 22G5038a 39 | DTSDKName 40 | macosx13.5.internal 41 | DTXcode 42 | 1430 43 | DTXcodeBuild 44 | 14E6097d 45 | IOKitPersonalities 46 | 47 | IOSkywalkKernelPipeBSDClient 48 | 49 | CFBundleIdentifier 50 | com.apple.iokit.IOSkywalkFamily 51 | IOClass 52 | IOSkywalkKernelPipeBSDClient 53 | IOProviderClass 54 | IOSkywalkInterface 55 | IOResourceMatch 56 | IOBSD 57 | 58 | IOSkywalkLegacyEthernet 59 | 60 | CFBundleIdentifier 61 | com.apple.iokit.IOSkywalkFamily 62 | IOClass 63 | IOSkywalkLegacyEthernet 64 | IOMatchCategory 65 | IOSkywalkLegacyEthernet 66 | IOProviderClass 67 | IOSkywalkEthernetInterface 68 | 69 | IOSkywalkNetworkBSDClient 70 | 71 | CFBundleIdentifier 72 | com.apple.iokit.IOSkywalkFamily 73 | IOClass 74 | IOSkywalkNetworkBSDClient 75 | IOProbeScore 76 | 1000 77 | IOProviderClass 78 | IOSkywalkNetworkInterface 79 | IOResourceMatch 80 | IOBSD 81 | 82 | 83 | LSMinimumSystemVersion 84 | 13.5 85 | NSHumanReadableCopyright 86 | Copyright © 2022 Apple Inc. All rights reserved. 87 | OSBundleCompatibleVersion 88 | 1.0 89 | OSBundleLibraries 90 | 91 | com.apple.driver.mDNSOffloadUserClient 92 | 1.0.0d6 93 | com.apple.iokit.IONetworkingFamily 94 | 3.2 95 | com.apple.kpi.bsd 96 | 15.0.0 97 | com.apple.kpi.iokit 98 | 15.0.0 99 | com.apple.kpi.libkern 100 | 15.0.0 101 | com.apple.kpi.mach 102 | 15.0.0 103 | com.apple.kpi.private 104 | 15.0.0 105 | com.apple.kpi.unsupported 106 | 15.0.0 107 | 108 | OSBundleRequired 109 | Network-Root 110 | 111 | 112 | -------------------------------------------------------------------------------- /OC/Kexts/BigSurSDXC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20A241123 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | BigSurSDXC 11 | CFBundleGetInfoString 12 | 1.9.0, Copyright Apple Inc. 2009-2020 13 | CFBundleIdentifier 14 | com.apple.driver.BigSurSDXC 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | BigSurSDXC 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.9.0 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.9.0 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 12E6178j 35 | DTPlatformName 36 | macosx 37 | DTPlatformVersion 38 | 11.6.1 39 | DTSDKBuild 40 | 20G219 41 | DTSDKName 42 | macosx11.6internal 43 | DTXcode 44 | 1240 45 | DTXcodeBuild 46 | 12E6178j 47 | IOKitPersonalities 48 | 49 | BigSurSDXC 50 | 51 | CFBundleIdentifier 52 | com.apple.driver.BigSurSDXC 53 | IONameMatch 54 | 55 | pci14e4,16bc 56 | 57 | IOClass 58 | BgSurSDXC 59 | IOPCIPauseCompatible 60 | 61 | IOPCITunnelCompatible 62 | 63 | IOProviderClass 64 | IOPCIDevice 65 | Protocol Characteristics 66 | 67 | Physical Interconnect 68 | Secure Digital 69 | Physical Interconnect Location 70 | Internal 71 | 72 | IOProbeScore 73 | 6000 74 | 75 | BigSurSDXCBlockStorageDevice 76 | 77 | CFBundleIdentifier 78 | com.apple.driver.BigSurSDXC 79 | Device Characteristics 80 | 81 | Product Name 82 | Built In SDXC Reader 83 | Vendor Name 84 | Apple 85 | 86 | IOClass 87 | BgSurSDXCBlockStorageDevice 88 | IOMediaIcon 89 | 90 | CFBundleIdentifier 91 | com.apple.iokit.IOSCSIArchitectureModelFamily 92 | IOBundleResourceFile 93 | SD.icns 94 | 95 | IOProviderClass 96 | BgSurSDXCSlot 97 | 98 | 99 | LSMinimumSystemVersion 100 | 11.6 101 | OSBundleLibraries 102 | 103 | com.apple.iokit.IOPCIFamily 104 | 2.0.0 105 | com.apple.iokit.IOReportFamily 106 | 1.0 107 | com.apple.iokit.IOStorageFamily 108 | 1.2.7 109 | com.apple.kpi.bsd 110 | 9.0.0 111 | com.apple.kpi.libkern 112 | 9.0.0 113 | com.apple.kpi.iokit 114 | 9.0.0 115 | com.apple.kpi.mach 116 | 9.0.0 117 | 118 | OSBundleRequired 119 | Local-Root 120 | 121 | 122 | -------------------------------------------------------------------------------- /OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportBrcmFixup 11 | CFBundleIdentifier 12 | as.lvs1974.AirportBrcmFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportBrcmFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 14.2 37 | DTSDKBuild 38 | 23C53 39 | DTSDKName 40 | macosx14.2 41 | DTXcode 42 | 1520 43 | DTXcodeBuild 44 | 15C500b 45 | IOKitPersonalities 46 | 47 | as.lvs1974.AirportBrcmFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.AirportBrcmFixup 51 | IOClass 52 | AirportBrcmFixup 53 | IOMatchCategory 54 | AirportBrcmFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | as.lvs1974.FakeAirportBrcmFixup 61 | 62 | CFBundleIdentifier 63 | as.lvs1974.AirportBrcmFixup 64 | IOClass 65 | FakeBrcm 66 | IOMatchCategory 67 | IODefaultMatchCategory 68 | IONameMatch 69 | 70 | pci14e4,43ba 71 | pci14e4,43a3 72 | pci14e4,43a0 73 | pci14e4,4331 74 | pci14e4,4353 75 | pci14e4,43b1 76 | pci14e4,43b2 77 | pci14e4,4357 78 | pci14e4,432b 79 | pci14e4,4311 80 | pci14e4,4312 81 | pci14e4,4313 82 | pci14e4,4318 83 | pci14e4,4319 84 | pci14e4,431a 85 | pci14e4,4320 86 | pci14e4,4324 87 | pci14e4,4325 88 | pci14e4,4328 89 | pci14e4,432c 90 | pci14e4,432d 91 | 92 | IOProbeScore 93 | 6000 94 | IOProviderClass 95 | IOPCIDevice 96 | TruePowerOff 97 | 98 | 99 | 100 | LSMinimumSystemVersion 101 | 10.8 102 | NSHumanReadableCopyright 103 | Copyright © 2017 lvs1974. All rights reserved. 104 | OSBundleCompatibleVersion 105 | 1.0 106 | OSBundleLibraries 107 | 108 | as.vit9696.Lilu 109 | 1.2.6 110 | com.apple.iokit.IOPCIFamily 111 | 2.7 112 | com.apple.kpi.bsd 113 | 12.0.0 114 | com.apple.kpi.dsep 115 | 12.0.0 116 | com.apple.kpi.iokit 117 | 12.0.0 118 | com.apple.kpi.libkern 119 | 12.0.0 120 | com.apple.kpi.mach 121 | 12.0.0 122 | com.apple.kpi.unsupported 123 | 12.0.0 124 | 125 | OSBundleRequired 126 | Network-Root 127 | 128 | 129 | -------------------------------------------------------------------------------- /MSR_CFG_unlock.md: -------------------------------------------------------------------------------- 1 | ### R720-15IKBN MSR 0xE2 CFG Lock 解锁 2 | 3 | =============== 4 | 5 | #### 什么是 MSR CFG Lock 解锁? 6 | 7 | MSR(Model Specific Register)是x86架构中的概念,指的是在x86架构处理器中,一系列用于控制CPU运行、功能开关、调试、跟踪程序执行、监测CPU性能等方面的寄存器。 8 | 9 | 大多数UEFI主板厂家,锁定了MSR寄存器的第15位为只读,也就是MSR 0xE2 Locking(BIOS 中叫CFG Lock)。苹果macOS系统的电源管理、CPU的P-state、C-state放在MSR寄存器里,MSR 0xE2被锁定为只读后,macOS系统的电源管理驱动扩展AppleIntelCPUPowerManagement一旦尝试去写入数据,系统就会马上崩溃。有些主板上有选项“CFG Lock”,其说明内容为”关闭或开启MSR 0xE2″,可以手动开关,有些主板则屏蔽了这个选项。当使用黑苹果时,必须解锁MSR 0xE2,否则无法使用苹果的原生电源管理。 10 | 11 | 联想等一些 OEM 设置了BIOS内部的变量,也就是说固化到了BIOS的固件代码里,如果不对 BIOS 进行物理修改就无法解锁它,对于这种情况,需要修改BIOS才能解锁CFG Lock。Lenovo R720-15IKBN就属于上述情况,因此要对BIOS进行修改。 12 | 13 | **刷机有风险,搞机须谨慎!失败会造成电脑变砖,没有救砖技术请不要尝试!本文仅供参考,对于读者自己造成的损坏不承担任何责任!** 14 | 15 | #### 环境准备 16 | 17 | - **插了稳定交流电源**的Lenovo R720-15IKBN 笔记本电脑 18 | - Windows 10,因为大部分操作都在Win环境下进行 19 | - macOS与OpenCore 20 | - 一个格式化文件系统为FAT32的U盘 21 | - 安静的没有人打扰您的环境 22 | 23 | #### 工具准备 24 | 25 | - Lenovo 官方 `4KCN27WW`版 BIOS 26 | 27 | 联想官方BIOS通常具有写保护措施,而27版BIOS没有写保护因此可以进行修改,BIOS降级程序可在官网输入主机编号后寻找下载到。 28 | 29 | 下载地址:https://newsupport.lenovo.com.cn/ 30 | 31 | - Intel CSME System Tools 32 | 33 | 用于Dump BIOS 固件,根据不同的平台选择不同的版本,这里选择v11 r37版。 34 | 35 | 下载地址:https://comsystem-tlt.ru/obzori/me-txe-region 36 | 37 | - UEFITool 38 | 39 | 查找BIOS中相关变量(字符串)的工具。 40 | 41 | 下载地址:https://github.com/LongSoft/UEFITool/releases 42 | 43 | - IRFExtractor 44 | 45 | 将UEFITool得到的PE32 image转换成文本的工具。 46 | 47 | 下载地址:https://github.com/LongSoft/Universal-IFR-Extractor/releases 48 | 49 | - easyUEFI或Bootice 50 | 51 | 用于修改UEFI启动项。 52 | 53 | #### BIOS 降级 54 | 55 | 进入UEFI BIOS 设置,将BIOS Back Flash设为Enabled,允许BIOS回滚刷新; 56 | 57 | 重启进入Windows,运行从官网下载的27版BIOS降级程序,安装完成后系统自动重启,开始降级过程。 **注意在降级过程中一定不要断开电源!** BIOS刷写成功后,电脑会自动重启数次,属于正常现象,不要断电源。 58 | 59 | 刷写后可能无法进入Win系统,重新进入UEFI BIOS设置,关闭安全启动,将SATA控制器工作模式设置为AHCI,保存设置后重启就能进入系统。 60 | 61 | #### 提取主板BIOS 62 | 63 | 进入系统后,打开`Intel CSME System Tools v11 r37/Flash Programming Tool/WIN64`,新建文本文档,输入以下代码 64 | 65 | ```shell 66 | cd /d %~dp0 67 | fptw64.exe -bios -d backup.fd 68 | ``` 69 | 70 | 保存后修改文件扩展名为`.cmd`,右键以管理员身份运行,提取主板BIOS,提取后的文件存储在同目录下,名字为`backup.fd`。 71 | 72 | #### 提取BIOS信息 73 | 74 | 打开UEFITool,菜单栏选择`File > Open image file...`,选择上一步提取出的`backup.fd`。 75 | 76 | 菜单栏选择`Action > Search...`,在弹出的对话框中选择`Text`,输入`CFG Lock`,搜索的结果在下方显示,双击`Unicode text "CFG Lock" in DriverSampleDxe/PE32 image section at header-offset 496F4h`定位到CFG Lock所在位置。 77 | 78 | 在定位到的位置右击`PE32 image section`,选择`Extarct as is...`,将PE32 image文件保存。 79 | 80 | 接下来,我们需要把PE32 image转换成我们能读懂的信息。 81 | 82 | 打开IFRExtractor,直接点击右侧加载按钮,打开上一步的PE32文件,再点击Extract,就会生成txt文本,并保存到相应的文件夹。 83 | 84 | #### 寻找需要的偏移量 85 | 86 | 打开转换的txt文件,搜索字符串`CFG Lock`,定位到CFG Lock位置,如下所示,不同机器可能不同: 87 | 88 | ```assembly 89 | 0x9B0B4 Form: View/Configure CPU Lock Options, FormId: 0x1012 {01 86 12 10 C3 00} 90 | 0x9B0BA One Of: CFG Lock, VarStoreInfo (VarOffset/VarName): 0x3C, VarStore: 0x3, QuestionId: 0x145, Size: 1, Min: 0x0, Max 0x1, Step: 0x0 {05 91 66 02 67 02 45 01 03 00 3C 00 10 10 00 01 00} 91 | 0x9B0CB One Of Option: Disabled, Value (8 bit): 0x0 {09 07 04 00 00 00 00} 92 | 0x9B0D2 One Of Option: Enabled, Value (8 bit): 0x1 (default) {09 07 03 00 30 00 01} 93 | 0x9B0D9 End One Of {29 02} 94 | ``` 95 | 96 | 其中 `CFG Lock, VarStoreInfo (VarOffset/VarName): 0x3C, VarStore: 0x3`就是我们要找的。 97 | 98 | `VarStoreInfo`的值是CFG Lock这个选项的地址,也可以说其在BIOS中的偏移量。后面的`VarStore`是BIOS默认值,此处为`0x3`。而我们想要解锁它就需要把它修改成`0x0`,即下面对应的Disabled Option,就是需要把`0x3C`这个偏移地址上的数值修改为`0x0`。 99 | 100 | **请注意,可变偏移量不仅对于每个主板是唯一的,甚至对于每个固件版本也是唯一的。所以读者应该自己寻找偏移量,切勿在不检查的情况下尝试使用本文中的偏移量。** 101 | 102 | #### 修改BIOS偏移量 103 | 104 | 这里使用的工具是RU.efi。 105 | 106 | 打开U盘,新建`EFI/BOOT/`目录,将RU.efi重命名为`BOOTX64.efi`放到该目录下。 107 | 108 | 重启系统,选择从U盘启动,按任意键即可进入RU工具。 109 | 110 | - 进入后按 alt+= 切换进 "ACPI Variable"; 111 | - 用PageUp/PageDown/上下方向键找到"CPUSetup"; 112 | - 回车进入,然后用上下左右方向键找到对应的地址(本文中是`0x3C`,那么就是纵坐标`0030`,横坐标`0C`的位置); 113 | - 回车,输入`0`就可以看到它变成了0,再按回车确认; 114 | - 按Ctrl +W来保存,保存的时候屏幕上会直接显示Updated OK,这说明写入成功; 115 | - 按Alt+Q 来退出,然后即可回到引导进入系统了,此时CFG已经解锁。 116 | 117 | #### 检查解锁情况 118 | 119 | 通过 ControlMsrE2 检查,将OpenCore自带的`Tools/ControlMsrE2.efi`加入到Config.plist配置文件中 。接下来,启动 OpenCore 并选择ControlMsrE2.efi条目。这应该会显示以下内容: 120 | 121 | ```assembly 122 | This firmware has UNLOCKED MSR 0xE2 register! 123 | ``` 124 | 125 | 说明MSR 0xE2解锁成功。 126 | 127 | #### 修改OpenCore配置文件 128 | 129 | 在Kernel Option中取消`AppleCpuPmCfgLock`和`AppleXcpmCfgLock`的勾选。 130 | 131 | 恭喜您完成MSR CFG Lock解锁全过程!现在您将拥有正确的 CPU 电源管理。 132 | 133 | #### 参考资料 134 | 135 | - [解锁CFG Lock | 张登友的博客 (zdynb.cn)](https://www.zdynb.cn/2020/jie-suo-cfg-lock.html) 136 | - [修复CFG锁-远景论坛-微软极客社区 (pcbeta.com)](https://bbs.pcbeta.com/viewthread-1899638-1-1.html) 137 | - [从Clover到OC (重难点:Insyde BIOS 解锁CFG Lock) - 知乎 (zhihu.com)](https://zhuanlan.zhihu.com/p/121655468) -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G217 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.3.2, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.3.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.3.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | ACPI PS/2 Nub 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Controller 51 | FindMouseDelay 52 | 100 53 | IOClass 54 | AppleACPIPS2Nub 55 | IONameMatch 56 | 57 | PNP0303 58 | PNP030B 59 | PNP0320 60 | 61 | IOProviderClass 62 | IOACPIPlatformDevice 63 | MouseNameMatch 64 | 65 | PNP0F03 66 | PNP0F0B 67 | PNP0F0E 68 | PNP0F13 69 | 70 | 71 | ApplePS2Controller 72 | 73 | CFBundleIdentifier 74 | as.acidanthera.voodoo.driver.PS2Controller 75 | IOClass 76 | ApplePS2Controller 77 | IONameMatch 78 | ps2controller 79 | IOProviderClass 80 | IOPlatformDevice 81 | Platform Profile 82 | 83 | Default 84 | 85 | MouseWakeFirst 86 | 87 | WakeDelay 88 | 10 89 | 90 | HPQOEM 91 | 92 | 1411 93 | ProBook 94 | 1619 95 | ProBook 96 | 161C 97 | ProBook 98 | 164F 99 | ProBook 100 | 167C 101 | ProBook 102 | 167E 103 | ProBook 104 | 1680 105 | ProBook 106 | 179B 107 | ProBook 108 | 179C 109 | ProBook 110 | 17A9 111 | ProBook 112 | 17F0 113 | ProBook 114 | 17F3 115 | ProBook 116 | 17F6 117 | ProBook 118 | 1942 119 | ProBook 120 | 1949 121 | ProBook 122 | 198F 123 | ProBook 124 | ProBook 125 | 126 | WakeDelay 127 | 0 128 | 129 | ProBook-102 130 | ProBook 131 | ProBook-87 132 | ProBook 133 | 134 | 135 | RM,deliverNotifications 136 | 137 | 138 | 139 | LSMinimumSystemVersion 140 | 10.11 141 | OSBundleCompatibleVersion 142 | 2.3.2 143 | OSBundleLibraries 144 | 145 | com.apple.iokit.IOACPIFamily 146 | 1.0.0d1 147 | com.apple.kpi.bsd 148 | 8.0.0 149 | com.apple.kpi.iokit 150 | 8.0.0 151 | com.apple.kpi.libkern 152 | 8.0.0 153 | com.apple.kpi.mach 154 | 8.0.0 155 | com.apple.kpi.unsupported 156 | 8.0.0 157 | 158 | OSBundleRequired 159 | Console 160 | 161 | 162 | -------------------------------------------------------------------------------- /OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | v1.0 9 | CFBundleIdentifier 10 | com.corpnewt.USBMap 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBMap 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | MacBookPro16,4-XHC 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBHostMergeProperties 29 | IOClass 30 | AppleUSBHostMergeProperties 31 | IOParentMatch 32 | 33 | IOPropertyMatch 34 | 35 | pcidebug 36 | 0:20:0 37 | 38 | 39 | IOProviderClass 40 | AppleUSBXHCISPT 41 | IOProviderMergeProperties 42 | 43 | kUSBMuxEnabled 44 | 45 | port-count 46 | 47 | EwAAAA== 48 | 49 | ports 50 | 51 | HS01 52 | 53 | UsbConnector 54 | 0 55 | port 56 | 57 | AQAAAA== 58 | 59 | usb-port-type 60 | 0 61 | usb-port-number 62 | 63 | AQAAAA== 64 | 65 | 66 | HS02 67 | 68 | UsbConnector 69 | 3 70 | port 71 | 72 | AgAAAA== 73 | 74 | usb-port-type 75 | 3 76 | usb-port-number 77 | 78 | AgAAAA== 79 | 80 | 81 | HS03 82 | 83 | UsbConnector 84 | 3 85 | port 86 | 87 | AwAAAA== 88 | 89 | usb-port-type 90 | 3 91 | usb-port-number 92 | 93 | AwAAAA== 94 | 95 | 96 | HS04 97 | 98 | UsbConnector 99 | 9 100 | port 101 | 102 | BAAAAA== 103 | 104 | usb-port-type 105 | 9 106 | usb-port-number 107 | 108 | BAAAAA== 109 | 110 | 111 | HS05 112 | 113 | UsbConnector 114 | 255 115 | port 116 | 117 | BgAAAA== 118 | 119 | usb-port-type 120 | 255 121 | usb-port-number 122 | 123 | BgAAAA== 124 | 125 | 126 | HS06 127 | 128 | UsbConnector 129 | 255 130 | port 131 | 132 | CwAAAA== 133 | 134 | usb-port-type 135 | 255 136 | usb-port-number 137 | 138 | CwAAAA== 139 | 140 | 141 | SS01 142 | 143 | UsbConnector 144 | 3 145 | port 146 | 147 | EQAAAA== 148 | 149 | usb-port-type 150 | 3 151 | usb-port-number 152 | 153 | EQAAAA== 154 | 155 | 156 | SS02 157 | 158 | UsbConnector 159 | 3 160 | port 161 | 162 | EgAAAA== 163 | 164 | usb-port-type 165 | 3 166 | usb-port-number 167 | 168 | EgAAAA== 169 | 170 | 171 | SS03 172 | 173 | UsbConnector 174 | 9 175 | port 176 | 177 | EwAAAA== 178 | 179 | usb-port-type 180 | 9 181 | usb-port-number 182 | 183 | EwAAAA== 184 | 185 | 186 | 187 | 188 | model 189 | MacBookPro16,4 190 | 191 | 192 | OSBundleRequired 193 | Root 194 | 195 | 196 | -------------------------------------------------------------------------------- /OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G217 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 2.3.2, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.3.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.3.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | ApplePS2Mouse 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Mouse 51 | HIDPointerAccelerationType 52 | HIDTrackpadAcceleration 53 | HIDScrollAccelerationType 54 | HIDTrackpadScrollAcceleration 55 | IOClass 56 | ApplePS2Mouse 57 | IOProviderClass 58 | ApplePS2MouseDevice 59 | Platform Profile 60 | 61 | Default 62 | 63 | ActLikeTrackpad 64 | 65 | ButtonCount 66 | 3 67 | Darwin 16+ 68 | 69 | ApplePreferenceCapability 70 | 71 | ApplePreferenceIdentifier 72 | com.apple.AppleMultitouchTrackpad 73 | MT Built-in 74 | 75 | MTHIDDevice 76 | 77 | SupportsGestureScrolling 78 | 79 | TrackpadEmbedded 80 | 81 | TrackpadFourFingerGestures 82 | 83 | TrackpadSecondaryClickCorners 84 | 85 | TrackpadThreeFingerDrag 86 | 87 | 88 | DefaultResolution 89 | 240 90 | DisableDevice 91 | 92 | DisableLEDUpdating 93 | 94 | FakeMiddleButton 95 | 96 | ForceDefaultResolution 97 | 98 | ForceSetResolution 99 | 100 | MiddleClickTime 101 | 100000000 102 | MouseCount 103 | 0 104 | MouseYInverter 105 | 1 106 | ProcessBluetoothMouseStopsTrackpad 107 | 108 | ProcessUSBMouseStopsTrackpad 109 | 110 | QuietTimeAfterTyping 111 | 500000000 112 | ResolutionMode 113 | 3 114 | ScrollResolution 115 | 5 116 | ScrollYInverter 117 | 1 118 | TrackpadScroll 119 | 120 | WakeDelay 121 | 1000 122 | 123 | HPQOEM 124 | 125 | 1411 126 | ProBook 127 | 1619 128 | ProBook 129 | 161C 130 | ProBook 131 | 164F 132 | ProBook 133 | 167C 134 | ProBook 135 | 167E 136 | ProBook 137 | 1680 138 | ProBook 139 | 179B 140 | ProBook 141 | 179C 142 | ProBook 143 | 17A9 144 | ProBook 145 | 17F0 146 | ProBook 147 | 17F3 148 | ProBook 149 | 17F6 150 | ProBook 151 | 1942 152 | ProBook 153 | 1949 154 | ProBook 155 | 198F 156 | ProBook 157 | ProBook 158 | 159 | ActLikeTrackpad 160 | 161 | DisableDevice 162 | 163 | 164 | ProBook-102 165 | ProBook 166 | ProBook-87 167 | ProBook 168 | 169 | 170 | ProductID 171 | 547 172 | RM,deliverNotifications 173 | 174 | USBMouseStopsTrackpad 175 | 0 176 | VendorID 177 | 1452 178 | 179 | 180 | LSMinimumSystemVersion 181 | 10.11 182 | OSBundleLibraries 183 | 184 | as.acidanthera.voodoo.driver.PS2Controller 185 | 2.3.2 186 | com.apple.iokit.IOHIDFamily 187 | 1.0.0b1 188 | com.apple.kpi.iokit 189 | 9.0.0 190 | com.apple.kpi.libkern 191 | 9.0.0 192 | com.apple.kpi.mach 193 | 9.0.0 194 | 195 | OSBundleRequired 196 | Console 197 | 198 | 199 | -------------------------------------------------------------------------------- /OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H626 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | RestrictEvents 11 | CFBundleIdentifier 12 | as.vit9696.RestrictEvents 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RestrictEvents 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 14.2 35 | DTSDKBuild 36 | 23C53 37 | DTSDKName 38 | macosx14.2 39 | DTXcode 40 | 1520 41 | DTXcodeBuild 42 | 15C500b 43 | IOKitPersonalities 44 | 45 | as.vit9696.RestrictEfiCheck 46 | 47 | CFBundleIdentifier 48 | as.vit9696.RestrictEvents 49 | IOClass 50 | IOService 51 | IOMatchCategory 52 | com_apple_driver_eficheck 53 | IONameMatch 54 | 55 | pci8086,1c41 56 | pci8086,1c42 57 | pci8086,1c43 58 | pci8086,1c44 59 | pci8086,1c46 60 | pci8086,1c47 61 | pci8086,1c49 62 | pci8086,1c4a 63 | pci8086,1c4b 64 | pci8086,1c4c 65 | pci8086,1c4d 66 | pci8086,1c4e 67 | pci8086,1c4f 68 | pci8086,1c50 69 | pci8086,1c52 70 | pci8086,1c5c 71 | pci8086,1d41 72 | pci8086,1e42 73 | pci8086,1e44 74 | pci8086,1e46 75 | pci8086,1e47 76 | pci8086,1e48 77 | pci8086,1e49 78 | pci8086,1e4a 79 | pci8086,1e53 80 | pci8086,1e55 81 | pci8086,1e56 82 | pci8086,1e57 83 | pci8086,1e58 84 | pci8086,1e59 85 | pci8086,1e5d 86 | pci8086,1e5e 87 | pci8086,1e5f 88 | pci8086,3b02 89 | pci8086,3b03 90 | pci8086,3b06 91 | pci8086,3b07 92 | pci8086,3b08 93 | pci8086,3b09 94 | pci8086,3b0a 95 | pci8086,3b0b 96 | pci8086,3b0f 97 | pci8086,3b12 98 | pci8086,3b14 99 | pci8086,3b16 100 | pci8086,8c44 101 | pci8086,8c4b 102 | pci8086,8cc1 103 | pci8086,8cc2 104 | pci8086,8cc3 105 | pci8086,8cc4 106 | pci8086,8cc6 107 | pci8086,8c41 108 | pci8086,8c42 109 | pci8086,8c44 110 | pci8086,8c46 111 | pci8086,8c49 112 | pci8086,8c4a 113 | pci8086,8c4b 114 | pci8086,8c4c 115 | pci8086,8c4e 116 | pci8086,8c4f 117 | pci8086,8c50 118 | pci8086,8c52 119 | pci8086,8c54 120 | pci8086,8c56 121 | pci8086,8c5c 122 | pci8086,8d44 123 | pci8086,8d47 124 | pci8086,9cc1 125 | pci8086,9cc2 126 | pci8086,9cc3 127 | pci8086,9cc5 128 | pci8086,9cc6 129 | pci8086,9cc7 130 | pci8086,9cc9 131 | pci8086,9c41 132 | pci8086,9c43 133 | pci8086,9c45 134 | pci8086,9d41 135 | pci8086,9d43 136 | pci8086,9d46 137 | pci8086,9d48 138 | pci8086,9d4b 139 | pci8086,9d4e 140 | pci8086,a145 141 | pci8086,a151 142 | pci8086,a306 143 | 144 | IOProbeScore 145 | 5000 146 | IOProviderClass 147 | IOPCIDevice 148 | 149 | as.vit9696.RestrictEvents 150 | 151 | CFBundleIdentifier 152 | as.vit9696.RestrictEvents 153 | IOClass 154 | RestrictEvents 155 | IOMatchCategory 156 | RestrictEvents 157 | IOProviderClass 158 | IOResources 159 | IOResourceMatch 160 | IOKit 161 | 162 | 163 | LSMinimumSystemVersion 164 | 10.8 165 | NSHumanReadableCopyright 166 | Copyright © 2020 vit9696. All rights reserved. 167 | OSBundleCompatibleVersion 168 | 1.0 169 | OSBundleLibraries 170 | 171 | as.vit9696.Lilu 172 | 1.2.0 173 | com.apple.kpi.bsd 174 | 12.0.0 175 | com.apple.kpi.dsep 176 | 12.0.0 177 | com.apple.kpi.iokit 178 | 12.0.0 179 | com.apple.kpi.libkern 180 | 12.0.0 181 | com.apple.kpi.mach 182 | 12.0.0 183 | com.apple.kpi.unsupported 184 | 12.0.0 185 | 186 | OSBundleRequired 187 | Root 188 | 189 | 190 | --------------------------------------------------------------------------------