├── .gitignore ├── Clover ├── FX504GE-SS.png ├── EFI │ └── CLOVER │ │ ├── ACPI │ │ └── patched │ │ │ ├── DSDT.aml │ │ │ ├── SSDT-EC.aml │ │ │ ├── SSDT-PNLF.aml │ │ │ ├── SSDT-UIAC.aml │ │ │ ├── SSDT-XHC.aml │ │ │ ├── SSDT-XOSI.aml │ │ │ ├── SSDT-DDGPU.aml │ │ │ └── SSDT-PNLFCFL.aml │ │ ├── drivers │ │ └── UEFI │ │ │ ├── Fat-64.efi │ │ │ ├── HFSPlus.efi │ │ │ ├── NTFS-64.efi │ │ │ ├── AudioDxe.efi │ │ │ ├── FSInject-64.efi │ │ │ ├── UsbKbDxe-64.efi │ │ │ ├── CsmVideoDxe-64.efi │ │ │ ├── EnglishDxe-64.efi │ │ │ ├── Ps2MouseDxe-64.efi │ │ │ ├── UsbMouseDxe-64.efi │ │ │ ├── AppleUISupport-64.efi │ │ │ ├── AptioMemoryFix-64.efi │ │ │ ├── HashServiceFix-64.efi │ │ │ ├── PartitionDxe-64.efi │ │ │ ├── ApfsDriverLoader-64.efi │ │ │ ├── AppleImageLoader-64.efi │ │ │ └── EmuVariableUefi-64.efi │ │ ├── kexts │ │ └── Other │ │ │ ├── Lilu.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── Lilu │ │ │ │ └── Info.plist │ │ │ ├── AppleALC.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── AppleALC │ │ │ ├── FakeSMC.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── FakeSMC │ │ │ │ └── Info.plist │ │ │ ├── NoTouchID.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── NoTouchID │ │ │ │ ├── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── USBInjectAll.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── USBInjectAll │ │ │ ├── WhateverGreen.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── WhateverGreen │ │ │ │ └── Info.plist │ │ │ ├── RealtekRTL8111.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── RealtekRTL8111 │ │ │ │ ├── Resources │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ │ ├── ACPIBatteryManager.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── ACPIBatteryManager │ │ │ │ └── Info.plist │ │ │ ├── VoodooPS2Controller.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooPS2Controller │ │ │ │ ├── PlugIns │ │ │ │ ├── VoodooPS2Mouse.kext │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── VoodooPS2Mouse │ │ │ │ │ │ └── Info.plist │ │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ │ │ └── Contents │ │ │ │ │ │ └── MacOS │ │ │ │ │ │ └── VoodooPS2Keyboard │ │ │ │ ├── VoodooPS2Trackpad.kext │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ └── VoodooPS2Trackpad │ │ │ │ │ │ └── Info.plist │ │ │ │ ├── VoodooPS2Mouse.kext.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ │ └── VoodooPS2Mouse │ │ │ │ │ │ └── Info.plist │ │ │ │ ├── VoodooPS2Keyboard.kext.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── DWARF │ │ │ │ │ │ │ └── VoodooPS2Keyboard │ │ │ │ │ │ └── Info.plist │ │ │ │ └── VoodooPS2Trackpad.kext.dSYM │ │ │ │ │ └── Contents │ │ │ │ │ ├── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ │ └── VoodooPS2Trackpad │ │ │ │ │ └── Info.plist │ │ │ │ └── Info.plist │ │ │ ├── SATA-300-series-unsupported.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ │ └── XHCI-unsupported.kext │ │ │ └── Contents │ │ │ └── Info.plist │ │ └── config.plist └── README.md ├── OpenCore ├── FX504GE-SS-OC.png ├── EFI │ ├── BOOT │ │ └── BOOTx64.efi │ └── OC │ │ ├── ACPI │ │ ├── DSDT.aml │ │ ├── SSDT-EC.aml │ │ ├── SSDT-PLUG.aml │ │ ├── SSDT-PNLF.aml │ │ ├── SSDT-UIAC.aml │ │ ├── SSDT-XHC.aml │ │ ├── SSDT-XOSI.aml │ │ ├── SSDT-DDGPU.aml │ │ └── SSDT-PNLFCFL.aml │ │ ├── OpenCore.efi │ │ ├── Drivers │ │ ├── UsbKbDxe.efi │ │ ├── VBoxHfs.efi │ │ ├── XhciDxe.efi │ │ ├── VirtualSmc.efi │ │ ├── AppleUsbKbDxe.efi │ │ ├── NvmExpressDxe.efi │ │ ├── ApfsDriverLoader.efi │ │ └── FwRuntimeServices.efi │ │ └── Kexts │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ └── Info.plist │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── AppleALC │ │ ├── CPUFriend.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── CPUFriend │ │ │ └── Info.plist │ │ ├── NoTouchID.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── NoTouchID │ │ │ ├── Info.plist │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ ├── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ │ └── Contents │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooGPIO │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Info.plist │ │ │ └── VoodooI2CServices.kext │ │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooI2CServices │ │ │ │ ├── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── Info.plist │ │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCSuperIO │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── Info.plist │ │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCProcessor │ │ │ └── Info.plist │ │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── USBInjectAll │ │ ├── VoodooI2CHID.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooI2CHID │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── Info.plist │ │ ├── WhateverGreen.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── WhateverGreen │ │ │ └── Info.plist │ │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ ├── Resources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── Info.plist │ │ ├── SMCLightSensor.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCLightSensor │ │ │ └── Info.plist │ │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ └── Info.plist │ │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ ├── PlugIns │ │ │ └── VoodooPS2Keyboard.kext │ │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ └── Info.plist │ │ ├── SATA-300-series-unsupported.kext │ │ └── Contents │ │ │ └── Info.plist │ │ └── XHCI-unsupported.kext │ │ └── Contents │ │ └── Info.plist └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Clover/FX504GE-SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/FX504GE-SS.png -------------------------------------------------------------------------------- /OpenCore/FX504GE-SS-OC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/FX504GE-SS-OC.png -------------------------------------------------------------------------------- /OpenCore/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/DSDT.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-UIAC.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-XHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-XHC.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-DDGPU.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-DDGPU.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/ACPI/SSDT-PNLFCFL.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/ACPI/SSDT-PNLFCFL.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/UsbKbDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/UsbKbDxe.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/VBoxHfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/VBoxHfs.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/XhciDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/XhciDxe.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/DSDT.aml -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/VirtualSmc.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-EC.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/Fat-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/Fat-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/NTFS-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/NTFS-64.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/AppleUsbKbDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/AppleUsbKbDxe.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/NvmExpressDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/NvmExpressDxe.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-PNLF.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-UIAC.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-XHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-XHC.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-XOSI.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-DDGPU.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-DDGPU.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/ACPI/patched/SSDT-PNLFCFL.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/ACPI/patched/SSDT-PNLFCFL.aml -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/FSInject-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/FSInject-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/UsbKbDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/UsbKbDxe-64.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Drivers/FwRuntimeServices.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Drivers/FwRuntimeServices.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/CsmVideoDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/CsmVideoDxe-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/EnglishDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/EnglishDxe-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/Ps2MouseDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/Ps2MouseDxe-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/UsbMouseDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/UsbMouseDxe-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/AppleUISupport-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/AppleUISupport-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/AptioMemoryFix-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/AptioMemoryFix-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/HashServiceFix-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/HashServiceFix-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/PartitionDxe-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/PartitionDxe-64.efi -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/AppleImageLoader-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/AppleImageLoader-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/drivers/UEFI/EmuVariableUefi-64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/drivers/UEFI/EmuVariableUefi-64.efi -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/OpenCore/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext.dSYM/Contents/Resources/DWARF/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext.dSYM/Contents/Resources/DWARF/VoodooPS2Mouse -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext.dSYM/Contents/Resources/DWARF/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext.dSYM/Contents/Resources/DWARF/VoodooPS2Keyboard -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext.dSYM/Contents/Resources/DWARF/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/ASUS-FX504GE-Hackintosh/HEAD/Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext.dSYM/Contents/Resources/DWARF/VoodooPS2Trackpad -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.as.acidanthera.voodoo.driver.PS2Mouse 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 2.1.0 17 | CFBundleVersion 18 | 2.1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.as.acidanthera.voodoo.driver.PS2Keyboard 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 2.1.0 17 | CFBundleVersion 18 | 2.1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.as.acidanthera.voodoo.driver.PS2Trackpad 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 2.1.0 17 | CFBundleVersion 18 | 2.1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Discontinuation 2 | The laptop has been sold. The PR owner bought a MacBook Pro and has no intention to update this anymore. 3 | 4 | # ASUS-FX504GE-Hackintosh 5 | Necessary configurations and instructions to get [ASUS TUF FX504GE laptop](https://www.ultrabookreview.com/19725-asus-tuf-fx504ge-review/) working with macOS Mojave 10.14.x and Catalina 10.15.x. High Sierra (10.13.x) can work on these laptops too, but Mojave or higher is strongly recommended. The following should also work with all ASUS FX504G.. laptop variants. 6 | 7 | # Notes 8 | 1. 128 GB NVMe SSD is used for installing macOS 9 | 2. APFS partition format has to be used 10 | 3. If you are upgrading from the previous version and your partition is HFS+, better boot the installer, unmount the partition and convert it to APFS 11 | 12 | # macOS Catalina (10.15) Kexts Requirements 13 | 1. Lilu 1.3.7+ 14 | 2. WhateverGreen 1.3.0+ 15 | 3. AppleALC 1.3.9+ 16 | 17 | # BIOS Settings 18 | 1. Secure Boot: Disabled 19 | 2. SATA mode: AHCI 20 | 3. DVMT-Preallocated: 64MB 21 | 22 | ## Guide for Clover users (DISCONTINUED) 23 | 24 | [Here](Clover/README.md) 25 | 26 | ## Guide for OpenCore users 27 | 28 | [Here](OpenCore/README.md) 29 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SATA-300-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-300-series-unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | SATA-300-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 | Intel300SeriesAHCI-unsupported 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AppleAHCIPort 27 | Chipset Name 28 | 300 Series Chipset 29 | IOClass 30 | AppleIntelPchSeriesAHCI 31 | IONameMatch 32 | 33 | pci8086,a353 34 | pci8086,9dd3 35 | 36 | IOProbeScore 37 | 2000 38 | IOProviderClass 39 | IOPCIDevice 40 | Vendor Name 41 | Intel 42 | 43 | 44 | OSBundleRequired 45 | Local-Root 46 | 47 | 48 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/SATA-300-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-300-series-unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | SATA-300-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 | Intel300SeriesAHCI-unsupported 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AppleAHCIPort 27 | Chipset Name 28 | 300 Series Chipset 29 | IOClass 30 | AppleIntelPchSeriesAHCI 31 | IONameMatch 32 | 33 | pci8086,a353 34 | pci8086,9dd3 35 | 36 | IOProbeScore 37 | 2000 38 | IOProviderClass 39 | IOPCIDevice 40 | Vendor Name 41 | Intel 42 | 43 | 44 | OSBundleRequired 45 | Local-Root 46 | 47 | 48 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19A471t 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NoTouchID 11 | CFBundleIdentifier 12 | xyz.racermaster.NoTouchID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NoTouchID 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 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | NoTouchID 44 | 45 | CFBundleIdentifier 46 | xyz.racermaster.NoTouchID 47 | IOClass 48 | NoTouchID 49 | IOMatchCategory 50 | NoTouchID 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | OSBundleCompatibleVersion 58 | 1.0 59 | OSBundleLibraries 60 | 61 | as.vit9696.Lilu 62 | 1.2.0 63 | com.apple.kpi.bsd 64 | 12.0.0 65 | com.apple.kpi.dsep 66 | 12.0.0 67 | com.apple.kpi.iokit 68 | 12.0.0 69 | com.apple.kpi.libkern 70 | 12.0.0 71 | com.apple.kpi.mach 72 | 12.0.0 73 | com.apple.kpi.unsupported 74 | 12.0.0 75 | 76 | OSBundleRequired 77 | Root 78 | 79 | 80 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19A471t 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NoTouchID 11 | CFBundleIdentifier 12 | xyz.racermaster.NoTouchID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NoTouchID 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 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | NoTouchID 44 | 45 | CFBundleIdentifier 46 | xyz.racermaster.NoTouchID 47 | IOClass 48 | NoTouchID 49 | IOMatchCategory 50 | NoTouchID 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | OSBundleCompatibleVersion 58 | 1.0 59 | OSBundleLibraries 60 | 61 | as.vit9696.Lilu 62 | 1.2.0 63 | com.apple.kpi.bsd 64 | 12.0.0 65 | com.apple.kpi.dsep 66 | 12.0.0 67 | com.apple.kpi.iokit 68 | 12.0.0 69 | com.apple.kpi.libkern 70 | 12.0.0 71 | com.apple.kpi.mach 72 | 12.0.0 73 | com.apple.kpi.unsupported 74 | 12.0.0 75 | 76 | OSBundleRequired 77 | Root 78 | 79 | 80 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.4.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2018 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.4.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2018 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19B88 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CServices 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CServices 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CServices 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11C29 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1130 39 | DTXcodeBuild 40 | 11C29 41 | IOKitPersonalities 42 | 43 | VoodooI2CLogger 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CServices 47 | IOClass 48 | VoodooI2CLogger 49 | IOMatchCategory 50 | VoodooI2CLogger 51 | IOProviderClass 52 | VoodooI2CServices 53 | 54 | VoodooI2CServices 55 | 56 | CFBundleIdentifier 57 | com.alexandred.VoodooI2CServices 58 | IOClass 59 | VoodooI2CServices 60 | IOMatchCategory 61 | VoodooI2CServices 62 | IOProviderClass 63 | IOResources 64 | 65 | 66 | LSMinimumSystemVersion 67 | 10.11 68 | NSHumanReadableCopyright 69 | Copyright © 2017 Alexandre Daoud. All rights reserved. 70 | OSBundleCompatibleVersion 71 | 1.0.0 72 | OSBundleLibraries 73 | 74 | com.apple.kpi.iokit 75 | 14 76 | com.apple.kpi.libkern 77 | 14 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | SMCLightSensor 44 | 45 | CFBundleIdentifier 46 | ru.usrsse2.SMCLightSensor 47 | IOClass 48 | SMCLightSensor 49 | IOMatchCategory 50 | SMCLightSensor 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | NSHumanReadableCopyright 58 | Copyright © 2018 vit9696. All rights reserved. 59 | OSBundleCompatibleVersion 60 | 1.0.0 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.2.0 65 | as.vit9696.VirtualSMC 66 | 1.0.0 67 | com.apple.iokit.IOACPIFamily 68 | 1.0.0d1 69 | com.apple.kpi.bsd 70 | 12.0.0 71 | com.apple.kpi.dsep 72 | 12.0.0 73 | com.apple.kpi.iokit 74 | 12.0.0 75 | com.apple.kpi.libkern 76 | 12.0.0 77 | com.apple.kpi.mach 78 | 12.0.0 79 | com.apple.kpi.unsupported 80 | 12.0.0 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/NoTouchID.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 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2CHID.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 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/NoTouchID.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 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.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 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.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 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.0.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ru.joedm.SMCSuperIO 46 | 47 | CFBundleIdentifier 48 | ru.joedm.SMCSuperIO 49 | IOClass 50 | SMCSuperIO 51 | IOMatchCategory 52 | SMCSuperIO 53 | IOPCIClassMatch 54 | 0x06010000&0xffff0000 55 | IOProviderClass 56 | IOPCIDevice 57 | IOResourceMatch 58 | ACPI 59 | 60 | 61 | NSHumanReadableCopyright 62 | Copyright © 2018 joedm. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.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 | 12.0.0 75 | com.apple.kpi.dsep 76 | 12.0.0 77 | com.apple.kpi.iokit 78 | 12.0.0 79 | com.apple.kpi.libkern 80 | 12.0.0 81 | com.apple.kpi.mach 82 | 12.0.0 83 | com.apple.kpi.unsupported 84 | 12.0.0 85 | 86 | OSBundleRequired 87 | Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.0.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.SMCProcessor 46 | 47 | CFBundleIdentifier 48 | as.vit9696.SMCProcessor 49 | IOClass 50 | SMCProcessor 51 | IOMatchCategory 52 | SMCProcessor 53 | IONameMatch 54 | processor 55 | IOPropertyMatch 56 | 57 | processor-index 58 | 0 59 | 60 | IOProviderClass 61 | IOACPIPlatformDevice 62 | IOResourceMatch 63 | ACPI 64 | 65 | 66 | NSHumanReadableCopyright 67 | Copyright © 2018 vit9696. All rights reserved. 68 | OSBundleCompatibleVersion 69 | 1.0 70 | OSBundleLibraries 71 | 72 | as.vit9696.Lilu 73 | 1.2.0 74 | as.vit9696.VirtualSMC 75 | 1.0.0 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.bsd 79 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G1114 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.2.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 16E185 37 | DTSDKName 38 | macosx10.12 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | RTL8111 PCIe Adapter 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.RealtekRTL8111 49 | Driver_Version 50 | 2.2.2 51 | IOClass 52 | RTL8111 53 | IOPCIMatch 54 | 0x816810ec 0x81681186 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOPCIDevice 59 | Model 60 | RTL8111 61 | Vendor 62 | Realtek 63 | disableASPM 64 | 65 | enableCSO6 66 | 67 | enableEEE 68 | 69 | enableTSO4 70 | 71 | enableTSO6 72 | 73 | intrMitigate 74 | 53080 75 | rxPolling 76 | 77 | 78 | 79 | NSHumanReadableCopyright 80 | Copyright © 2013 Laura Müller. All rights reserved. 81 | OSBundleLibraries 82 | 83 | com.apple.iokit.IONetworkingFamily 84 | 1.5.0 85 | com.apple.iokit.IOPCIFamily 86 | 1.7 87 | com.apple.kpi.bsd 88 | 8.10.0 89 | com.apple.kpi.iokit 90 | 8.10.0 91 | com.apple.kpi.libkern 92 | 8.10.0 93 | com.apple.kpi.mach 94 | 8.10.0 95 | 96 | OSBundleRequired 97 | Network-Root 98 | 99 | 100 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G1114 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.2.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 16E185 37 | DTSDKName 38 | macosx10.12 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | RTL8111 PCIe Adapter 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.RealtekRTL8111 49 | Driver_Version 50 | 2.2.2 51 | IOClass 52 | RTL8111 53 | IOPCIMatch 54 | 0x816810ec 0x81681186 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOPCIDevice 59 | Model 60 | RTL8111 61 | Vendor 62 | Realtek 63 | disableASPM 64 | 65 | enableCSO6 66 | 67 | enableEEE 68 | 69 | enableTSO4 70 | 71 | enableTSO6 72 | 73 | intrMitigate 74 | 53080 75 | rxPolling 76 | 77 | 78 | 79 | NSHumanReadableCopyright 80 | Copyright © 2013 Laura Müller. All rights reserved. 81 | OSBundleLibraries 82 | 83 | com.apple.iokit.IONetworkingFamily 84 | 1.5.0 85 | com.apple.iokit.IOPCIFamily 86 | 1.7 87 | com.apple.kpi.bsd 88 | 8.10.0 89 | com.apple.kpi.iokit 90 | 8.10.0 91 | com.apple.kpi.libkern 92 | 8.10.0 93 | com.apple.kpi.mach 94 | 8.10.0 95 | 96 | OSBundleRequired 97 | Network-Root 98 | 99 | 100 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/XHCI-unsupported.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Version 0.9.2, Copyright 2018, RehabMan (GPLv2) 7 | CFBundleIdentifier 8 | org.rehabman.injector.XHCI.unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | XHCI-unsupported 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 0.9.2 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.9.2 21 | IOKitPersonalities 22 | 23 | AppleUSBXHCILPTH 9-series 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.usb.AppleUSBXHCIPCI 27 | IOClass 28 | AppleUSBXHCILPTH 29 | IOPCIPauseCompatible 30 | 31 | IOPCIPrimaryMatch 32 | 0x8cb18086 33 | IOPCITunnelCompatible 34 | 35 | IOProbeScore 36 | 900 37 | IOProviderClass 38 | IOPCIDevice 39 | 40 | AppleUSBXHCILPTH X99 41 | 42 | CFBundleIdentifier 43 | com.apple.driver.usb.AppleUSBXHCIPCI 44 | alternate:IOClass 45 | AppleUSBXHCILPTHB 46 | IOClass 47 | AppleUSBXHCILPTH 48 | IOPCIPauseCompatible 49 | 50 | IOPCIPrimaryMatch 51 | 0x8d318086 52 | IOPCITunnelCompatible 53 | 54 | IOProbeScore 55 | 900 56 | IOProviderClass 57 | IOPCIDevice 58 | 59 | AppleUSBXHCISPT 200-X299 60 | 61 | CFBundleIdentifier 62 | com.apple.driver.usb.AppleUSBXHCIPCI 63 | IOClass 64 | AppleUSBXHCISPT 65 | IOPCIPauseCompatible 66 | 67 | IOPCIPrimaryMatch 68 | 0xa2af8086 69 | IOPCITunnelCompatible 70 | 71 | IOProbeScore 72 | 900 73 | IOProviderClass 74 | IOPCIDevice 75 | 76 | AppleUSBXHCISPT 300 77 | 78 | CFBundleIdentifier 79 | com.apple.driver.usb.AppleUSBXHCIPCI 80 | IOClass 81 | AppleUSBXHCISPT 82 | IOPCIPauseCompatible 83 | 84 | IOPCIPrimaryMatch 85 | 0x9ded8086 0xa36d8086 86 | IOPCITunnelCompatible 87 | 88 | IOProbeScore 89 | 900 90 | IOProviderClass 91 | IOPCIDevice 92 | 93 | 94 | OSBundleRequired 95 | Root 96 | 97 | 98 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/XHCI-unsupported.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Version 0.9.2, Copyright 2018, RehabMan (GPLv2) 7 | CFBundleIdentifier 8 | org.rehabman.injector.XHCI.unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | XHCI-unsupported 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 0.9.2 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.9.2 21 | IOKitPersonalities 22 | 23 | AppleUSBXHCILPTH 9-series 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.usb.AppleUSBXHCIPCI 27 | IOClass 28 | AppleUSBXHCILPTH 29 | IOPCIPauseCompatible 30 | 31 | IOPCIPrimaryMatch 32 | 0x8cb18086 33 | IOPCITunnelCompatible 34 | 35 | IOProbeScore 36 | 900 37 | IOProviderClass 38 | IOPCIDevice 39 | 40 | AppleUSBXHCILPTH X99 41 | 42 | CFBundleIdentifier 43 | com.apple.driver.usb.AppleUSBXHCIPCI 44 | alternate:IOClass 45 | AppleUSBXHCILPTHB 46 | IOClass 47 | AppleUSBXHCILPTH 48 | IOPCIPauseCompatible 49 | 50 | IOPCIPrimaryMatch 51 | 0x8d318086 52 | IOPCITunnelCompatible 53 | 54 | IOProbeScore 55 | 900 56 | IOProviderClass 57 | IOPCIDevice 58 | 59 | AppleUSBXHCISPT 200-X299 60 | 61 | CFBundleIdentifier 62 | com.apple.driver.usb.AppleUSBXHCIPCI 63 | IOClass 64 | AppleUSBXHCISPT 65 | IOPCIPauseCompatible 66 | 67 | IOPCIPrimaryMatch 68 | 0xa2af8086 69 | IOPCITunnelCompatible 70 | 71 | IOProbeScore 72 | 900 73 | IOProviderClass 74 | IOPCIDevice 75 | 76 | AppleUSBXHCISPT 300 77 | 78 | CFBundleIdentifier 79 | com.apple.driver.usb.AppleUSBXHCIPCI 80 | IOClass 81 | AppleUSBXHCISPT 82 | IOPCIPauseCompatible 83 | 84 | IOPCIPrimaryMatch 85 | 0x9ded8086 0xa36d8086 86 | IOPCITunnelCompatible 87 | 88 | IOProbeScore 89 | 900 90 | IOProviderClass 91 | IOPCIDevice 92 | 93 | 94 | OSBundleRequired 95 | Root 96 | 97 | 98 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17D102 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CPUFriend 11 | CFBundleIdentifier 12 | org.vanilla.driver.CPUFriend 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CPUFriend 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 17E189 37 | DTSDKName 38 | macosx10.13 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | CPUFriend 46 | 47 | CFBundleIdentifier 48 | org.vanilla.driver.CPUFriend 49 | IOClass 50 | CPUFriend 51 | IOMatchCategory 52 | CPUFriend 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | CPUFriendPlatform 59 | 60 | CFBundleIdentifier 61 | org.vanilla.driver.CPUFriend 62 | IOClass 63 | CPUFriendData 64 | IOProbeScore 65 | 6000 66 | IOPropertyMatch 67 | 68 | IOCPUNumber 69 | 0 70 | 71 | IOProviderClass 72 | AppleACPICPU 73 | IOResourceMatch 74 | ACPI 75 | 76 | 77 | NSHumanReadableCopyright 78 | Copyright © 2017 - 2019 PMheart. All rights reserved. 79 | OSBundleCompatibleVersion 80 | 1.0 81 | OSBundleLibraries 82 | 83 | as.vit9696.Lilu 84 | 1.2.0 85 | com.apple.iokit.IOACPIFamily 86 | 1.0.0d1 87 | com.apple.kpi.bsd 88 | 12.0.0 89 | com.apple.kpi.dsep 90 | 12.0.0 91 | com.apple.kpi.iokit 92 | 12.0.0 93 | com.apple.kpi.libkern 94 | 12.0.0 95 | com.apple.kpi.mach 96 | 12.0.0 97 | com.apple.kpi.unsupported 98 | 12.0.0 99 | 100 | OSBundleRequired 101 | Root 102 | 103 | 104 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | IOSMBusController 44 | 45 | CFBundleIdentifier 46 | ru.usrsse2.SMCBatteryManager 47 | IOClass 48 | SMCSMBusController 49 | IOMatchCategory 50 | SMCSMBusController 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | SMCBatteryManager 57 | 58 | CFBundleIdentifier 59 | ru.usrsse2.SMCBatteryManager 60 | IOClass 61 | SMCBatteryManager 62 | IOMatchCategory 63 | SMCBatteryManager 64 | IOProviderClass 65 | IOResources 66 | IOResourceMatch 67 | IOKit 68 | 69 | 70 | NSHumanReadableCopyright 71 | Copyright © 2018 usrsse2. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0.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.iokit.IOSMBusFamily 83 | 1.0.0 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 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.3.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.3.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | PlugIns/VoodooGPIO.kext 10 | 11 | cdhash 12 | 13 | 7MJTmumI5o/hDeDuv1eljg5oN/E= 14 | 15 | requirement 16 | cdhash H"a894b0070fddd513f8784e0ae9ef23404754e591" or cdhash H"ecc2539ae988e68fe10de0eebf57a58e0e6837f1" 17 | 18 | PlugIns/VoodooI2CServices.kext 19 | 20 | cdhash 21 | 22 | GHalEFEL570AE8QZwMUNODDSVuE= 23 | 24 | requirement 25 | cdhash H"30013f03ed34b37067abc2bbd76f62c293426537" or cdhash H"1876a510510be7bd0013c419c0c50d3830d256e1" 26 | 27 | 28 | rules 29 | 30 | ^Resources/ 31 | 32 | ^Resources/.*\.lproj/ 33 | 34 | optional 35 | 36 | weight 37 | 1000 38 | 39 | ^Resources/.*\.lproj/locversion.plist$ 40 | 41 | omit 42 | 43 | weight 44 | 1100 45 | 46 | ^Resources/Base\.lproj/ 47 | 48 | weight 49 | 1010 50 | 51 | ^version.plist$ 52 | 53 | 54 | rules2 55 | 56 | .*\.dSYM($|/) 57 | 58 | weight 59 | 11 60 | 61 | ^(.*/)?\.DS_Store$ 62 | 63 | omit 64 | 65 | weight 66 | 2000 67 | 68 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 69 | 70 | nested 71 | 72 | weight 73 | 10 74 | 75 | ^.* 76 | 77 | ^Info\.plist$ 78 | 79 | omit 80 | 81 | weight 82 | 20 83 | 84 | ^PkgInfo$ 85 | 86 | omit 87 | 88 | weight 89 | 20 90 | 91 | ^Resources/ 92 | 93 | weight 94 | 20 95 | 96 | ^Resources/.*\.lproj/ 97 | 98 | optional 99 | 100 | weight 101 | 1000 102 | 103 | ^Resources/.*\.lproj/locversion.plist$ 104 | 105 | omit 106 | 107 | weight 108 | 1100 109 | 110 | ^Resources/Base\.lproj/ 111 | 112 | weight 113 | 1010 114 | 115 | ^[^/]+$ 116 | 117 | nested 118 | 119 | weight 120 | 10 121 | 122 | ^embedded\.provisionprofile$ 123 | 124 | weight 125 | 20 126 | 127 | ^version\.plist$ 128 | 129 | weight 130 | 20 131 | 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19B88 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooGPIO 11 | CFBundleIdentifier 12 | org.coolstar.VoodooGPIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooGPIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11C29 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1130 39 | DTXcodeBuild 40 | 11C29 41 | IOKitPersonalities 42 | 43 | VoodooGPIOCannonLakeH 44 | 45 | CFBundleIdentifier 46 | org.coolstar.VoodooGPIO 47 | IOClass 48 | VoodooGPIOCannonLakeH 49 | IONameMatch 50 | 51 | INT3450 52 | 53 | IOProviderClass 54 | IOService 55 | 56 | VoodooGPIOCannonLakeLP 57 | 58 | CFBundleIdentifier 59 | org.coolstar.VoodooGPIO 60 | IOClass 61 | VoodooGPIOCannonLakeLP 62 | IONameMatch 63 | 64 | INT34BB 65 | 66 | IOProviderClass 67 | IOService 68 | 69 | VoodooGPIOSunrisePointH 70 | 71 | CFBundleIdentifier 72 | org.coolstar.VoodooGPIO 73 | IOClass 74 | VoodooGPIOSunrisePointH 75 | IONameMatch 76 | 77 | INT345D 78 | 79 | IOProviderClass 80 | IOService 81 | 82 | VoodooGPIOSunrisePointLP 83 | 84 | CFBundleIdentifier 85 | org.coolstar.VoodooGPIO 86 | IOClass 87 | VoodooGPIOSunrisePointLP 88 | IONameMatch 89 | 90 | INT344B 91 | 92 | IOProviderClass 93 | IOService 94 | 95 | 96 | LSMinimumSystemVersion 97 | 10.12 98 | NSHumanReadableCopyright 99 | Copyright © 2017 CoolStar. All rights reserved. 100 | OSBundleCompatibleVersion 101 | 1.1 102 | OSBundleLibraries 103 | 104 | com.apple.iokit.IOACPIFamily 105 | 1.4 106 | com.apple.kpi.iokit 107 | 13.0 108 | com.apple.kpi.libkern 109 | 13.0 110 | com.apple.kpi.mach 111 | 13.0 112 | 113 | OSBundleRequired 114 | Root 115 | 116 | 117 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ACPIBatteryManager 11 | CFBundleGetInfoString 12 | 1.90, Copyright 2011 Apple Inc., RehabMan 2012 13 | CFBundleIdentifier 14 | org.rehabman.driver.AppleSmartBatteryManager 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ACPIBatteryManager 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.90 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.90 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 9F2000 35 | DTPlatformVersion 36 | GM 37 | DTSDKBuild 38 | 12D75 39 | DTSDKName 40 | macosx10.8 41 | DTXcode 42 | 0941 43 | DTXcodeBuild 44 | 9F2000 45 | IOKitPersonalities 46 | 47 | ACPI AC Adapter 48 | 49 | CFBundleIdentifier 50 | org.rehabman.driver.AppleSmartBatteryManager 51 | IOClass 52 | ACPIACAdapter 53 | IONameMatch 54 | ACPI0003 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOACPIPlatformDevice 59 | 60 | ACPI Battery Manager 61 | 62 | CFBundleIdentifier 63 | org.rehabman.driver.AppleSmartBatteryManager 64 | Configuration 65 | 66 | Correct16bitSignedCurrentRate 67 | 68 | CorrectCorruptCapacities 69 | 70 | CurrentDischargeRateMax 71 | 20000 72 | EstimateCycleCountDivisor 73 | 6 74 | FirstPollDelay 75 | 4000 76 | StartupDelay 77 | 0 78 | UseDesignVoltageForCurrentCapacity 79 | 80 | UseDesignVoltageForDesignCapacity 81 | 82 | UseDesignVoltageForMaxCapacity 83 | 84 | UseExtendedBatteryInformationMethod 85 | 86 | UseExtraBatteryInformationMethod 87 | 88 | 89 | IOClass 90 | AppleSmartBatteryManager 91 | IONameMatch 92 | PNP0C0A 93 | IOProbeScore 94 | 1000 95 | IOProviderClass 96 | IOACPIPlatformDevice 97 | 98 | 99 | NSHumanReadableCopyright 100 | Copyright © 2011 Apple Inc. All rights reserved, RehabMan 2012 101 | OSBundleLibraries 102 | 103 | com.apple.iokit.IOACPIFamily 104 | 1.0d1 105 | com.apple.kpi.iokit 106 | 9.0 107 | com.apple.kpi.libkern 108 | 9.0 109 | 110 | OSBundleRequired 111 | Root 112 | Source Code 113 | https://github.com/RehabMan/OS-X-ACPI-Battery-Driver 114 | 115 | 116 | -------------------------------------------------------------------------------- /OpenCore/README.md: -------------------------------------------------------------------------------- 1 | # OpenCore notes 2 | Configurations here are considered experimental. Use at your own risk. 3 | 4 | Tested version: 0.5.4 5 | 6 | # Configurations 7 | 8 | ## ACPI 9 | ### Add 10 | 1. `DSDT.aml` (Patched one) 11 | 2. `SSDT-DDGPU.aml` (Disable discrete graphics card) 12 | 3. `SSDT-PLUG.aml` (Alternative for Clover's `PluginType`) 13 | 4. `SSDT-PNLF.aml` (Backlight support) 14 | 5. `SSDT-PNLFCFL.aml` (Backlight support for Coffee Lake machines) 15 | 6. `SSDT-EC.aml` (Override AppleBusPowerController profile for Catalina beta 5) 16 | 7. `SSDT-UIAC.aml` (Disable unused USB ports) 17 | 8. `SSDT-XOSI.aml` (TBD) 18 | 9. `SSDT-XHC.aml` (USB3) 19 | 20 | ### Patch 21 | 1. `Rename EC0 to EC` (Really need it?) 22 | 2. `Rename _OSI to XOSI` 23 | 3. `Rename HDAS to HDEF` (Audio) 24 | 25 | ### Quirks 26 | All `NO`. 27 | 28 | ## Booter 29 | ### Quirks 30 | Enabled: 31 | 1. `AvoidRuntimeDefrag` 32 | 2. `DevirtualiseMmio` 33 | 3. `DisableVariableWrite` (NVRAM) 34 | 4. `SetupVirtualMap` 35 | 5. `ShrinkMemoryMap` 36 | 37 | ## DeviceProperties 38 | ### Add 39 | Only the important configurations are shown here: 40 | 1. `PciRoot(0x0)/Pci(0x1f,0x3)` (Audio - ALC255) 41 | 1. `layout-id` as `0x03000000` (which is 3) 42 | 2. `PciRoot(0x0)/Pci(0x2,0x0)` (Graphics - Intel UHD 630) 43 | 1. `AAPL,ig-platform-id` as `0x00009b3e` (which is 0x3E9B0000) 44 | 2. `device-id` as `0x9b3e0000` (which is 0x00003E9B) 45 | 3. `disable-external-gpu` as `0x01000000` (which is 1, disabling discrete graphics card) 46 | 4. `framebuffer-unifiedmem` as `0x00000080`, `framebuffer-stolenmem` as `0x00003001` and `framebuffer-fbmem` as `0x00009000` (increase VRAM from 1536 MB to 2048 MB) 47 | 48 | ## Kernel 49 | ### Add 50 | Orders matter. Think about which kexts should load before which. 51 | 1. **Lilu** (First of all) 52 | 2. **VirtualSMC** (Second always) 53 | 3. **CPUFriend** (CPU power management) 54 | 4. **CPUFriendDataProvider** (CPU power management profile) 55 | 5. SMCProcessor 56 | 6. SMCSuperIO (maybe not) 57 | 7. SMCLightSensor (maybe not) 58 | 8. **SMCBatteryManager** 59 | 9. **WhateverGreen** (Graphics) 60 | 10. **AppleALC** (Audio) 61 | 11. NoTouchID 62 | 12. **VoodooPS2Controller** (PS/2 keyboard) (Must also be installed at `/Library/Extensions`) 63 | 13. **USBInjectAll** (USB ports, built-in webcam) 64 | 14. RealtekRTL8111 (LAN internet) 65 | 15. **XHCI-unsupported** (USB3) 66 | 16. SATA-300-series-unsupported (SATA drives) 67 | 68 | ### Quirks 69 | 1. `AppleCpuPmCfgLock` enabled (maybe not) 70 | 2. `AppleXcpmCfgLock` enabled 71 | 3. `DisableIoMapper` **enabled** (Disable VT-d) 72 | 4. `ThirdPartyDrives` **enabled** (TRIM for SSD) 73 | 5. `XhciPortLimit` **disabled** (no need) 74 | 75 | ## Misc 76 | ### Boot 77 | 1. `ConsoleBehaviourOs` as `ForceGraphics` 78 | 2. `ConsoleBehaviourUi` as `ForceText` 79 | 3. `HibernateMode` as `None` 80 | 4. `Resolution` as `1920x1080` (Or your actual screen size) 81 | 5. `ShowPicker` and `UsePicker` enabled 82 | 83 | ### Security 84 | 1. `AllowNvramReset` enabled (If you want to) 85 | 2. `ExposeSensitiveData` as `3` or `4` 86 | 87 | ## NVRAM 88 | ### Add 89 | 1. `7C436110-AB2A-4BBB-A880-FE41995C9F82` 90 | 1. `boot-args` containing: 91 | 1. `darkwake=0` (Sleep/wake) 92 | 2. `-lilubetaall -vsmcbeta -alcbeta -wegbeta` (If you are on a newer beta) 93 | 3. `-v debug=0x100 keepsyms=1` (Debugging, optional) 94 | 4. `-no_compat_check` (In case OS doesn't support your machine) 95 | 5. `-igfxmlr enable-dpcd-max-link-rate-fix` (Read WhateverGreen README) 96 | 2. `LegacyEnable` enabled (Emulating NVRAM) 97 | 98 | ## PlatformInfo 99 | 1. `Automatic` **enabled** 100 | 2. `Update*` options **enabled** 101 | 102 | ### Generic 103 | This is where you put SMBIOS data, make sure you provide the following: 104 | 1. `MLB` 105 | 2. `ROM` (MAC address) 106 | 3. `SpoofVendor` **enabled** 107 | 4. `SystemProductName` as `MacBookPro15,2` or similar 108 | 5. `SystemSerialNumber` 109 | 6. `SystemUUID` 110 | **These values are masked from the provided config file, make sure you enter your own before testing!** 111 | 112 | ## UEFI 113 | 1. `ConnectDrivers` **enabled** 114 | 115 | ### Drivers (must-have) 116 | 1. `UsbKbDxe.efi` 117 | 2. `VboxHfs.efi` 118 | 3. `ApfsDriverLoader.efi` 119 | 4. `FwRuntimeServices.efi` (UEFI + AptioMemoryFix) 120 | 5. `VirtualSMC.efi` 121 | 6. `NvmExpressDxe.efi` (NVMe SSD) 122 | 7. `XhciDxe.efi` (Peripherals) 123 | 124 | ### Input 125 | 1. `KeySupport` disabled (already use `UsbKbDxe.efi`) 126 | 127 | ### Protocols 128 | 1. `ConsoleControl` enabled 129 | 130 | ### Quirks 131 | 1. `ClearScreenOnModeSwitch` enabled 132 | 2. `ProvideConsoleGop` enabled 133 | 3. `RequestBootVarRouting` enabled 134 | 4. `SanitiseClearScreen` enabled 135 | 136 | ![Screenshot](FX504GE-SS-OC.png?raw=true) -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19A526h 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.0.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.0.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.0.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11M382q 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19A526e 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1100 41 | DTXcodeBuild 42 | 11M382q 43 | IOKitPersonalities 44 | 45 | ACPI PS/2 Nub 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Controller 49 | FindMouseDelay 50 | 100 51 | IOClass 52 | AppleACPIPS2Nub 53 | IONameMatch 54 | 55 | PNP0303 56 | PNP030B 57 | PNP0320 58 | 59 | IOProviderClass 60 | IOACPIPlatformDevice 61 | MouseNameMatch 62 | 63 | PNP0F03 64 | PNP0F0B 65 | PNP0F0E 66 | PNP0F13 67 | 68 | 69 | ApplePS2Controller 70 | 71 | CFBundleIdentifier 72 | as.acidanthera.voodoo.driver.PS2Controller 73 | IOClass 74 | ApplePS2Controller 75 | IONameMatch 76 | ps2controller 77 | IOProviderClass 78 | IOPlatformDevice 79 | Platform Profile 80 | 81 | Default 82 | 83 | MouseWakeFirst 84 | 85 | WakeDelay 86 | 10 87 | 88 | HPQOEM 89 | 90 | 1411 91 | ProBook 92 | 1619 93 | ProBook 94 | 161C 95 | ProBook 96 | 164F 97 | ProBook 98 | 167C 99 | ProBook 100 | 167E 101 | ProBook 102 | 1680 103 | ProBook 104 | 179B 105 | ProBook 106 | 179C 107 | ProBook 108 | 17A9 109 | ProBook 110 | 17F0 111 | ProBook 112 | 17F3 113 | ProBook 114 | 17F6 115 | ProBook 116 | 1942 117 | ProBook 118 | 1949 119 | ProBook 120 | 198F 121 | ProBook 122 | ProBook 123 | 124 | WakeDelay 125 | 0 126 | 127 | ProBook-102 128 | ProBook 129 | ProBook-87 130 | ProBook 131 | 132 | 133 | RM,deliverNotifications 134 | 135 | 136 | 137 | OSBundleCompatibleVersion 138 | 2.0.2 139 | OSBundleLibraries 140 | 141 | com.apple.iokit.IOACPIFamily 142 | 1.0.0d1 143 | com.apple.kpi.bsd 144 | 8.0.0 145 | com.apple.kpi.iokit 146 | 8.0.0 147 | com.apple.kpi.libkern 148 | 8.0.0 149 | com.apple.kpi.mach 150 | 8.0.0 151 | com.apple.kpi.unsupported 152 | 8.0.0 153 | 154 | OSBundleRequired 155 | Console 156 | 157 | 158 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.1.0, 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.1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ACPI PS/2 Nub 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Controller 49 | FindMouseDelay 50 | 100 51 | IOClass 52 | AppleACPIPS2Nub 53 | IONameMatch 54 | 55 | PNP0303 56 | PNP030B 57 | PNP0320 58 | 59 | IOProviderClass 60 | IOACPIPlatformDevice 61 | MouseNameMatch 62 | 63 | PNP0F03 64 | PNP0F0B 65 | PNP0F0E 66 | PNP0F13 67 | 68 | 69 | ApplePS2Controller 70 | 71 | CFBundleIdentifier 72 | as.acidanthera.voodoo.driver.PS2Controller 73 | IOClass 74 | ApplePS2Controller 75 | IONameMatch 76 | ps2controller 77 | IOProviderClass 78 | IOPlatformDevice 79 | Platform Profile 80 | 81 | Default 82 | 83 | MouseWakeFirst 84 | 85 | WakeDelay 86 | 10 87 | 88 | HPQOEM 89 | 90 | 1411 91 | ProBook 92 | 1619 93 | ProBook 94 | 161C 95 | ProBook 96 | 164F 97 | ProBook 98 | 167C 99 | ProBook 100 | 167E 101 | ProBook 102 | 1680 103 | ProBook 104 | 179B 105 | ProBook 106 | 179C 107 | ProBook 108 | 17A9 109 | ProBook 110 | 17F0 111 | ProBook 112 | 17F3 113 | ProBook 114 | 17F6 115 | ProBook 116 | 1942 117 | ProBook 118 | 1949 119 | ProBook 120 | 198F 121 | ProBook 122 | ProBook 123 | 124 | WakeDelay 125 | 0 126 | 127 | ProBook-102 128 | ProBook 129 | ProBook-87 130 | ProBook 131 | 132 | 133 | RM,deliverNotifications 134 | 135 | 136 | 137 | OSBundleCompatibleVersion 138 | 2.1.0 139 | OSBundleLibraries 140 | 141 | com.apple.iokit.IOACPIFamily 142 | 1.0.0d1 143 | com.apple.kpi.bsd 144 | 8.0.0 145 | com.apple.kpi.iokit 146 | 8.0.0 147 | com.apple.kpi.libkern 148 | 8.0.0 149 | com.apple.kpi.mach 150 | 8.0.0 151 | com.apple.kpi.unsupported 152 | 8.0.0 153 | 154 | OSBundleRequired 155 | Console 156 | 157 | 158 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 2.1.0, 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.1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ApplePS2Mouse 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Mouse 49 | HIDPointerAccelerationType 50 | HIDTrackpadAcceleration 51 | HIDScrollAccelerationType 52 | HIDTrackpadScrollAcceleration 53 | IOClass 54 | ApplePS2Mouse 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | ActLikeTrackpad 62 | 63 | ButtonCount 64 | 3 65 | Darwin 16+ 66 | 67 | ApplePreferenceCapability 68 | 69 | ApplePreferenceIdentifier 70 | com.apple.AppleMultitouchTrackpad 71 | MT Built-in 72 | 73 | MTHIDDevice 74 | 75 | SupportsGestureScrolling 76 | 77 | TrackpadEmbedded 78 | 79 | TrackpadFourFingerGestures 80 | 81 | TrackpadSecondaryClickCorners 82 | 83 | TrackpadThreeFingerDrag 84 | 85 | 86 | DefaultResolution 87 | 240 88 | DisableDevice 89 | 90 | DisableLEDUpdating 91 | 92 | FakeMiddleButton 93 | 94 | ForceDefaultResolution 95 | 96 | ForceSetResolution 97 | 98 | MiddleClickTime 99 | 100000000 100 | MouseCount 101 | 0 102 | MouseYInverter 103 | 1 104 | ProcessBluetoothMouseStopsTrackpad 105 | 106 | ProcessUSBMouseStopsTrackpad 107 | 108 | QuietTimeAfterTyping 109 | 500000000 110 | ResolutionMode 111 | 3 112 | ScrollResolution 113 | 5 114 | ScrollYInverter 115 | 1 116 | TrackpadScroll 117 | 118 | WakeDelay 119 | 1000 120 | 121 | HPQOEM 122 | 123 | 1411 124 | ProBook 125 | 1619 126 | ProBook 127 | 161C 128 | ProBook 129 | 164F 130 | ProBook 131 | 167C 132 | ProBook 133 | 167E 134 | ProBook 135 | 1680 136 | ProBook 137 | 179B 138 | ProBook 139 | 179C 140 | ProBook 141 | 17A9 142 | ProBook 143 | 17F0 144 | ProBook 145 | 17F3 146 | ProBook 147 | 17F6 148 | ProBook 149 | 1942 150 | ProBook 151 | 1949 152 | ProBook 153 | 198F 154 | ProBook 155 | ProBook 156 | 157 | ActLikeTrackpad 158 | 159 | DisableDevice 160 | 161 | 162 | ProBook-102 163 | ProBook 164 | ProBook-87 165 | ProBook 166 | 167 | 168 | ProductID 169 | 547 170 | RM,deliverNotifications 171 | 172 | USBMouseStopsTrackpad 173 | 0 174 | VendorID 175 | 1452 176 | 177 | 178 | OSBundleLibraries 179 | 180 | as.acidanthera.voodoo.driver.PS2Controller 181 | 2.1.0 182 | com.apple.iokit.IOHIDFamily 183 | 1.0.0b1 184 | com.apple.kpi.iokit 185 | 9.0.0 186 | com.apple.kpi.libkern 187 | 9.0.0 188 | com.apple.kpi.mach 189 | 9.0.0 190 | 191 | OSBundleRequired 192 | Console 193 | 194 | 195 | -------------------------------------------------------------------------------- /Clover/README.md: -------------------------------------------------------------------------------- 1 | # Clover notes 2 | 1. Clover bootloader r4954+ for macOS Catalina (10.15) 3 | 2. For Clover v2.5k, **the new UEFI drivers directory is now** `/EFI/CLOVER/drivers/UEFI`, make sure you move every UEFI driver from the old (Clover v2.4k) directory (`/EFI/CLOVER/drivers64UEFI`) to this directory after you upgraded Clover, **except for HFSPlus-64.efi** as there has been a new version of it that works with Clover v2.5k and should come pre-installed by default by the Clover v2.5k installer. 4 | 5 | # Pre-installation 6 | Get yourself a Mojave/Catalina USB installer with Clover installed. Important Clover settings (via Clover Configurator) are: 7 | 1. Acpi SSDT `PluginType` checked 8 | 2. Graphics: Inject Intel checked 9 | 3. Kernel Patches `Kernel LAPIC`, `KernelPM` and `AppleRTC` enabled 10 | 4. SMBIOS: MacBookPro15,2 11 | 5. UEFI Drivers 12 | 1. **EmuVariableUefi-64** (Native UEFI won't work with macOS) 13 | 1. **ApfsDriverLoader-64** (If your OS partition is APFS) 14 | 1. **AptioMemoryFix-64.efi** (Required for ASUS BIOS, APTIO V) 15 | 1. **PartitionDxe-64** 16 | 1. CsmVideoDxe64 17 | 1. UsbKbDxe-64 18 | 1. UsbMouseDxe-64 19 | 1. NvmExpressDxe-64.efi (If you use NVMe SSD) 20 | 1. HFSPlus-64 (If you have HFS+ partitions) - **If you use Clover v2.5k, it should be named as just HFSPlus.efi** 21 | 1. NTFS-64 (If you have NTFS partitions) 22 | 23 | Mandatory kexts installed to `/EFI/CLOVER/kexts/Other`: **FakeSMC**, **VoodooPS2Controller**, **Lilu** 24 | 25 | # Post Configuration 26 | Any changes made to kexts installed under `/Library/Extensions` are to be followed by `sudo kextcache -i /`. 27 | Every external kext mentioned is assumed to be the latest. 28 | ## First Steps 29 | 1. DSDT files generated by Clover to the EFI partition 30 | 2. DSDT tables to drop: `MATS` and `DMAR` 31 | 3. Drop all _DSM methods 32 | ## CPU Power Management 33 | 1. Clover ACPI `PluginType` enabled 34 | 2. Clover Kernel Patches `Kernel LAPIC`, `KernelPM` and `AppleRTC` enabled 35 | 3. ACPIBatteryManager kext installed to `/EFI/CLOVER/kexts/Other` 36 | ## ALC255 Realtek Audio 37 | Internal speaker and microphone work. If headphone output produces weird audio, set volume balance to be either left or right. This issue has not been seen on Catalina. 38 | 1. `/System/Library/Extensions/AppleGFXHDA.kext` **must be removed** (ID matched but not actually compatible) 39 | 2. AppleALC kext installed to `/EFI/CLOVER/kexts/Other` 40 | 3. Clover Audio injection `Inject=3` (`ResetHDA` may be enabled) 41 | ## PS/2 Keyboard 42 | **Custom-built** [VoodooPS2Controller](https://github.com/acidanthera/VoodooPS2) kext installed to `/Library/Extensions` and `/EFI/CLOVER/kexts/Other` (using keyboard in Recovery mode) 43 | 44 | This kext has its own CAPS lock workaround, plus setting `Swap command and option` value to `false` inside `VoodooPS2Keyboard` 's `Info.plist`, you can grab it from this repository. 45 | 46 | ``` 47 | // Simplified code 48 | // CAPS lock may not work properly with Keyboard Viewer active, might be improved in the future 49 | if (adbKeyCode == 0x39 && version_major >= 16) // Caps Lock workaround 50 | { 51 | clock_get_uptime(&now_abs); 52 | dispatchKeyboardEventX(adbKeyCode, goingDown, now_abs); 53 | return true; 54 | } 55 | ``` 56 | 57 | ## Intel UHD 630 Graphics 58 | 1. Enabled by `device-properties` injection (`PciRoot(0)/Pci(0x02,0)`) with Clover's `Inject Intel` option **unchecked** 59 | 2. WhateverGreen kext installed to `/EFI/CLOVER/kexts/Other` 60 | 3. Useful additional boot flags: `-igfxmlr enable-dpcd-max-link-rate-fix ` 61 | ## Sleep and Wake 62 | 1. Applied static patching of `USB _PRW 0x6D (instant wake)` **for Skylake** (credits to [MegaStood](https://github.com/MegaStood/Hackintosh-FX504GE-ES72)) 63 | 2. Patch `_PRW` method for `XDCI` device as follows: 64 | ``` 65 | Device (XDCI) 66 | { 67 | ... 68 | Method (_PRW, 0, NotSerialized) // _PRW: Power Resources for Wake 69 | { 70 | Return (Package (0x02) 71 | { 72 | 0x6D, 73 | Zero 74 | }) 75 | } 76 | ... 77 | } 78 | ``` 79 | 3. **Remove** `_PRW` method from `CNVW` device 80 | ### Backlight Control 81 | Via WhateverGreen. Remove AppleBacklightFixup if present. 82 | 1. Latest `SSDT-PNLF.aml` and `SSDT-PNLFCFL.aml` installed to `/EFI/CLOVER/ACPI/patched` 83 | 2. Brightness adjustment keys working by modifying `/EFI/CLOVER/ACPI/patched/DSDT.aml` 84 | ``` 85 | Scope (_SB.PCI0.LPCB.EC0) { 86 | ... 87 | Method (_Q11, 0, NotSerialized) // _Qxx: EC Query 88 | { 89 | Notify (PS2K, 0x0405) // Brightness down 90 | } 91 | Method (_Q12, 0, NotSerialized) // _Qxx: EC Query 92 | { 93 | Notify (PS2K, 0x0406) // Brightness up 94 | } 95 | ... 96 | } 97 | ``` 98 | ### HDMI Port + Audio 99 | No thorough test on this. 100 | 1. Disable WhateverGreen's HDMI injection by adding a boot flag `-igfxnohdmi` 101 | 2. `device-properties` combination of `framebuffer-con1-type`, `framebuffer-con1-pipe` and `AAPL01,override-no-connect` based on [this post](https://www.tonymacx86.com/threads/uhd-630-no-hdmi-audio.265490/page-2#post-1858289) 102 | ## USB 2.0/3.1 Ports 103 | 1. Clover USB injection `Inject=false` 104 | 2. USBInjectAll, XHCI-300-series-injector and XHCI-unsupported kexts installed to `/EFI/CLOVER/kexts/Other` 105 | 3. `SSDT-XHC.aml` installed to `/EFI/CLOVER/ACPI/patched` for better USB support 106 | 4. Disable unused USB ports via `/EFI/CLOVER/APCI/patched/SSDT-UIAC.aml` 107 | 5. Override AppleBusPowerController profile (and fix **bootloop on Catalina beta 5**) via `/EFI/CLOVER/ACPI/patched/SSDT-EC.aml` 108 | ## Realtek LAN 109 | 1. [RealtekRTL8111](https://www.insanelymac.com/forum/topic/287161-new-driver-for-realtek-rtl8111/) kext installed to `/Library/Extensions` and `/EFI/CLOVER/kexts/Other` (using internet in Recovery mode) 110 | ## SATA controller 111 | 1. SATA-300-series-unsupported kext installed to `/EFI/CLOVER/kexts/Other` 112 | ## I2C ELAN1200 Precision TouchPad (`pci8086,a368`) 113 | ### ** Caution: Latest unofficial VoodooI2C may cause kernel panic whenever patched DSDT.aml is used, there's no way around that yet ** 114 | 1. VoodooI2C kexts [version 2.2](https://github.com/alexandred/VoodooI2C) or later (VoodooI2C + VoodooI2CHID) 115 | 2. DSDT patch: **\[Windows\] Windows 10 Patch** 116 | 3. Patch `TPD0` inside `/EFI/CLOVER/ACPI/patched/DSDT.aml` as follows: 117 | ``` 118 | Device (TPD0) 119 | { 120 | ... 121 | 122 | Name (SBFG, ResourceTemplate () 123 | { 124 | GpioInt (Level, ActiveLow, ExclusiveAndWake, PullDefault, 0x0000, 125 | "\\_SB.PCI0.GPI0", 0x00, ResourceConsumer, , 126 | ) 127 | { // Pin list 128 | 0x0000 129 | } 130 | }) 131 | 132 | ... 133 | 134 | Method (_CRS, 0, NotSerialized) // _CRS: Current Resource Settings 135 | { 136 | Return (ConcatenateResTemplate (SBFB, SBFG)) // ** MODIFIED ** 137 | } 138 | ``` 139 | 140 | Trackpad works okay but with minor stuttering. 141 | 142 | ## Miscellaneous 143 | 1. NoTouchID kext installed to `/EFI/CLOVER/kexts/Other` (MacBookPro15,2 has Touch ID) 144 | 145 | # Things that do not work 146 | ## NVIDIA Geforce 1050 Ti (Optimus) 147 | Discrete graphic, we probably never see the day. For now, use `SSDT-DDGPU.aml` (in `/EFI/CLOVER/ACPI/patched`) to power it off. 148 | ## Intel Wi-Fi AC 9560 149 | Intel built-in Wi-Fi chipset, we again probably never see the day. 150 | ## Intel Bluetooth 151 | It never works if Wi-Fi doesn't work. 152 | 153 | ![Screenshot](FX504GE-SS.png?raw=true) 154 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 17G65 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | FakeSMC 11 | CFBundleIdentifier 12 | org.netkas.driver.FakeSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakeSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 6.26-357-gceb835ea.1800 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1800 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | FakeSMC 46 | 47 | CFBundleIdentifier 48 | org.netkas.driver.FakeSMC 49 | Configuration 50 | 51 | Clover 52 | 53 | BEMB 54 | 55 | BEMB 56 | flag 57 | 58 | EPCI 59 | 60 | EPCI 61 | ui32 62 | 63 | RBr 64 | 65 | RBr 66 | ch8* 67 | 68 | REV 69 | 70 | REV 71 | {rev 72 | 73 | RPlt 74 | 75 | RPlt 76 | ch8* 77 | 78 | 79 | ExceptionKeys 80 | 81 | CLKH 82 | 1 83 | CLKT 84 | 1 85 | MSDW 86 | 1 87 | NATJ 88 | 1 89 | NATi 90 | 1 91 | NTOK 92 | 1 93 | WKTP 94 | 0 95 | 96 | Keys 97 | 98 | $Adr 99 | 100 | ui32 101 | 102 | AAADAA== 103 | 104 | 105 | $Num 106 | 107 | ui8 108 | 109 | AQ== 110 | 111 | 112 | ACID 113 | 114 | ch8* 115 | 116 | hfwETdgSevQ= 117 | 118 | 119 | ALI0 120 | 121 | {ali 122 | 123 | BwECAA== 124 | 125 | 126 | ALRV 127 | 128 | ui16 129 | 130 | AAE= 131 | 132 | 133 | ALV0 134 | 135 | {alv 136 | 137 | ARAGdQEgALYO4A== 138 | 139 | 140 | FNum 141 | 142 | ui8 143 | 144 | AA== 145 | 146 | 147 | LsNM 148 | 149 | ui8 150 | 151 | AQ== 152 | 153 | 154 | LsbV 155 | 156 | {rev 157 | 158 | AQQKAAY= 159 | 160 | 161 | MSLD 162 | 163 | ui8 164 | 165 | AA== 166 | 167 | 168 | MSSD 169 | 170 | si8 171 | 172 | BQ== 173 | 174 | 175 | MSSP 176 | 177 | si8 178 | 179 | BQ== 180 | 181 | 182 | NATJ 183 | 184 | ui8 185 | 186 | AA== 187 | 188 | 189 | OSK0 190 | 191 | ch8* 192 | 193 | b3VyaGFyZHdvcmtieXRoZXNld29y 194 | ZHNndWFyZGVkcGw= 195 | 196 | 197 | OSK1 198 | 199 | ch8* 200 | 201 | ZWFzZWRvbnRzdGVhbChjKUFwcGxl 202 | Q29tcHV0ZXJJbmM= 203 | 204 | 205 | REV 206 | 207 | {rev 208 | 209 | ATAPAAAD 210 | 211 | 212 | RMde 213 | 214 | char 215 | 216 | QQ== 217 | 218 | 219 | RVBF 220 | 221 | {rev 222 | 223 | ATAPAAAD 224 | 225 | 226 | RVUF 227 | 228 | {rev 229 | 230 | ATAPAAAD 231 | 232 | 233 | 234 | Types 235 | 236 | BEMB 237 | flag 238 | CLKC 239 | {clc 240 | CLKH 241 | {clh 242 | CLKT 243 | ui32 244 | CLWK 245 | ui32 246 | EPCI 247 | flag 248 | LSSS 249 | {lso 250 | MSDS 251 | ui8 252 | MSDW 253 | flag 254 | MSPS 255 | {msp 256 | RPlt 257 | ch8* 258 | 259 | debug 260 | 261 | smc-compatible 262 | smc-napa 263 | trace 264 | 265 | 266 | IOClass 267 | FakeSMC 268 | IOMatchCategory 269 | FakeSMC 270 | IOProviderClass 271 | AppleACPIPlatformExpert 272 | IOResourceMatch 273 | FakeSMCKeyStore 274 | RM,Build 275 | Release-rehabman 276 | RM,Version 277 | FakeSMC 1800 278 | 279 | FakeSMCKeyStore 280 | 281 | CFBundleIdentifier 282 | org.netkas.driver.FakeSMC 283 | IOClass 284 | FakeSMCKeyStore 285 | IOMatchCategory 286 | FakeSMCKeyStore 287 | IOProviderClass 288 | IOResources 289 | IOResourceMatch 290 | IOKit 291 | IOUserClientClass 292 | FakeSMCKeyStoreUserClient 293 | 294 | 295 | NSHumanReadableCopyright 296 | Copyright © 2017 netkas. All rights reserved. 297 | OSBundleCompatibleVersion 298 | 1429 299 | OSBundleLibraries 300 | 301 | com.apple.iokit.IOACPIFamily 302 | 1.0.0d1 303 | com.apple.kpi.bsd 304 | 10.6 305 | com.apple.kpi.iokit 306 | 10.6 307 | com.apple.kpi.libkern 308 | 10.6 309 | com.apple.kpi.mach 310 | 10.6 311 | com.apple.kpi.unsupported 312 | 10.6 313 | 314 | OSBundleRequired 315 | Root 316 | Source Code 317 | "https://github.com/RehabMan/OS-X-FakeSMC-kozlek.git" 318 | 319 | 320 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.VirtualSMC 46 | 47 | CFBundleIdentifier 48 | as.vit9696.VirtualSMC 49 | IOClass 50 | VirtualSMC 51 | IODeviceMemory 52 | 53 | 54 | 55 | address 56 | 768 57 | length 58 | 32 59 | 60 | 61 | 62 | 63 | address 64 | 4277141504 65 | length 66 | 65536 67 | 68 | 69 | 70 | IOInterruptControllers 71 | 72 | io-apic-0 73 | 74 | IOInterruptSpecifiers 75 | 76 | 77 | BgAAAAAAAAA= 78 | 79 | 80 | IOMatchCategory 81 | IOACPIPlatformDevice 82 | IOName 83 | SMC 84 | IOProbeScore 85 | 60000 86 | IOProviderClass 87 | AppleACPIPlatformExpert 88 | Keystore 89 | 90 | Generic 91 | 92 | 93 | attr 94 | 95 | iA== 96 | 97 | comment 98 | Total fan number, this should be put to a plugin 99 | name 100 | 101 | Rk51bQ== 102 | 103 | type 104 | 105 | dWk4IA== 106 | 107 | value 108 | 109 | AA== 110 | 111 | 112 | 113 | attr 114 | 115 | gA== 116 | 117 | comment 118 | CPU plimit 119 | name 120 | 121 | TVNUYw== 122 | 123 | type 124 | 125 | dWk4IA== 126 | 127 | value 128 | 129 | AA== 130 | 131 | 132 | 133 | attr 134 | 135 | gA== 136 | 137 | comment 138 | FAN plimit (supposedly) 139 | name 140 | 141 | TVNUZg== 142 | 143 | type 144 | 145 | dWk4IA== 146 | 147 | value 148 | 149 | AA== 150 | 151 | 152 | 153 | attr 154 | 155 | gA== 156 | 157 | comment 158 | Memory plimit 159 | name 160 | 161 | TVNUbQ== 162 | 163 | type 164 | 165 | dWk4IA== 166 | 167 | value 168 | 169 | AA== 170 | 171 | 172 | 173 | attr 174 | 175 | gA== 176 | 177 | comment 178 | This should be 1 on laptops, and is overriden by sensors 179 | name 180 | 181 | QkFUUA== 182 | 183 | type 184 | 185 | ZmxhZw== 186 | 187 | value 188 | 189 | AA== 190 | 191 | 192 | 193 | attr 194 | 195 | gA== 196 | 197 | comment 198 | Only MacPros have custom illumination controllers 199 | name 200 | 201 | THNOTQ== 202 | 203 | type 204 | 205 | dWk4IA== 206 | 207 | value 208 | 209 | AA== 210 | 211 | 212 | 213 | GenericDesktopV1 214 | 215 | GenericDesktopV2 216 | 217 | GenericLaptopV1 218 | 219 | GenericLaptopV2 220 | 221 | GenericV1 222 | 223 | 224 | attr 225 | 226 | gA== 227 | 228 | comment 229 | GPU plimit 230 | name 231 | 232 | TVNUZw== 233 | 234 | type 235 | 236 | dWk4IA== 237 | 238 | value 239 | 240 | AA== 241 | 242 | 243 | 244 | GenericV2 245 | 246 | 247 | attr 248 | 249 | gA== 250 | 251 | comment 252 | E plimit (???) 253 | name 254 | 255 | TVNUZQ== 256 | 257 | type 258 | 259 | dWk4IA== 260 | 261 | value 262 | 263 | AA== 264 | 265 | 266 | 267 | attr 268 | 269 | gA== 270 | 271 | comment 272 | I plimit (???) 273 | name 274 | 275 | TVNUaQ== 276 | 277 | type 278 | 279 | dWk4IA== 280 | 281 | value 282 | 283 | AA== 284 | 285 | 286 | 287 | attr 288 | 289 | gA== 290 | 291 | comment 292 | J plimit (???) 293 | name 294 | 295 | TVNUag== 296 | 297 | type 298 | 299 | dWk4IA== 300 | 301 | value 302 | 303 | AA== 304 | 305 | 306 | 307 | 308 | ModelInfo 309 | 310 | GenericV1 311 | 312 | branch 313 | 314 | ajUyAAAAAAA= 315 | 316 | hwname 317 | 318 | c21jLXBpa2V0b24A 319 | 320 | platform 321 | 322 | ajUyAAAAAAA= 323 | 324 | rev 325 | 326 | AXQPAAAE 327 | 328 | revfb 329 | 330 | AXQPAAAE 331 | 332 | revfu 333 | 334 | AXQPAAAE 335 | 336 | 337 | GenericV2 338 | 339 | branch 340 | 341 | ajUyAAAAAAA= 342 | 343 | hwname 344 | 345 | c21jLWh1cm9ucml2ZXIA 346 | 347 | platform 348 | 349 | ajUyAAAAAAA= 350 | 351 | rev 352 | 353 | AigPAAAH 354 | 355 | revfb 356 | 357 | AigPAAAH 358 | 359 | revfu 360 | 361 | AigPAAAH 362 | 363 | 364 | GenericV3 365 | 366 | hwname 367 | 368 | c21jLWh1cm9ucml2ZXIA 369 | 370 | platform 371 | 372 | ajUyAAAAAAA= 373 | 374 | 375 | 376 | _STA 377 | 11 378 | name 379 | 380 | QVBQMDAwMQA= 381 | 382 | 383 | 384 | NSHumanReadableCopyright 385 | Copyright © 2017 vit9696. All rights reserved. 386 | OSBundleCompatibleVersion 387 | 1.0 388 | OSBundleLibraries 389 | 390 | as.vit9696.Lilu 391 | 1.2.0 392 | com.apple.iokit.IOACPIFamily 393 | 1.0.0d1 394 | com.apple.kpi.bsd 395 | 12.0.0 396 | com.apple.kpi.dsep 397 | 12.0.0 398 | com.apple.kpi.iokit 399 | 12.0.0 400 | com.apple.kpi.libkern 401 | 12.0.0 402 | com.apple.kpi.mach 403 | 12.0.0 404 | com.apple.kpi.unsupported 405 | 12.0.0 406 | 407 | OSBundleRequired 408 | Root 409 | 410 | 411 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ACPI 6 | 7 | AutoMerge 8 | 9 | DSDT 10 | 11 | Name 12 | DSDT.aml 13 | Patches 14 | 15 | 16 | Comment 17 | change HECI to IMEI 18 | Disabled 19 | 20 | Find 21 | SEVDSQ== 22 | Replace 23 | SU1FSQ== 24 | 25 | 26 | Comment 27 | change GFX0 to IGPU 28 | Disabled 29 | 30 | Find 31 | R0ZYMA== 32 | Replace 33 | SUdQVQ== 34 | 35 | 36 | Comment 37 | change HDAS to HDEF 38 | Disabled 39 | 40 | Find 41 | SERBUw== 42 | Replace 43 | SERFRg== 44 | 45 | 46 | ReuseFFFF 47 | 48 | 49 | DisabledAML 50 | 51 | SSDT.aml 52 | SSDT-XCPM.aml 53 | SSDT-PluginType1.aml 54 | 55 | DropTables 56 | 57 | 58 | Signature 59 | MATS 60 | 61 | 62 | Signature 63 | DMAR 64 | 65 | 66 | Signature 67 | SSDT 68 | TableId 69 | xh_rvp10 70 | 71 | 72 | FixHeaders 73 | 74 | SSDT 75 | 76 | Generate 77 | 78 | CStates 79 | 80 | PStates 81 | 82 | PluginType 83 | 84 | 85 | 86 | 87 | Boot 88 | 89 | Arguments 90 | dart=0 -igfxnohdmi -igfxmlr enable-dpcd-max-link-rate-fix -alcbeta -lilubetaall keepsyms=1 -wegbeta -no_compat_check darkwake=0 -nobiobeta 91 | Debug 92 | 93 | DefaultVolume 94 | LastBootedVolume 95 | HibernationFixup 96 | 97 | NeverHibernate 98 | 99 | Secure 100 | 101 | Timeout 102 | 5 103 | XMPDetection 104 | Yes 105 | 106 | Devices 107 | 108 | Audio 109 | 110 | Inject 111 | 3 112 | ResetHDA 113 | 114 | 115 | Properties 116 | 117 | PciRoot(0)/Pci(0x02,0) 118 | 119 | #framebuffer-con1-enable 120 | 1 121 | #framebuffer-con1-pipe 122 | EgAAAA== 123 | #framebuffer-con1-type 124 | AAgAAA== 125 | #framebuffer-patch-enable 126 | 1 127 | AAPL,ig-platform-id 128 | AACbPg== 129 | framebuffer-fbmem 130 | AACQAA== 131 | framebuffer-stolenmem 132 | AAAwAQ== 133 | framebuffer-unifiedmem 134 | AAAAgA== 135 | hda-gfx 136 | onboard-1 137 | 138 | 139 | USB 140 | 141 | Inject 142 | 143 | 144 | 145 | DisableDrivers 146 | 147 | VBoxHfs 148 | 149 | GUI 150 | 151 | Hide 152 | 153 | Preboot 154 | DATA 155 | 156 | Language 157 | en:0 158 | Mouse 159 | 160 | DoubleClick 161 | 500 162 | Enabled 163 | 164 | Mirror 165 | 166 | Speed 167 | 8 168 | 169 | Scan 170 | 171 | ScreenResolution 172 | 1920x1080 173 | Theme 174 | embedded 175 | 176 | Graphics 177 | 178 | EDID 179 | 180 | Inject 181 | 182 | 183 | Inject 184 | 185 | ATI 186 | 187 | Intel 188 | 189 | NVidia 190 | 191 | 192 | NvidiaSingle 193 | 194 | 195 | KernelAndKextPatches 196 | 197 | AppleIntelCPUPM 198 | 199 | AppleRTC 200 | 201 | KernelCpu 202 | 203 | KernelLapic 204 | 205 | KernelPm 206 | 207 | KernelXCPM 208 | 209 | KextsToPatch 210 | 211 | 212 | Comment 213 | Disable the sleep code leaving the controller in non-working state after wake, 10.9.*, 10.10.* (credit Zenith432) 214 | Disabled 215 | 216 | Find 217 | xoDIAAAAAQ== 218 | InfoPlistPatch 219 | 220 | Name 221 | com.apple.driver.AppleUSBXHCI 222 | Replace 223 | xoDIAAAAAA== 224 | 225 | 226 | Comment 227 | Prevent Apple I2C kexts from attaching to I2C controllers, credit CoolStar 228 | Disabled 229 | 230 | Find 231 | SU9LaXQ= 232 | InfoPlistPatch 233 | 234 | Name 235 | com.apple.driver.AppleIntelLpssI2C 236 | Replace 237 | SU9LaXM= 238 | 239 | 240 | Comment 241 | Prevent Apple I2C kexts from attaching to I2C controllers, credit CoolStar 242 | Disabled 243 | 244 | Find 245 | SU9LaXQ= 246 | InfoPlistPatch 247 | 248 | Name 249 | com.apple.driver.AppleIntelLpssI2CController 250 | Replace 251 | SU9LaXM= 252 | 253 | 254 | Comment 255 | disable port limit in XHCI kext (credit DalianSky,Ricky) 256 | Disabled 257 | 258 | Find 259 | g/sPD4OPBAAA 260 | InfoPlistPatch 261 | 262 | MatchOS 263 | 10.14.x 264 | Name 265 | com.apple.driver.usb.AppleUSBXHCI 266 | Replace 267 | g/sPkJCQkJCQ 268 | 269 | 270 | Comment 271 | USB Port limit patch #1/2 10.15.x (credit DalianSky) 272 | Disabled 273 | 274 | Find 275 | g/sPDw== 276 | InfoPlistPatch 277 | 278 | MatchOS 279 | 10.15.x 280 | Name 281 | com.apple.iokit.IOUSBHostFamily 282 | Replace 283 | g/s/Dw== 284 | 285 | 286 | Comment 287 | USB Port limit patch #2/2 10.15.x (credit DalianSky) 288 | Disabled 289 | 290 | Find 291 | g/kPDw== 292 | InfoPlistPatch 293 | 294 | MatchOS 295 | 10.15.x 296 | Name 297 | com.apple.driver.usb.AppleUSBXHCI 298 | Replace 299 | g/k/Dw== 300 | 301 | 302 | 303 | RtVariables 304 | 305 | BooterConfig 306 | 0x00 307 | CsrActiveConfig 308 | 0x67 309 | MLB 310 | C02140302D5DMT31M 311 | ROM 312 | UseMacAddr0 313 | 314 | SMBIOS 315 | 316 | BiosReleaseDate 317 | 09/17/2018 318 | BiosVendor 319 | Apple Inc. 320 | BiosVersion 321 | MBP152.88Z.F000.B00.1809171524 322 | Board-ID 323 | Mac-827FB448E656EC26 324 | BoardManufacturer 325 | Apple Inc. 326 | BoardSerialNumber 327 | C02832405GUJH4RJC 328 | BoardType 329 | 10 330 | BoardVersion 331 | 1.0 332 | ChassisAssetTag 333 | MacBook-Aluminum 334 | ChassisManufacturer 335 | Apple Inc. 336 | ChassisType 337 | 0x09 338 | EfiVersion 339 | 220.200.252.0.0 340 | Family 341 | MacBook Pro 342 | FirmwareFeatures 343 | 0xFC0FE137 344 | FirmwareFeaturesMask 345 | 0xFF1FFF3F 346 | LocationInChassis 347 | Part Component 348 | Manufacturer 349 | Apple Inc. 350 | Mobile 351 | 352 | PlatformFeature 353 | 0x1A 354 | ProductName 355 | MacBookPro15,2 356 | SerialNumber 357 | C02X6XYJJHCD 358 | SmUUID 359 | 3CE0FD1F-E1D4-4C96-B587-F9F507E872C2 360 | Trust 361 | 362 | Version 363 | 1.0 364 | 365 | SystemParameters 366 | 367 | InjectKexts 368 | Detect 369 | InjectSystemID 370 | 371 | NvidiaWeb 372 | 373 | 374 | 375 | 376 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19B88 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CHID 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CHID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CHID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11C29 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1130 39 | DTXcodeBuild 40 | 11C29 41 | IOKitPersonalities 42 | 43 | Intel ACPI Sensor Hub Enabler 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CHID 47 | IOClass 48 | VoodooI2CSensorHubEnabler 49 | IONameMatch 50 | 51 | INT33D0 52 | 53 | IOProviderClass 54 | IOACPIPlatformDevice 55 | 56 | Sensor Hub Event Driver 57 | 58 | CFBundleIdentifier 59 | com.alexandred.VoodooI2CHID 60 | DeviceUsagePairs 61 | 62 | 63 | DeviceUsage 64 | 1 65 | DeviceUsagePage 66 | 32 67 | 68 | 69 | IOClass 70 | VoodooI2CSensorHubEventDriver 71 | IOProbeScore 72 | 100 73 | IOProviderClass 74 | IOHIDInterface 75 | 76 | VoodooI2CHIDDevice 77 | 78 | CFBundleIdentifier 79 | com.alexandred.VoodooI2CHID 80 | IOClass 81 | VoodooI2CHIDDevice 82 | IOProbeScore 83 | 100 84 | IOPropertyMatch 85 | 86 | compatible 87 | PNP0C50 88 | 89 | IOProviderClass 90 | VoodooI2CDeviceNub 91 | 92 | VoodooI2CHIDDevice Generic Mouse HID Event Driver 93 | 94 | CFBundleIdentifier 95 | com.alexandred.VoodooI2CHID 96 | DeviceUsagePairs 97 | 98 | 99 | DeviceUsage 100 | 2 101 | DeviceUsagePage 102 | 1 103 | 104 | 105 | HIDAccelCurves 106 | 107 | 108 | HIDAccelGainLinear 109 | 65536 110 | HIDAccelIndex 111 | 0 112 | HIDAccelTangentSpeedLinear 113 | 524288 114 | 115 | 116 | HIDAccelGainCubic 117 | 5243 118 | HIDAccelGainLinear 119 | 60293 120 | HIDAccelGainParabolic 121 | 26214 122 | HIDAccelIndex 123 | 8192 124 | HIDAccelTangentSpeedLinear 125 | 537395 126 | HIDAccelTangentSpeedParabolicRoot 127 | 1245184 128 | 129 | 130 | HIDAccelGainCubic 131 | 6554 132 | HIDAccelGainLinear 133 | 60948 134 | HIDAccelGainParabolic 135 | 36045 136 | HIDAccelIndex 137 | 32768 138 | HIDAccelTangentSpeedLinear 139 | 543949 140 | HIDAccelTangentSpeedParabolicRoot 141 | 1179648 142 | 143 | 144 | HIDAccelGainCubic 145 | 7864 146 | HIDAccelGainLinear 147 | 61604 148 | HIDAccelGainParabolic 149 | 46531 150 | HIDAccelIndex 151 | 45056 152 | HIDAccelTangentSpeedLinear 153 | 550502 154 | HIDAccelTangentSpeedParabolicRoot 155 | 1114112 156 | 157 | 158 | HIDAccelGainCubic 159 | 9830 160 | HIDAccelGainLinear 161 | 62259 162 | HIDAccelGainParabolic 163 | 57672 164 | HIDAccelIndex 165 | 57344 166 | HIDAccelTangentSpeedLinear 167 | 557056 168 | HIDAccelTangentSpeedParabolicRoot 169 | 1048576 170 | 171 | 172 | HIDAccelGainCubic 173 | 11796 174 | HIDAccelGainLinear 175 | 62915 176 | HIDAccelGainParabolic 177 | 69468 178 | HIDAccelIndex 179 | 65536 180 | HIDAccelTangentSpeedLinear 181 | 563610 182 | HIDAccelTangentSpeedParabolicRoot 183 | 983040 184 | 185 | 186 | HIDAccelGainCubic 187 | 14418 188 | HIDAccelGainLinear 189 | 63570 190 | HIDAccelGainParabolic 191 | 81920 192 | HIDAccelIndex 193 | 98304 194 | HIDAccelTangentSpeedLinear 195 | 570163 196 | HIDAccelTangentSpeedParabolicRoot 197 | 917504 198 | 199 | 200 | HIDAccelGainCubic 201 | 17695 202 | HIDAccelGainLinear 203 | 64225 204 | HIDAccelGainParabolic 205 | 95027 206 | HIDAccelIndex 207 | 131072 208 | HIDAccelTangentSpeedLinear 209 | 576717 210 | HIDAccelTangentSpeedParabolicRoot 211 | 851968 212 | 213 | 214 | HIDAccelGainCubic 215 | 21627 216 | HIDAccelGainLinear 217 | 64881 218 | HIDAccelGainParabolic 219 | 108790 220 | HIDAccelIndex 221 | 163840 222 | HIDAccelTangentSpeedLinear 223 | 583270 224 | HIDAccelTangentSpeedParabolicRoot 225 | 786432 226 | 227 | 228 | HIDAccelGainCubic 229 | 26214 230 | HIDAccelGainLinear 231 | 65536 232 | HIDAccelGainParabolic 233 | 123208 234 | HIDAccelIndex 235 | 196608 236 | HIDAccelTangentSpeedLinear 237 | 589824 238 | HIDAccelTangentSpeedParabolicRoot 239 | 786432 240 | 241 | 242 | IOClass 243 | IOHIDEventDriver 244 | IOProbeScore 245 | 100 246 | IOPropertyMatch 247 | 248 | Transport 249 | I2C 250 | 251 | IOProviderClass 252 | IOHIDInterface 253 | 254 | VoodooI2CHIDDevice Multitouch HID Event Driver 255 | 256 | CFBundleIdentifier 257 | com.alexandred.VoodooI2CHID 258 | DeviceUsagePairs 259 | 260 | 261 | DeviceUsage 262 | 4 263 | DeviceUsagePage 264 | 13 265 | 266 | 267 | DeviceUsage 268 | 5 269 | DeviceUsagePage 270 | 13 271 | 272 | 273 | DeviceUsage 274 | 2 275 | DeviceUsagePage 276 | 13 277 | 278 | 279 | IOClass 280 | VoodooI2CMultitouchHIDEventDriver 281 | IOProbeScore 282 | 200 283 | IOProviderClass 284 | IOHIDInterface 285 | 286 | VoodooI2CHIDDevice Precision Touchpad HID Event Driver 287 | 288 | CFBundleIdentifier 289 | com.alexandred.VoodooI2CHID 290 | DeviceUsagePairs 291 | 292 | 293 | DeviceUsage 294 | 5 295 | DeviceUsagePage 296 | 13 297 | 298 | 299 | IOClass 300 | VoodooI2CPrecisionTouchpadHIDEventDriver 301 | IOProbeScore 302 | 300 303 | IOPropertyMatch 304 | 305 | Transport 306 | I2C 307 | 308 | IOProviderClass 309 | IOHIDInterface 310 | ProcessBluetoothMouseStopsTrackpad 311 | 312 | ProcessUSBMouseStopsTrackpad 313 | 314 | QuietTimeAfterTyping 315 | 100 316 | RM,deliverNotifications 317 | 318 | 319 | VoodooI2CHIDDevice Stylus HID Event Driver 320 | 321 | CFBundleIdentifier 322 | com.alexandred.VoodooI2CHID 323 | DeviceUsagePairs 324 | 325 | 326 | DeviceUsage 327 | 2 328 | DeviceUsagePage 329 | 13 330 | 331 | 332 | IOClass 333 | VoodooI2CStylusHIDEventDriver 334 | IOProbeScore 335 | 300 336 | IOProviderClass 337 | IOHIDInterface 338 | 339 | VoodooI2CHIDDevice Touchscreen HID Event Driver 340 | 341 | CFBundleIdentifier 342 | com.alexandred.VoodooI2CHID 343 | DeviceUsagePairs 344 | 345 | 346 | DeviceUsage 347 | 4 348 | DeviceUsagePage 349 | 13 350 | 351 | 352 | IOClass 353 | VoodooI2CTouchscreenHIDEventDriver 354 | IOProbeScore 355 | 400 356 | IOProviderClass 357 | IOHIDInterface 358 | 359 | VoodooI2CHIDSYNA3602Device 360 | 361 | CFBundleIdentifier 362 | com.alexandred.VoodooI2CHID 363 | IOClass 364 | VoodooI2CHIDSYNA3602Device 365 | IOProbeScore 366 | 200 367 | IOPropertyMatch 368 | 369 | name 370 | SYNA3602 371 | 372 | IOProviderClass 373 | VoodooI2CDeviceNub 374 | 375 | 376 | LSMinimumSystemVersion 377 | 10.11 378 | NSHumanReadableCopyright 379 | Copyright © 2017 Alexandre Daoud. All rights reserved. 380 | OSBundleLibraries 381 | 382 | com.alexandred.VoodooI2C 383 | 2.0 384 | com.apple.iokit.IOACPIFamily 385 | 1.4 386 | com.apple.iokit.IOGraphicsFamily 387 | 1.0.0b1 388 | com.apple.iokit.IOHIDFamily 389 | 2.0 390 | com.apple.kpi.iokit 391 | 14 392 | com.apple.kpi.libkern 393 | 14 394 | com.apple.kpi.mach 395 | 13.0 396 | 397 | OSBundleRequired 398 | Safe Boot 399 | 400 | 401 | -------------------------------------------------------------------------------- /Clover/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 2.1.0, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Trackpad 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Trackpad 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ALPS GlidePoint 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Trackpad 49 | IOClass 50 | ApplePS2ALPSGlidePoint 51 | IOProbeScore 52 | 1500 53 | IOProviderClass 54 | ApplePS2MouseDevice 55 | Platform Profile 56 | 57 | Default 58 | 59 | DisableDevice 60 | 61 | 62 | HPQOEM 63 | 64 | 1411 65 | ProBook 66 | 1619 67 | ProBook 68 | 161C 69 | ProBook 70 | 164F 71 | ProBook 72 | 167C 73 | ProBook 74 | 167E 75 | ProBook 76 | 1680 77 | ProBook 78 | 179B 79 | ProBook 80 | 179C 81 | ProBook 82 | 17A9 83 | ProBook 84 | 17F0 85 | ProBook 86 | 17F3 87 | ProBook 88 | 17F6 89 | ProBook 90 | 1942 91 | ProBook 92 | 1949 93 | ProBook 94 | 198F 95 | ProBook 96 | ProBook 97 | 98 | DisableDevice 99 | 100 | 101 | ProBook-102 102 | ProBook 103 | ProBook-87 104 | ProBook 105 | 106 | 107 | 108 | Native Multitouch Engine 109 | 110 | CFBundleIdentifier 111 | as.acidanthera.voodoo.driver.PS2Trackpad 112 | IOClass 113 | VoodooPS2NativeEngine 114 | IOMatchCategory 115 | VoodooPS2NativeEngine 116 | IOProviderClass 117 | VoodooPS2MultitouchInterface 118 | 119 | Sentelic FSP 120 | 121 | CFBundleIdentifier 122 | as.acidanthera.voodoo.driver.PS2Trackpad 123 | IOClass 124 | ApplePS2SentelicFSP 125 | IOProbeScore 126 | 5500 127 | IOProviderClass 128 | ApplePS2MouseDevice 129 | Platform Profile 130 | 131 | Default 132 | 133 | DisableDevice 134 | 135 | 136 | HPQOEM 137 | 138 | 1411 139 | ProBook 140 | 1619 141 | ProBook 142 | 161C 143 | ProBook 144 | 164F 145 | ProBook 146 | 167C 147 | ProBook 148 | 167E 149 | ProBook 150 | 1680 151 | ProBook 152 | 179B 153 | ProBook 154 | 179C 155 | ProBook 156 | 17A9 157 | ProBook 158 | 17F0 159 | ProBook 160 | 17F3 161 | ProBook 162 | 17F6 163 | ProBook 164 | 1942 165 | ProBook 166 | 1949 167 | ProBook 168 | 198F 169 | ProBook 170 | ProBook 171 | 172 | DisableDevice 173 | 174 | 175 | ProBook-102 176 | ProBook 177 | ProBook-87 178 | ProBook 179 | 180 | 181 | 182 | Synaptics TouchPad 183 | 184 | CFBundleIdentifier 185 | as.acidanthera.voodoo.driver.PS2Trackpad 186 | HIDPointerAccelerationTable 187 | 188 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 189 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 190 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 191 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 192 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 193 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 194 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 195 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 196 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 197 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 198 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 199 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 200 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 201 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 202 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 203 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 204 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 205 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 206 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 207 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 208 | 209 | HIDPointerAccelerationType 210 | HIDTrackpadAcceleration 211 | HIDScrollAccelerationTable 212 | 213 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 214 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 215 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 216 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 217 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 218 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 219 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 220 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 221 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 222 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 223 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 224 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 225 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 226 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 227 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 228 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 229 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 230 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 231 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 232 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 233 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 234 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 235 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 236 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 237 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 238 | AAF8JGg= 239 | 240 | HIDScrollAccelerationType 241 | HIDTrackpadScrollAcceleration 242 | IOClass 243 | ApplePS2SynapticsTouchPad 244 | IOProbeScore 245 | 6000 246 | IOProviderClass 247 | ApplePS2MouseDevice 248 | Platform Profile 249 | 250 | Default 251 | 252 | ButtonCount 253 | 3 254 | ClickPadClickTime 255 | 300000000 256 | ClickPadTrackBoth 257 | 258 | Darwin 16+ 259 | 260 | ApplePreferenceCapability 261 | 262 | ApplePreferenceIdentifier 263 | com.apple.AppleMultitouchTrackpad 264 | MT Built-in 265 | 266 | MTHIDDevice 267 | 268 | SupportsGestureScrolling 269 | 270 | TrackpadEmbedded 271 | 272 | TrackpadFourFingerGestures 273 | 274 | TrackpadSecondaryClickCorners 275 | 276 | TrackpadThreeFingerDrag 277 | 278 | 279 | DisableDevice 280 | 281 | DisableLEDUpdating 282 | 283 | DynamicEWMode 284 | 285 | FakeMiddleButton 286 | 287 | FingerChangeIgnoreDeltas 288 | 3 289 | ForceTouchMode 290 | 1 291 | ForceTouchPressureThreshold 292 | 100 293 | MiddleClickTime 294 | 100000000 295 | MouseMiddleScroll 296 | 297 | ProcessBluetoothMouseStopsTrackpad 298 | 299 | ProcessUSBMouseStopsTrackpad 300 | 301 | QuietTimeAfterTyping 302 | 500000000 303 | Resolution 304 | 400 305 | ScrollResolution 306 | 400 307 | SkipPassThrough 308 | 309 | USBMouseStopsTrackpad 310 | 0 311 | UseHighRate 312 | 313 | WakeDelay 314 | 1000 315 | 316 | HPQOEM 317 | 318 | 1411 319 | ProBook 320 | 1619 321 | ProBook 322 | 161C 323 | ProBook 324 | 164F 325 | ProBook 326 | 167C 327 | ProBook 328 | 167E 329 | ProBook 330 | 1680 331 | ProBook 332 | 179B 333 | ProBook 334 | 179C 335 | ProBook 336 | 17A9 337 | ProBook 338 | 17F0 339 | ProBook 340 | 17F3 341 | ProBook 342 | 17F6 343 | ProBook 344 | 1942 345 | ProBook 346 | 1949 347 | ProBook 348 | 198F 349 | ProBook 350 | ProBook 351 | 352 | FingerZ 353 | 40 354 | 355 | ProBook-102 356 | ProBook 357 | ProBook-87 358 | ProBook 359 | 360 | LENOVO 361 | 362 | T420 363 | Thinkpad_TrackPad 364 | T460 365 | Thinkpad_ClickPad 366 | T560 367 | Thinkpad_ClickPad 368 | Thinkpad_ClickPad 369 | 370 | DynamicEWMode 371 | 372 | EdgeBottom 373 | 0 374 | FakeMiddleButton 375 | 376 | FingerZ 377 | 30 378 | HWResetOnStart 379 | 380 | MaxTapTime 381 | 100000000 382 | MouseMultiplierX 383 | 2 384 | MouseMultiplierY 385 | 2 386 | MouseScrollMultiplierX 387 | 2 388 | MouseScrollMultiplierY 389 | 2 390 | PalmNoAction When Typing 391 | 392 | ScrollResolution 393 | 800 394 | Thinkpad 395 | 396 | 397 | Thinkpad_TrackPad 398 | 399 | DynamicEWMode 400 | 401 | FakeMiddleButton 402 | 403 | FingerZ 404 | 47 405 | HWResetOnStart 406 | 407 | MaxTapTime 408 | 100000000 409 | PalmNoAction When Typing 410 | 411 | Resolution 412 | 3200 413 | ScrollResolution 414 | 800 415 | SmoothInput 416 | 417 | Thinkpad 418 | 419 | UnsmoothInput 420 | 421 | 422 | X1CG3 423 | Thinkpad_ClickPad 424 | 425 | 426 | ProductID 427 | 547 428 | RM,deliverNotifications 429 | 430 | VendorID 431 | 1452 432 | 433 | 434 | OSBundleLibraries 435 | 436 | as.acidanthera.voodoo.driver.PS2Controller 437 | 2.1.0 438 | com.apple.iokit.IOHIDFamily 439 | 1.0.0b1 440 | com.apple.kpi.iokit 441 | 9.0.0 442 | com.apple.kpi.libkern 443 | 9.0.0 444 | com.apple.kpi.mach 445 | 9.0.0 446 | 447 | OSBundleRequired 448 | Console 449 | 450 | 451 | -------------------------------------------------------------------------------- /OpenCore/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19B88 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2C 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2C 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2C 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11C29 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1130 39 | DTXcodeBuild 40 | 11C29 41 | IOKitPersonalities 42 | 43 | Custom MT2 Personality 44 | 45 | ApplePreferenceCapability 46 | 2 47 | ApplePreferenceIdentifier 48 | com.apple.AppleMultitouchTrackpad 49 | ApplePreferencesDefaultPreferences 50 | 51 | ActuateDetents 52 | 0 53 | Clicking 54 | 1 55 | DragLock 56 | 0 57 | Dragging 58 | 0 59 | FirstClickThreshold 60 | 1 61 | ForceSuppressed 62 | 63 | SecondClickThreshold 64 | 1 65 | TrackpadCornerSecondaryClick 66 | 0 67 | TrackpadFiveFingerPinchGesture 68 | 2 69 | TrackpadFourFingerHorizSwipeGesture 70 | 2 71 | TrackpadFourFingerPinchGesture 72 | 2 73 | TrackpadFourFingerVertSwipeGesture 74 | 2 75 | TrackpadHorizScroll 76 | 1 77 | TrackpadMomentumScroll 78 | 79 | TrackpadPinch 80 | 1 81 | TrackpadRightClick 82 | 83 | TrackpadRotate 84 | 1 85 | TrackpadScroll 86 | 87 | TrackpadThreeFingerDrag 88 | 89 | TrackpadThreeFingerHorizSwipeGesture 90 | 2 91 | TrackpadThreeFingerVertSwipeGesture 92 | 2 93 | 94 | CFBundleIdentifier 95 | com.apple.driver.AppleTopCaseHIDEventDriver 96 | DefaultMultitouchProperties 97 | 98 | ActuationSupported 99 | 100 | ExtractAndPostDeviceButtonState 101 | 102 | ForceSupported 103 | 104 | HIDServiceSupport 105 | 106 | IOCFPlugInTypes 107 | 108 | 0516B563-B15B-11DA-96EB-0014519758EF 109 | AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin 110 | 111 | MT Built-In 112 | 113 | MTHIDDevice 114 | 115 | MTPowerStatsDisable 116 | 117 | SupportsGestureScrolling 118 | 119 | TrackpadFourFingerGestures 120 | 121 | TrackpadMomentumScroll 122 | 123 | TrackpadSecondaryClickCorners 124 | 125 | TrackpadThreeFingerDrag 126 | 127 | parser-options 128 | 39 129 | parser-type 130 | 1000 131 | 132 | DeviceUsagePairs 133 | 134 | 135 | DeviceUsage 136 | 2 137 | DeviceUsagePage 138 | 1 139 | 140 | 141 | DoReportIntervalHack 142 | 143 | HIDAccelCurves 144 | 145 | 146 | HIDAccelGainLinear 147 | 65536 148 | HIDAccelIndex 149 | 0 150 | HIDAccelTangentSpeedLinear 151 | 484966 152 | HIDAccelTangentSpeedParabolicRoot 153 | 1376256 154 | 155 | 156 | HIDAccelGainCubic 157 | 5243 158 | HIDAccelGainLinear 159 | 64881 160 | HIDAccelGainParabolic 161 | 32768 162 | HIDAccelIndex 163 | 8192 164 | HIDAccelTangentSpeedLinear 165 | 478413 166 | HIDAccelTangentSpeedParabolicRoot 167 | 1310720 168 | 169 | 170 | HIDAccelGainCubic 171 | 6554 172 | HIDAccelGainLinear 173 | 64225 174 | HIDAccelGainParabolic 175 | 43254 176 | HIDAccelIndex 177 | 32768 178 | HIDAccelTangentSpeedLinear 179 | 471859 180 | HIDAccelTangentSpeedParabolicRoot 181 | 1245184 182 | 183 | 184 | HIDAccelGainCubic 185 | 7864 186 | HIDAccelGainLinear 187 | 62915 188 | HIDAccelGainParabolic 189 | 54395 190 | HIDAccelIndex 191 | 45056 192 | HIDAccelTangentSpeedLinear 193 | 465306 194 | HIDAccelTangentSpeedParabolicRoot 195 | 1179648 196 | 197 | 198 | HIDAccelGainCubic 199 | 9830 200 | HIDAccelGainLinear 201 | 61604 202 | HIDAccelGainParabolic 203 | 65536 204 | HIDAccelIndex 205 | 57344 206 | HIDAccelTangentSpeedLinear 207 | 458752 208 | HIDAccelTangentSpeedParabolicRoot 209 | 1114112 210 | 211 | 212 | HIDAccelGainCubic 213 | 11796 214 | HIDAccelGainLinear 215 | 60293 216 | HIDAccelGainParabolic 217 | 75366 218 | HIDAccelIndex 219 | 65536 220 | HIDAccelTangentSpeedLinear 221 | 458752 222 | HIDAccelTangentSpeedParabolicRoot 223 | 1048576 224 | 225 | 226 | HIDAccelGainCubic 227 | 13763 228 | HIDAccelGainLinear 229 | 58327 230 | HIDAccelGainParabolic 231 | 85197 232 | HIDAccelIndex 233 | 98304 234 | HIDAccelTangentSpeedLinear 235 | 458752 236 | HIDAccelTangentSpeedParabolicRoot 237 | 983040 238 | 239 | 240 | HIDAccelGainCubic 241 | 15729 242 | HIDAccelGainLinear 243 | 56361 244 | HIDAccelGainParabolic 245 | 95027 246 | HIDAccelIndex 247 | 131072 248 | HIDAccelTangentSpeedLinear 249 | 458752 250 | HIDAccelTangentSpeedParabolicRoot 251 | 917504 252 | 253 | 254 | HIDAccelGainCubic 255 | 18350 256 | HIDAccelGainLinear 257 | 54395 258 | HIDAccelGainParabolic 259 | 108790 260 | HIDAccelIndex 261 | 163840 262 | HIDAccelTangentSpeedLinear 263 | 458752 264 | HIDAccelTangentSpeedParabolicRoot 265 | 851968 266 | 267 | 268 | HIDAccelGainCubic 269 | 23593 270 | HIDAccelGainLinear 271 | 65536 272 | HIDAccelGainParabolic 273 | 123208 274 | HIDAccelIndex 275 | 196608 276 | HIDAccelTangentSpeedLinear 277 | 458752 278 | HIDAccelTangentSpeedParabolicRoot 279 | 786432 280 | 281 | 282 | HIDDisallowRemappingOfPrimaryClick 283 | 284 | HIDPointerAccelerationTable 285 | 286 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 287 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 288 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 289 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 290 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 291 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 292 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 293 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 294 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 295 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 296 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 297 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 298 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 299 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 300 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 301 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 302 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 303 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 304 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 305 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxA 306 | 307 | HIDPointerAccelerationType 308 | HIDTrackpadAcceleration 309 | HIDScrollAccelCurves 310 | 311 | 312 | HIDAccelGainLinear 313 | 65536 314 | HIDAccelIndex 315 | 0 316 | HIDAccelTangentSpeedLinear 317 | 393216 318 | HIDAccelTangentSpeedParabolicRoot 319 | 786432 320 | 321 | 322 | HIDAccelGainLinear 323 | 62259 324 | HIDAccelGainParabolic 325 | 39322 326 | HIDAccelIndex 327 | 8192 328 | HIDAccelTangentSpeedLinear 329 | 406323 330 | HIDAccelTangentSpeedParabolicRoot 331 | 786432 332 | 333 | 334 | HIDAccelGainLinear 335 | 58982 336 | HIDAccelGainParabolic 337 | 58982 338 | HIDAccelIndex 339 | 32768 340 | HIDAccelTangentSpeedLinear 341 | 419430 342 | HIDAccelTangentSpeedParabolicRoot 343 | 786432 344 | 345 | 346 | HIDAccelGainLinear 347 | 55706 348 | HIDAccelGainParabolic 349 | 78643 350 | HIDAccelIndex 351 | 45056 352 | HIDAccelTangentSpeedLinear 353 | 432538 354 | HIDAccelTangentSpeedParabolicRoot 355 | 786432 356 | 357 | 358 | HIDAccelGainLinear 359 | 52429 360 | HIDAccelGainParabolic 361 | 91750 362 | HIDAccelIndex 363 | 57344 364 | HIDAccelTangentSpeedLinear 365 | 445645 366 | HIDAccelTangentSpeedParabolicRoot 367 | 786432 368 | 369 | 370 | HIDAccelGainLinear 371 | 49152 372 | HIDAccelGainParabolic 373 | 104858 374 | HIDAccelIndex 375 | 65536 376 | HIDAccelTangentSpeedLinear 377 | 458752 378 | HIDAccelTangentSpeedParabolicRoot 379 | 786432 380 | 381 | 382 | HIDAccelGainLinear 383 | 45875 384 | HIDAccelGainParabolic 385 | 117965 386 | HIDAccelIndex 387 | 98304 388 | HIDAccelTangentSpeedLinear 389 | 471859 390 | HIDAccelTangentSpeedParabolicRoot 391 | 786432 392 | 393 | 394 | HIDAccelGainLinear 395 | 42598 396 | HIDAccelGainParabolic 397 | 131072 398 | HIDAccelIndex 399 | 131072 400 | HIDAccelTangentSpeedLinear 401 | 484966 402 | HIDAccelTangentSpeedParabolicRoot 403 | 786432 404 | 405 | 406 | HIDAccelGainLinear 407 | 39322 408 | HIDAccelGainParabolic 409 | 144179 410 | HIDAccelIndex 411 | 163840 412 | HIDAccelTangentSpeedLinear 413 | 498074 414 | HIDAccelTangentSpeedParabolicRoot 415 | 786432 416 | 417 | 418 | HIDAccelGainLinear 419 | 36045 420 | HIDAccelGainParabolic 421 | 157286 422 | HIDAccelIndex 423 | 196608 424 | HIDAccelTangentSpeedLinear 425 | 511181 426 | HIDAccelTangentSpeedParabolicRoot 427 | 786432 428 | 429 | 430 | HIDScrollAccelerationTable 431 | 432 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 433 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 434 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 435 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 436 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 437 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 438 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 439 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 440 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 441 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 442 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 443 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 444 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 445 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 446 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 447 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 448 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 449 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 450 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 451 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 452 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 453 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 454 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 455 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 456 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 457 | AAF8JGg= 458 | 459 | HIDScrollAccelerationType 460 | HIDTrackpadScrollAcceleration 461 | HIDScrollResolution 462 | 26214400 463 | IOCFPlugInTypes 464 | 465 | 0516B563-B15B-11DA-96EB-0014519758EF 466 | AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin 467 | 468 | IOClass 469 | AppleMultitouchTrackpadHIDEventDriver 470 | IOProbeScore 471 | 9999 472 | IOProviderClass 473 | IOHIDInterface 474 | MTEventSource 475 | 476 | ProductIDArray 477 | 478 | 628 479 | 480 | TrackpadEmbedded 481 | 482 | VendorID 483 | 1452 484 | 485 | Native Multitouch Engine 486 | 487 | CFBundleIdentifier 488 | com.alexandred.VoodooI2C 489 | IOClass 490 | VoodooI2CNativeEngine 491 | IOMatchCategory 492 | VoodooI2CNativeEngine 493 | IOProviderClass 494 | VoodooI2CMultitouchInterface 495 | 496 | VoodooI2CACPIController 497 | 498 | CFBundleIdentifier 499 | com.alexandred.VoodooI2C 500 | IOClass 501 | VoodooI2CACPIController 502 | IONameMatch 503 | 504 | INT33C2 505 | INT33C3 506 | INT3432 507 | INT3433 508 | 509 | IOProbeScore 510 | 9999 511 | IOProviderClass 512 | IOService 513 | 514 | VoodooI2CControllerDriver 515 | 516 | CFBundleIdentifier 517 | com.alexandred.VoodooI2C 518 | IOClass 519 | VoodooI2CControllerDriver 520 | IOProbeScore 521 | 9999 522 | IOProviderClass 523 | VoodooI2CControllerNub 524 | 525 | VoodooI2CPCIController 526 | 527 | CFBundleIdentifier 528 | com.alexandred.VoodooI2C 529 | IOClass 530 | VoodooI2CPCIController 531 | IONameMatch 532 | 533 | pci8086,2e8 534 | pci8086,2e9 535 | pci8086,9d60 536 | pci8086,9d61 537 | pci8086,9d62 538 | pci8086,9d63 539 | pci8086,9de8 540 | pci8086,9de9 541 | pci8086,a160 542 | pci8086,a161 543 | pci8086,a162 544 | pci8086,a368 545 | pci8086,a369 546 | pci8086,a36a 547 | pci8086,a36b 548 | 549 | IOProbeScore 550 | 9999 551 | IOProviderClass 552 | IOService 553 | 554 | 555 | LSMinimumSystemVersion 556 | 10.11 557 | NSHumanReadableCopyright 558 | Copyright © 2019 Alexandre Daoud. All rights reserved. 559 | OSBundleCompatibleVersion 560 | 2.0.0 561 | OSBundleLibraries 562 | 563 | com.alexandred.VoodooI2CServices 564 | 1.0 565 | com.apple.iokit.IOACPIFamily 566 | 1.4 567 | com.apple.iokit.IOHIDFamily 568 | 2.0 569 | com.apple.iokit.IOPCIFamily 570 | 2.9 571 | com.apple.kpi.bsd 572 | 8.0 573 | com.apple.kpi.iokit 574 | 14 575 | com.apple.kpi.libkern 576 | 14 577 | com.apple.kpi.mach 578 | 14 579 | org.coolstar.VoodooGPIO 580 | 1.1 581 | 582 | OSBundleRequired 583 | Root 584 | 585 | 586 | --------------------------------------------------------------------------------