├── EFI ├── BOOT │ └── BOOTx64.efi └── OC │ ├── OpenCore.efi │ ├── ACPI │ ├── SSDT-EC.aml │ ├── SSDT-ALS0.aml │ ├── SSDT-GPRW.aml │ ├── SSDT-MCHC.aml │ ├── SSDT-SBUS.aml │ ├── SSDT-OC-XOSI.aml │ ├── SSDT-PTSWAK.aml │ ├── SSDT-LIDpatch.aml │ ├── SSDT-OCI2C-TPXX.aml │ ├── SSDT-OCGPI0-GPEN.aml │ ├── SSDT-OCGPI0-SBRG.aml │ ├── SSDT-OCWork-dell.aml │ ├── SSDT-PNLF-SKL_KBL.aml │ ├── SSDT-BKeyBRT6-Dell.aml │ ├── SSDT-EXT4-WakeScreen.aml │ ├── SSDT-PLUG-_PR.CPU0.aml │ ├── SSDT-HPET_RTC_TIMR-fix.aml │ ├── SSDT-RP01.PXSX-disbale.aml │ └── SSDT-FnInsert_BTNV-dell.aml │ ├── Tools │ ├── CFGLock.efi │ ├── KeyTester.efi │ ├── OpenShell.efi │ ├── CleanNvram.efi │ ├── OpenControl.efi │ ├── ResetSystem.efi │ ├── VerifyMsrE2.efi │ └── HdaCodecDump.efi │ ├── Drivers │ ├── ExFatDxe.efi │ ├── OpenCanopy.efi │ ├── OpenHfsPlus.efi │ ├── OpenRuntime.efi │ ├── OpenUsbKbDxe.efi │ └── CrScreenshotDxe.efi │ ├── Resources │ ├── Font │ │ ├── Font.bin │ │ ├── Font.png │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Label │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Windows.l2x │ │ ├── Windows.lbl │ │ ├── ResetNVRAM.l2x │ │ └── ResetNVRAM.lbl │ └── Image │ │ ├── BlackApple.icns │ │ ├── BlackLeft.icns │ │ ├── BlackOther.icns │ │ ├── BlackRight.icns │ │ ├── BlackShell.icns │ │ ├── BlackTool.icns │ │ ├── BlackAppleTM.icns │ │ ├── BlackCursor.icns │ │ ├── BlackExtApple.icns │ │ ├── BlackExtOther.icns │ │ ├── BlackExtShell.icns │ │ ├── BlackExtTool.icns │ │ ├── BlackSelected.icns │ │ ├── BlackSelector.icns │ │ ├── BlackWindows.icns │ │ ├── BlackAppleRecv.icns │ │ ├── BlackExtAppleTM.icns │ │ ├── BlackExtWindows.icns │ │ ├── BlackHardDrive.icns │ │ ├── BlackResetNVRAM.icns │ │ ├── BlackExtAppleRecv.icns │ │ ├── BlackExtHardDrive.icns │ │ └── BlackExtResetNVRAM.icns │ └── Kexts │ ├── Lilu.kext │ └── Contents │ │ ├── MacOS │ │ └── Lilu │ │ └── Info.plist │ ├── HoRNDIS.kext │ └── Contents │ │ ├── MacOS │ │ └── HoRNDIS │ │ ├── Resources │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── Info.plist │ ├── AppleALC.kext │ └── Contents │ │ └── MacOS │ │ └── AppleALC │ ├── VerbStub.kext │ └── Contents │ │ ├── MacOS │ │ └── VerbStub │ │ └── Info.plist │ ├── CPUFriend.kext │ └── Contents │ │ ├── MacOS │ │ └── CPUFriend │ │ └── Info.plist │ ├── NoTouchID.kext │ └── Contents │ │ ├── MacOS │ │ └── NoTouchID │ │ └── Info.plist │ ├── VoodooI2C.kext │ └── Contents │ │ ├── MacOS │ │ └── VoodooI2C │ │ ├── PlugIns │ │ ├── VoodooGPIO.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooGPIO │ │ │ │ └── Info.plist │ │ ├── VoodooInput.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooInput │ │ │ │ ├── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── VoodooI2CServices.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooI2CServices │ │ │ │ └── Info.plist │ │ └── VoodooInput.kext.dSYM │ │ │ └── Contents │ │ │ ├── Resources │ │ │ └── DWARF │ │ │ │ └── VoodooInput │ │ │ └── Info.plist │ │ └── Info.plist │ ├── SMCSuperIO.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCSuperIO │ │ └── Info.plist │ ├── VirtualSMC.kext │ └── Contents │ │ ├── MacOS │ │ └── VirtualSMC │ │ └── Info.plist │ ├── VoodooInput.kext │ └── Contents │ │ ├── MacOS │ │ └── VoodooInput │ │ └── Info.plist │ ├── SMCProcessor.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCProcessor │ │ └── Info.plist │ ├── USBInjectAll.kext │ └── Contents │ │ ├── MacOS │ │ └── USBInjectAll │ │ └── _CodeSignature │ │ └── CodeResources │ ├── VoodooI2CHID.kext │ └── Contents │ │ ├── MacOS │ │ └── VoodooI2CHID │ │ └── Info.plist │ ├── BrcmPatchRAM3.kext │ └── Contents │ │ ├── MacOS │ │ └── BrcmPatchRAM3 │ │ └── _CodeSignature │ │ └── CodeResources │ ├── WhateverGreen.kext │ └── Contents │ │ ├── MacOS │ │ └── WhateverGreen │ │ └── Info.plist │ ├── RealtekRTL8111.kext │ └── Contents │ │ ├── MacOS │ │ └── RealtekRTL8111 │ │ ├── Resources │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Info.plist │ ├── SMCDellSensors.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCDellSensors │ │ └── Info.plist │ ├── SMCLightSensor.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCLightSensor │ │ └── Info.plist │ ├── AirportBrcmFixup.kext │ └── Contents │ │ ├── MacOS │ │ └── AirportBrcmFixup │ │ ├── PlugIns │ │ ├── AirPortBrcm4360_Injector.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ └── AirPortBrcmNIC_Injector.kext │ │ │ └── Contents │ │ │ └── Info.plist │ │ └── Info.plist │ ├── BrcmFirmwareData.kext │ └── Contents │ │ ├── MacOS │ │ └── BrcmFirmwareData │ │ ├── Info.plist │ │ └── _CodeSignature │ │ └── CodeResources │ ├── HibernationFixup.kext │ └── Contents │ │ ├── MacOS │ │ └── HibernationFixup │ │ └── Info.plist │ ├── SMCBatteryManager.kext │ └── Contents │ │ ├── MacOS │ │ └── SMCBatteryManager │ │ ├── Info.plist │ │ └── Resources │ │ └── SSDT-BATC.dsl │ └── VoodooPS2Controller.kext │ └── Contents │ ├── MacOS │ └── VoodooPS2Controller │ ├── PlugIns │ ├── VoodooInput.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ ├── Info.plist │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VoodooPS2Mouse.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooPS2Mouse │ │ │ └── Info.plist │ ├── VoodooPS2Keyboard.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── VoodooPS2Keyboard │ └── VoodooPS2Trackpad.kext │ │ └── Contents │ │ ├── MacOS │ │ └── VoodooPS2Trackpad │ │ └── Info.plist │ └── Info.plist └── README.md /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-ALS0.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-GPRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-GPRW.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-MCHC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-SBUS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-SBUS.aml -------------------------------------------------------------------------------- /EFI/OC/Tools/CFGLock.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/CFGLock.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OC-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-OC-XOSI.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PTSWAK.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-PTSWAK.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/ExFatDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Drivers/ExFatDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/VerifyMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/VerifyMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-LIDpatch.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-LIDpatch.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OCI2C-TPXX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-OCI2C-TPXX.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenHfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Drivers/OpenHfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenUsbKbDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Drivers/OpenUsbKbDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Font/Font.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Font/Font.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Tools/HdaCodecDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Tools/HdaCodecDump.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OCGPI0-GPEN.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-OCGPI0-GPEN.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OCGPI0-SBRG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-OCGPI0-SBRG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OCWork-dell.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-OCWork-dell.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF-SKL_KBL.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-PNLF-SKL_KBL.aml -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-BKeyBRT6-Dell.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-BKeyBRT6-Dell.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EXT4-WakeScreen.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-EXT4-WakeScreen.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG-_PR.CPU0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-PLUG-_PR.CPU0.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/CrScreenshotDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Drivers/CrScreenshotDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-RP01.PXSX-disbale.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-RP01.PXSX-disbale.aml -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackApple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackApple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackLeft.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackLeft.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackOther.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackOther.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackRight.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackRight.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackShell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackTool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-FnInsert_BTNV-dell.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/ACPI/SSDT-FnInsert_BTNV-dell.aml -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackCursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtApple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtApple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtOther.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtOther.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtShell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtTool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackSelected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackSelector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackResetNVRAM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/BlackExtResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Resources/Image/BlackExtResetNVRAM.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VerbStub.kext/Contents/MacOS/VerbStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VerbStub.kext/Contents/MacOS/VerbStub -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3 -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData -------------------------------------------------------------------------------- /EFI/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/HoRNDIS.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Resources/DWARF/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Resources/DWARF/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newham/yoga710-7500u-oc-bigsur/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.me.kishorprins.VoodooInput 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0.7 17 | CFBundleVersion 18 | 1.0.7 19 | 20 | 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lenovo yoga 710 i7-7500U BigSur OpenCore EFI 2 | 3 | > 首先感谢 [https://github.com/HowieHye/Dell-7460-Hackintosh-OC](https://github.com/HowieHye/Dell-7460-Hackintosh-OC) , 本EFI基于该项目修改而成,该博主细心回答了我所有问题,非常感谢他! 4 | 5 | **配置表:** 6 | 7 | | 项目 | 版本 | 8 | | --- | ----- | 9 | | CPU | i7 7500U | 10 | | 核显 | HD620 | 11 | | 内存 | 2133 MHz DDR4 | 12 | | 网卡 | BCM94352Z | 13 | 14 | **驱动情况:** 15 | 16 | | 项目 | 是否完美 | 17 | | ------------------------ | ------------------------------------------ | 18 | | WiFi(Broadcom BCM43xx) | ✅ | 19 | | 蓝牙 | ✅ | 20 | | 键盘 | ✅ | 21 | | 摄像头 | ✅ | 22 | | 触摸板 | 不显示触控面板选项,不支持多指手势,待改进 | 23 | | CPU睿频 | ✅ | 24 | 25 | **总结** 26 | 27 | * 理论上,本EFI支持第七代CPU。 28 | * 升级到Big Sur前务必要备份重要文件!极大概率出现无法启动的现象! 29 | * Intel网卡请更换博通网卡,实现蓝牙wifi的完美兼容! 30 | * kexts部分可能有一些多余的待删除,解决该问题需要一一删除调试,所导致的无法启动风险巨大! 31 | * `USBInjectAll.kext`是重要的驱动,删除则无法正常启动! 32 | 33 | **更新日志** 34 | 35 | - **2021-01-13** 36 | - 同步更新`OC`至`0.6.5` 37 | 38 | - **2021-03-04** 39 | - 同步更新`OC`至`0.6.7` 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcm4360Injector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcm4360 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_Brcm4360 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.Brcm4360 27 | IOClass 28 | AirPort_Brcm4360 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43a3 37 | pci14e4,43b1 38 | pci14e4,43b2 39 | 40 | IOProbeScore 41 | 1110 42 | IOProviderClass 43 | IOPCIDevice 44 | TruePowerOff 45 | 46 | 47 | 48 | OSBundleRequired 49 | Network-Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcmNICInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcmNIC 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_BrcmNIC 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.BrcmNIC 27 | IOClass 28 | AirPort_BrcmNIC 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43ba 37 | pci14e4,43a3 38 | pci14e4,43a0 39 | pci14e4,43b1 40 | pci14e4,43b2 41 | 42 | IOProbeScore 43 | 2048 44 | IOProviderClass 45 | IOPCIDevice 46 | TruePowerOff 47 | 48 | 49 | 50 | OSBundleRequired 51 | Network-Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleExecutable 8 | BrcmFirmwareData 9 | CFBundleIdentifier 10 | as.acidanthera.BrcmFirmwareStore 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | BrcmFirmwareData 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 2.5.7 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.5.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | BrcmFirmwareStore 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BrcmFirmwareStore 49 | IOClass 50 | BrcmFirmwareStore 51 | IOMatchCategory 52 | BrcmFirmwareStore 53 | IOProviderClass 54 | IOResources 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.8 59 | OSBundleCompatibleVersion 60 | 2.5.7 61 | OSBundleLibraries 62 | 63 | com.apple.kpi.iokit 64 | 9.0 65 | com.apple.kpi.libkern 66 | 9.0 67 | com.apple.kpi.mach 68 | 9.0 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19E258 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 41 | IOKitPersonalities 42 | 43 | Voodoo Input 44 | 45 | CFBundleIdentifier 46 | me.kishorprins.VoodooInput 47 | IOClass 48 | VoodooInput 49 | IOProbeScore 50 | 200 51 | IOPropertyMatch 52 | 53 | VoodooInputSupported 54 | 55 | 56 | IOProviderClass 57 | IOService 58 | 59 | 60 | LSMinimumSystemVersion 61 | 10.11 62 | NSHumanReadableCopyright 63 | Copyright © 2019 Kishor Prins. All rights reserved. 64 | OSBundleLibraries 65 | 66 | com.apple.iokit.IOHIDFamily 67 | 2.0 68 | com.apple.kpi.iokit 69 | 14 70 | com.apple.kpi.libkern 71 | 14 72 | com.apple.kpi.mach 73 | 13.0 74 | 75 | OSBundleRequired 76 | Root 77 | 78 | 79 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | Voodoo Input 46 | 47 | CFBundleIdentifier 48 | me.kishorprins.VoodooInput 49 | IOClass 50 | VoodooInput 51 | IOProbeScore 52 | 200 53 | IOPropertyMatch 54 | 55 | VoodooInputSupported 56 | 57 | 58 | IOProviderClass 59 | IOService 60 | 61 | 62 | LSMinimumSystemVersion 63 | 10.11 64 | NSHumanReadableCopyright 65 | Copyright © 2019 Kishor Prins. All rights reserved. 66 | OSBundleLibraries 67 | 68 | com.apple.iokit.IOHIDFamily 69 | 2.0 70 | com.apple.kpi.iokit 71 | 14 72 | com.apple.kpi.libkern 73 | 14 74 | com.apple.kpi.mach 75 | 13.0 76 | 77 | OSBundleRequired 78 | Root 79 | 80 | 81 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18G5033 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.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11C504 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19B90 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1130 39 | DTXcodeBuild 40 | 11C504 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 | LSMinimumSystemVersion 58 | 10.13 59 | OSBundleCompatibleVersion 60 | 1.0 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.2.0 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 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | Voodoo Input 46 | 47 | CFBundleIdentifier 48 | me.kishorprins.VoodooInput 49 | IOClass 50 | VoodooInput 51 | IOProbeScore 52 | 200 53 | IOPropertyMatch 54 | 55 | VoodooInputSupported 56 | 57 | 58 | IOProviderClass 59 | IOService 60 | 61 | 62 | LSMinimumSystemVersion 63 | 10.11 64 | NSHumanReadableCopyright 65 | Copyright © 2019 Kishor Prins. All rights reserved. 66 | OSBundleLibraries 67 | 68 | com.apple.iokit.IOHIDFamily 69 | 2.0 70 | com.apple.kpi.iokit 71 | 14 72 | com.apple.kpi.libkern 73 | 14 74 | com.apple.kpi.mach 75 | 13.0 76 | 77 | OSBundleRequired 78 | Root 79 | 80 | 81 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VerbStub.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18B75 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VerbStub 11 | CFBundleIdentifier 12 | com.XPS.VerbStub 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VerbStub 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10B61 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18B71 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1010 39 | DTXcodeBuild 40 | 10B61 41 | IOKitPersonalities 42 | 43 | VerbStub 44 | 45 | CFBundleIdentifier 46 | com.XPS.VerbStub 47 | IOClass 48 | com_XPS_VerbStub 49 | IOMatchCategory 50 | com_XPS_VerbStub 51 | IOProviderClass 52 | IOHDACodecFunction 53 | IOUserClientClass 54 | VerbStubUserClient 55 | 56 | VerbStubResidency 57 | 58 | CFBundleIdentifier 59 | com.XPS.VerbStub 60 | IOClass 61 | VerbStubResidency 62 | IOMatchCategory 63 | VerbStubResidency 64 | IOProviderClass 65 | IOResources 66 | 67 | 68 | NSHumanReadableCopyright 69 | Copyright © 2017 VerbStub. All rights reserved. 70 | OSBundleLibraries 71 | 72 | com.apple.iokit.IOPCIFamily 73 | 2.9 74 | com.apple.kpi.iokit 75 | 16.6 76 | com.apple.kpi.libkern 77 | 16.6 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H114 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.5.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kpi.bsd 70 | 10.0.0 71 | com.apple.kpi.dsep 72 | 10.0.0 73 | com.apple.kpi.iokit 74 | 10.0.0 75 | com.apple.kpi.libkern 76 | 10.0.0 77 | com.apple.kpi.mach 78 | 10.0.0 79 | com.apple.kpi.unsupported 80 | 10.0.0 81 | 82 | OSBundleRequired 83 | Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 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 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 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 | OSBundleRequired 80 | Root 81 | 82 | 83 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/HibernationFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | HibernationFixup 11 | CFBundleIdentifier 12 | as.lvs1974.HibernationFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | HibernationFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.lvs1974.HibernationFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.HibernationFixup 51 | IOClass 52 | HibernationFixup 53 | IOMatchCategory 54 | HibernationFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.8 63 | NSHumanReadableCopyright 64 | Copyright © 2017 lvs1974. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.0 67 | OSBundleLibraries 68 | 69 | as.vit9696.Lilu 70 | 1.2.4 71 | com.apple.kpi.bsd 72 | 12.0.0 73 | com.apple.kpi.dsep 74 | 12.0.0 75 | com.apple.kpi.iokit 76 | 12.0.0 77 | com.apple.kpi.libkern 78 | 12.0.0 79 | com.apple.kpi.mach 80 | 12.0.0 81 | com.apple.kpi.unsupported 82 | 12.0.0 83 | 84 | OSBundleRequired 85 | Root 86 | 87 | 88 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 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.2.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.2.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | SMCLightSensor 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCLightSensor 49 | IOClass 50 | SMCLightSensor 51 | IOMatchCategory 52 | SMCLightSensor 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.6 61 | NSHumanReadableCopyright 62 | Copyright © 2018 vit9696. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 10.0.0 75 | com.apple.kpi.dsep 76 | 10.0.0 77 | com.apple.kpi.iokit 78 | 10.0.0 79 | com.apple.kpi.libkern 80 | 10.0.0 81 | com.apple.kpi.mach 82 | 10.0.0 83 | com.apple.kpi.unsupported 84 | 10.0.0 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM3.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 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.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 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.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 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 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.2.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 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.2.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/en.lproj/InfoPlist.strings 8 | 9 | hash 10 | 11 | MiLKDDnrUKr4EmuvhS5VQwxHGK8= 12 | 13 | optional 14 | 15 | 16 | 17 | files2 18 | 19 | Resources/en.lproj/InfoPlist.strings 20 | 21 | hash 22 | 23 | MiLKDDnrUKr4EmuvhS5VQwxHGK8= 24 | 25 | hash2 26 | 27 | Oc8u4Ht7Mz58F50L9NeYpbcq9qTlhPUeZCcDu/pPyCg= 28 | 29 | optional 30 | 31 | 32 | 33 | rules 34 | 35 | ^Resources/ 36 | 37 | ^Resources/.*\.lproj/ 38 | 39 | optional 40 | 41 | weight 42 | 1000 43 | 44 | ^Resources/.*\.lproj/locversion.plist$ 45 | 46 | omit 47 | 48 | weight 49 | 1100 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 | ^[^/]+$ 111 | 112 | nested 113 | 114 | weight 115 | 10 116 | 117 | ^embedded\.provisionprofile$ 118 | 119 | weight 120 | 20 121 | 122 | ^version\.plist$ 123 | 124 | weight 125 | 20 126 | 127 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCDellSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCDellSensors 11 | CFBundleIdentifier 12 | as.lvs1974.SMCDellSensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCDellSensors 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.2.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | SMCDellSensors 46 | 47 | CFBundleIdentifier 48 | as.lvs1974.SMCDellSensors 49 | FanMultiplier 50 | 1 51 | FanNames 52 | 53 | CPU Fan 54 | System Fan 55 | GPU Fan 56 | PSU Fan 57 | Chipset Fan 58 | Other Fan 59 | 60 | IOClass 61 | SMCDellSensors 62 | IOMatchCategory 63 | SMCDellSensors 64 | IOProviderClass 65 | IOResources 66 | IOResourceMatch 67 | IOKit 68 | StopFanOffsets 69 | 70 | 0 71 | 0 72 | 0 73 | 0 74 | 0 75 | 0 76 | 77 | 78 | 79 | LSMinimumSystemVersion 80 | 10.7 81 | NSHumanReadableCopyright 82 | Copyright © 2018 usrsse2. All rights reserved. 83 | OSBundleCompatibleVersion 84 | 1.0.0 85 | OSBundleLibraries 86 | 87 | as.vit9696.Lilu 88 | 1.2.0 89 | as.vit9696.VirtualSMC 90 | 1.0.0 91 | com.apple.kpi.bsd 92 | 11.0.0 93 | com.apple.kpi.dsep 94 | 11.0.0 95 | com.apple.kpi.iokit 96 | 11.0.0 97 | com.apple.kpi.libkern 98 | 11.0.0 99 | com.apple.kpi.mach 100 | 11.0.0 101 | com.apple.kpi.unsupported 102 | 11.0.0 103 | 104 | OSBundleRequired 105 | Root 106 | 107 | 108 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20B50 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | RealtekRTL8111 11 | CFBundleIdentifier 12 | com.insanelymac.RealtekRTL8111 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RealtekRTL8111 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.4.0d5 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.4.0d5 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | RTL8111 PCIe Adapter 48 | 49 | CFBundleIdentifier 50 | com.insanelymac.RealtekRTL8111 51 | Driver Parameters 52 | 53 | disableASPM 54 | 55 | enableCSO6 56 | 57 | enableEEE 58 | 59 | enableTSO4 60 | 61 | enableTSO6 62 | 63 | fallbackMAC 64 | 65 | intrMitigate 66 | 53080 67 | rxPolling 68 | 69 | 70 | Driver_Version 71 | 2.4.0d5 72 | IOClass 73 | RTL8111 74 | IOPCIMatch 75 | 0x816810ec 0x81681186 0x250210ec 0x260010ec 76 | IOProbeScore 77 | 1000 78 | IOProviderClass 79 | IOPCIDevice 80 | Model 81 | RTL8111 82 | Vendor 83 | Realtek 84 | 85 | 86 | LSMinimumSystemVersion 87 | 10.15 88 | NSHumanReadableCopyright 89 | Copyright © 2013 Laura Müller. All rights reserved. 90 | OSBundleLibraries 91 | 92 | com.apple.iokit.IONetworkingFamily 93 | 1.5.0 94 | com.apple.iokit.IOPCIFamily 95 | 1.7 96 | com.apple.kpi.bsd 97 | 8.10.0 98 | com.apple.kpi.iokit 99 | 8.10.0 100 | com.apple.kpi.libkern 101 | 8.10.0 102 | com.apple.kpi.mach 103 | 8.10.0 104 | 105 | OSBundleRequired 106 | Network-Root 107 | 108 | 109 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 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.2.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | CPUFriend 48 | 49 | CFBundleIdentifier 50 | org.vanilla.driver.CPUFriend 51 | IOClass 52 | CPUFriend 53 | IOMatchCategory 54 | CPUFriend 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | CPUFriendPlatform 61 | 62 | CFBundleIdentifier 63 | org.vanilla.driver.CPUFriend 64 | IOClass 65 | CPUFriendData 66 | IOProbeScore 67 | 6000 68 | IOPropertyMatch 69 | 70 | IOCPUNumber 71 | 0 72 | 73 | IOProviderClass 74 | AppleACPICPU 75 | IOResourceMatch 76 | ACPI 77 | 78 | 79 | LSMinimumSystemVersion 80 | 10.8 81 | NSHumanReadableCopyright 82 | Copyright © 2017 - 2019 PMheart. All rights reserved. 83 | OSBundleCompatibleVersion 84 | 1.0 85 | OSBundleLibraries 86 | 87 | as.vit9696.Lilu 88 | 1.2.0 89 | com.apple.iokit.IOACPIFamily 90 | 1.0.0d1 91 | com.apple.kpi.bsd 92 | 12.0.0 93 | com.apple.kpi.dsep 94 | 12.0.0 95 | com.apple.kpi.iokit 96 | 12.0.0 97 | com.apple.kpi.libkern 98 | 12.0.0 99 | com.apple.kpi.mach 100 | 12.0.0 101 | com.apple.kpi.unsupported 102 | 12.0.0 103 | 104 | OSBundleRequired 105 | Root 106 | 107 | 108 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 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.2.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.2.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | IOSMBusController 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCBatteryManager 49 | IOClass 50 | SMCSMBusController 51 | IOMatchCategory 52 | SMCSMBusController 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | SMCBatteryManager 59 | 60 | CFBundleIdentifier 61 | ru.usrsse2.SMCBatteryManager 62 | IOClass 63 | SMCBatteryManager 64 | IOMatchCategory 65 | SMCBatteryManager 66 | IOProviderClass 67 | IOResources 68 | IOResourceMatch 69 | IOKit 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.6 74 | NSHumanReadableCopyright 75 | Copyright © 2018 usrsse2. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | as.vit9696.VirtualSMC 83 | 1.0.0 84 | com.apple.iokit.IOACPIFamily 85 | 1.0.0d1 86 | com.apple.iokit.IOSMBusFamily 87 | 1.0.0 88 | com.apple.kpi.bsd 89 | 10.0.0 90 | com.apple.kpi.dsep 91 | 10.0.0 92 | com.apple.kpi.iokit 93 | 10.0.0 94 | com.apple.kpi.libkern 95 | 10.0.0 96 | com.apple.kpi.mach 97 | 10.0.0 98 | com.apple.kpi.unsupported 99 | 10.0.0 100 | 101 | OSBundleRequired 102 | Root 103 | 104 | 105 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 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.4.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.8 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 12.0.0 92 | com.apple.kpi.dsep 93 | 12.0.0 94 | com.apple.kpi.iokit 95 | 12.0.0 96 | com.apple.kpi.libkern 97 | 12.0.0 98 | com.apple.kpi.mach 99 | 12.0.0 100 | com.apple.kpi.unsupported 101 | 12.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 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 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 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 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 15G31 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | HoRNDIS 11 | CFBundleGetInfoString 12 | Android/RNDIS tethering driver 13 | CFBundleIdentifier 14 | com.joshuawise.kexts.HoRNDIS 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | HoRNDIS 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 8.0 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 6 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 7D1014 35 | DTPlatformVersion 36 | GM 37 | DTSDKBuild 38 | 10K549 39 | DTSDKName 40 | macosx10.6 41 | DTXcode 42 | 0731 43 | DTXcodeBuild 44 | 7D1014 45 | IOKitPersonalities 46 | 47 | HoRNDISDevice 48 | 49 | CFBundleIdentifier 50 | com.joshuawise.kexts.HoRNDIS 51 | IOClass 52 | HoRNDISUSBDevice 53 | IOProviderClass 54 | IOUSBDevice 55 | bDeviceClass 56 | 224 57 | bDeviceProtocol 58 | 0 59 | bDeviceSubClass 60 | 0 61 | 62 | HoRNDISDevice2 63 | 64 | CFBundleIdentifier 65 | com.joshuawise.kexts.HoRNDIS 66 | IOClass 67 | HoRNDISUSBDevice 68 | IOProviderClass 69 | IOUSBDevice 70 | bDeviceClass 71 | 239 72 | bDeviceProtocol 73 | 1 74 | bDeviceSubClass 75 | 2 76 | 77 | HoRNDISDeviceComposite 78 | 79 | CFBundleIdentifier 80 | com.joshuawise.kexts.HoRNDIS 81 | IOClass 82 | HoRNDISUSBDevice 83 | IOProviderClass 84 | IOUSBDevice 85 | bDeviceClass 86 | 0 87 | bDeviceProtocol 88 | 0 89 | bDeviceSubClass 90 | 0 91 | 92 | MicroDriverDevice3 93 | 94 | CFBundleIdentifier 95 | com.joshuawise.kexts.HoRNDIS 96 | IOClass 97 | HoRNDISUSBDevice 98 | IOProviderClass 99 | IOUSBDevice 100 | bDeviceClass 101 | 2 102 | bDeviceProtocol 103 | 0 104 | bDeviceSubClass 105 | 0 106 | 107 | 108 | OSBundleLibraries 109 | 110 | com.apple.iokit.IONetworkingFamily 111 | 1.1 112 | com.apple.iokit.IOUSBFamily 113 | 1.8 114 | com.apple.kpi.bsd 115 | 8.0 116 | com.apple.kpi.iokit 117 | 8.0 118 | com.apple.kpi.libkern 119 | 8.0 120 | com.apple.kpi.mach 121 | 8.0 122 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportBrcmFixup 11 | CFBundleIdentifier 12 | as.lvs1974.AirportBrcmFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportBrcmFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.lvs1974.AirportBrcmFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.AirportBrcmFixup 51 | IOClass 52 | AirportBrcmFixup 53 | IOMatchCategory 54 | AirportBrcmFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | as.lvs1974.FakeAirportBrcmFixup 61 | 62 | CFBundleIdentifier 63 | as.lvs1974.AirportBrcmFixup 64 | IOClass 65 | FakeBrcm 66 | IOMatchCategory 67 | IODefaultMatchCategory 68 | IONameMatch 69 | 70 | pci14e4,43ba 71 | pci14e4,43a3 72 | pci14e4,43a0 73 | pci14e4,4331 74 | pci14e4,4353 75 | pci14e4,43b1 76 | pci14e4,43b2 77 | pci14e4,4357 78 | pci14e4,432b 79 | pci14e4,4311 80 | pci14e4,4312 81 | pci14e4,4313 82 | pci14e4,4318 83 | pci14e4,4319 84 | pci14e4,431a 85 | pci14e4,4320 86 | pci14e4,4324 87 | pci14e4,4325 88 | pci14e4,4328 89 | pci14e4,432c 90 | pci14e4,432d 91 | 92 | IOProbeScore 93 | 6000 94 | IOProviderClass 95 | IOPCIDevice 96 | TruePowerOff 97 | 98 | 99 | 100 | LSMinimumSystemVersion 101 | 10.8 102 | NSHumanReadableCopyright 103 | Copyright © 2017 lvs1974. All rights reserved. 104 | OSBundleCompatibleVersion 105 | 1.0 106 | OSBundleLibraries 107 | 108 | as.vit9696.Lilu 109 | 1.2.6 110 | com.apple.iokit.IOPCIFamily 111 | 2.7 112 | com.apple.kpi.bsd 113 | 12.0.0 114 | com.apple.kpi.dsep 115 | 12.0.0 116 | com.apple.kpi.iokit 117 | 12.0.0 118 | com.apple.kpi.libkern 119 | 12.0.0 120 | com.apple.kpi.mach 121 | 12.0.0 122 | com.apple.kpi.unsupported 123 | 12.0.0 124 | 125 | OSBundleRequired 126 | Network-Root 127 | 128 | 129 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.2.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.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 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ACPI PS/2 Nub 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Controller 51 | FindMouseDelay 52 | 100 53 | IOClass 54 | AppleACPIPS2Nub 55 | IONameMatch 56 | 57 | PNP0303 58 | PNP030B 59 | PNP0320 60 | 61 | IOProviderClass 62 | IOACPIPlatformDevice 63 | MouseNameMatch 64 | 65 | PNP0F03 66 | PNP0F0B 67 | PNP0F0E 68 | PNP0F13 69 | 70 | 71 | ApplePS2Controller 72 | 73 | CFBundleIdentifier 74 | as.acidanthera.voodoo.driver.PS2Controller 75 | IOClass 76 | ApplePS2Controller 77 | IONameMatch 78 | ps2controller 79 | IOProviderClass 80 | IOPlatformDevice 81 | Platform Profile 82 | 83 | Default 84 | 85 | MouseWakeFirst 86 | 87 | WakeDelay 88 | 10 89 | 90 | HPQOEM 91 | 92 | 1411 93 | ProBook 94 | 1619 95 | ProBook 96 | 161C 97 | ProBook 98 | 164F 99 | ProBook 100 | 167C 101 | ProBook 102 | 167E 103 | ProBook 104 | 1680 105 | ProBook 106 | 179B 107 | ProBook 108 | 179C 109 | ProBook 110 | 17A9 111 | ProBook 112 | 17F0 113 | ProBook 114 | 17F3 115 | ProBook 116 | 17F6 117 | ProBook 118 | 1942 119 | ProBook 120 | 1949 121 | ProBook 122 | 198F 123 | ProBook 124 | ProBook 125 | 126 | WakeDelay 127 | 0 128 | 129 | ProBook-102 130 | ProBook 131 | ProBook-87 132 | ProBook 133 | 134 | 135 | RM,deliverNotifications 136 | 137 | 138 | 139 | LSMinimumSystemVersion 140 | 10.11 141 | OSBundleCompatibleVersion 142 | 2.2.2 143 | OSBundleLibraries 144 | 145 | com.apple.iokit.IOACPIFamily 146 | 1.0.0d1 147 | com.apple.kpi.bsd 148 | 8.0.0 149 | com.apple.kpi.iokit 150 | 8.0.0 151 | com.apple.kpi.libkern 152 | 8.0.0 153 | com.apple.kpi.mach 154 | 8.0.0 155 | com.apple.kpi.unsupported 156 | 8.0.0 157 | 158 | OSBundleRequired 159 | Console 160 | 161 | 162 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 2.2.2, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.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 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ApplePS2Mouse 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Mouse 51 | HIDPointerAccelerationType 52 | HIDTrackpadAcceleration 53 | HIDScrollAccelerationType 54 | HIDTrackpadScrollAcceleration 55 | IOClass 56 | ApplePS2Mouse 57 | IOProviderClass 58 | ApplePS2MouseDevice 59 | Platform Profile 60 | 61 | Default 62 | 63 | ActLikeTrackpad 64 | 65 | ButtonCount 66 | 3 67 | Darwin 16+ 68 | 69 | ApplePreferenceCapability 70 | 71 | ApplePreferenceIdentifier 72 | com.apple.AppleMultitouchTrackpad 73 | MT Built-in 74 | 75 | MTHIDDevice 76 | 77 | SupportsGestureScrolling 78 | 79 | TrackpadEmbedded 80 | 81 | TrackpadFourFingerGestures 82 | 83 | TrackpadSecondaryClickCorners 84 | 85 | TrackpadThreeFingerDrag 86 | 87 | 88 | DefaultResolution 89 | 240 90 | DisableDevice 91 | 92 | DisableLEDUpdating 93 | 94 | FakeMiddleButton 95 | 96 | ForceDefaultResolution 97 | 98 | ForceSetResolution 99 | 100 | MiddleClickTime 101 | 100000000 102 | MouseCount 103 | 0 104 | MouseYInverter 105 | 1 106 | ProcessBluetoothMouseStopsTrackpad 107 | 108 | ProcessUSBMouseStopsTrackpad 109 | 110 | QuietTimeAfterTyping 111 | 500000000 112 | ResolutionMode 113 | 3 114 | ScrollResolution 115 | 5 116 | ScrollYInverter 117 | 1 118 | TrackpadScroll 119 | 120 | WakeDelay 121 | 1000 122 | 123 | HPQOEM 124 | 125 | 1411 126 | ProBook 127 | 1619 128 | ProBook 129 | 161C 130 | ProBook 131 | 164F 132 | ProBook 133 | 167C 134 | ProBook 135 | 167E 136 | ProBook 137 | 1680 138 | ProBook 139 | 179B 140 | ProBook 141 | 179C 142 | ProBook 143 | 17A9 144 | ProBook 145 | 17F0 146 | ProBook 147 | 17F3 148 | ProBook 149 | 17F6 150 | ProBook 151 | 1942 152 | ProBook 153 | 1949 154 | ProBook 155 | 198F 156 | ProBook 157 | ProBook 158 | 159 | ActLikeTrackpad 160 | 161 | DisableDevice 162 | 163 | 164 | ProBook-102 165 | ProBook 166 | ProBook-87 167 | ProBook 168 | 169 | 170 | ProductID 171 | 547 172 | RM,deliverNotifications 173 | 174 | USBMouseStopsTrackpad 175 | 0 176 | VendorID 177 | 1452 178 | 179 | 180 | LSMinimumSystemVersion 181 | 10.11 182 | OSBundleLibraries 183 | 184 | as.acidanthera.voodoo.driver.PS2Controller 185 | 2.2.2 186 | com.apple.iokit.IOHIDFamily 187 | 1.0.0b1 188 | com.apple.kpi.iokit 189 | 9.0.0 190 | com.apple.kpi.libkern 191 | 9.0.0 192 | com.apple.kpi.mach 193 | 9.0.0 194 | 195 | OSBundleRequired 196 | Console 197 | 198 | 199 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 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.2.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.VirtualSMC 48 | 49 | CFBundleIdentifier 50 | as.vit9696.VirtualSMC 51 | IOClass 52 | VirtualSMC 53 | IODeviceMemory 54 | 55 | 56 | 57 | address 58 | 768 59 | length 60 | 32 61 | 62 | 63 | 64 | 65 | address 66 | 4277141504 67 | length 68 | 65536 69 | 70 | 71 | 72 | IOInterruptControllers 73 | 74 | io-apic-0 75 | 76 | IOInterruptSpecifiers 77 | 78 | 79 | BgAAAAAAAAA= 80 | 81 | 82 | IOMatchCategory 83 | IOACPIPlatformDevice 84 | IOName 85 | SMC 86 | IOProbeScore 87 | 60000 88 | IOProviderClass 89 | AppleACPIPlatformExpert 90 | Keystore 91 | 92 | Generic 93 | 94 | 95 | attr 96 | 97 | iA== 98 | 99 | comment 100 | Total fan number, this should be put to a plugin 101 | name 102 | 103 | Rk51bQ== 104 | 105 | type 106 | 107 | dWk4IA== 108 | 109 | value 110 | 111 | AA== 112 | 113 | 114 | 115 | attr 116 | 117 | gA== 118 | 119 | comment 120 | CPU plimit 121 | name 122 | 123 | TVNUYw== 124 | 125 | type 126 | 127 | dWk4IA== 128 | 129 | value 130 | 131 | AA== 132 | 133 | 134 | 135 | attr 136 | 137 | gA== 138 | 139 | comment 140 | FAN plimit (supposedly) 141 | name 142 | 143 | TVNUZg== 144 | 145 | type 146 | 147 | dWk4IA== 148 | 149 | value 150 | 151 | AA== 152 | 153 | 154 | 155 | attr 156 | 157 | gA== 158 | 159 | comment 160 | Memory plimit 161 | name 162 | 163 | TVNUbQ== 164 | 165 | type 166 | 167 | dWk4IA== 168 | 169 | value 170 | 171 | AA== 172 | 173 | 174 | 175 | attr 176 | 177 | gA== 178 | 179 | comment 180 | This should be 1 on laptops, and is overriden by sensors 181 | name 182 | 183 | QkFUUA== 184 | 185 | type 186 | 187 | ZmxhZw== 188 | 189 | value 190 | 191 | AA== 192 | 193 | 194 | 195 | attr 196 | 197 | gA== 198 | 199 | comment 200 | Only MacPros have custom illumination controllers 201 | name 202 | 203 | THNOTQ== 204 | 205 | type 206 | 207 | dWk4IA== 208 | 209 | value 210 | 211 | AA== 212 | 213 | 214 | 215 | GenericDesktopV1 216 | 217 | GenericDesktopV2 218 | 219 | GenericLaptopV1 220 | 221 | GenericLaptopV2 222 | 223 | GenericV1 224 | 225 | 226 | attr 227 | 228 | gA== 229 | 230 | comment 231 | GPU plimit 232 | name 233 | 234 | TVNUZw== 235 | 236 | type 237 | 238 | dWk4IA== 239 | 240 | value 241 | 242 | AA== 243 | 244 | 245 | 246 | GenericV2 247 | 248 | 249 | attr 250 | 251 | gA== 252 | 253 | comment 254 | E plimit (???) 255 | name 256 | 257 | TVNUZQ== 258 | 259 | type 260 | 261 | dWk4IA== 262 | 263 | value 264 | 265 | AA== 266 | 267 | 268 | 269 | attr 270 | 271 | gA== 272 | 273 | comment 274 | I plimit (???) 275 | name 276 | 277 | TVNUaQ== 278 | 279 | type 280 | 281 | dWk4IA== 282 | 283 | value 284 | 285 | AA== 286 | 287 | 288 | 289 | attr 290 | 291 | gA== 292 | 293 | comment 294 | J plimit (???) 295 | name 296 | 297 | TVNUag== 298 | 299 | type 300 | 301 | dWk4IA== 302 | 303 | value 304 | 305 | AA== 306 | 307 | 308 | 309 | 310 | ModelInfo 311 | 312 | GenericV1 313 | 314 | branch 315 | 316 | ajUyAAAAAAA= 317 | 318 | hwname 319 | 320 | c21jLXBpa2V0b24A 321 | 322 | platform 323 | 324 | ajUyAAAAAAA= 325 | 326 | rev 327 | 328 | AXQPAAAE 329 | 330 | revfb 331 | 332 | AXQPAAAE 333 | 334 | revfu 335 | 336 | AXQPAAAE 337 | 338 | 339 | GenericV2 340 | 341 | branch 342 | 343 | ajUyAAAAAAA= 344 | 345 | hwname 346 | 347 | c21jLWh1cm9ucml2ZXIA 348 | 349 | platform 350 | 351 | ajUyAAAAAAA= 352 | 353 | rev 354 | 355 | AigPAAAH 356 | 357 | revfb 358 | 359 | AigPAAAH 360 | 361 | revfu 362 | 363 | AigPAAAH 364 | 365 | 366 | GenericV3 367 | 368 | hwname 369 | 370 | c21jLWh1cm9ucml2ZXIA 371 | 372 | platform 373 | 374 | ajUyAAAAAAA= 375 | 376 | 377 | 378 | _STA 379 | 11 380 | name 381 | 382 | QVBQMDAwMQA= 383 | 384 | 385 | 386 | LSMinimumSystemVersion 387 | 10.6 388 | NSHumanReadableCopyright 389 | Copyright © 2017 vit9696. All rights reserved. 390 | OSBundleCompatibleVersion 391 | 1.0 392 | OSBundleLibraries 393 | 394 | as.vit9696.Lilu 395 | 1.2.0 396 | com.apple.iokit.IOACPIFamily 397 | 1.0.0d1 398 | com.apple.kpi.bsd 399 | 10.0.0 400 | com.apple.kpi.dsep 401 | 10.0.0 402 | com.apple.kpi.iokit 403 | 10.0.0 404 | com.apple.kpi.libkern 405 | 10.0.0 406 | com.apple.kpi.mach 407 | 10.0.0 408 | com.apple.kpi.unsupported 409 | 10.0.0 410 | 411 | OSBundleRequired 412 | Root 413 | 414 | 415 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 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 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 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.IOHIDFamily 387 | 2.0 388 | com.apple.kpi.iokit 389 | 14 390 | com.apple.kpi.libkern 391 | 14 392 | com.apple.kpi.mach 393 | 13.0 394 | 395 | OSBundleRequired 396 | Root 397 | 398 | 399 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H512 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 2.2.2, 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.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 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ALPS GlidePoint 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Trackpad 51 | IOClass 52 | ApplePS2ALPSGlidePoint 53 | IOProbeScore 54 | 1500 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | DisableDevice 62 | 63 | 64 | HPQOEM 65 | 66 | 1411 67 | ProBook 68 | 1619 69 | ProBook 70 | 161C 71 | ProBook 72 | 164F 73 | ProBook 74 | 167C 75 | ProBook 76 | 167E 77 | ProBook 78 | 1680 79 | ProBook 80 | 179B 81 | ProBook 82 | 179C 83 | ProBook 84 | 17A9 85 | ProBook 86 | 17F0 87 | ProBook 88 | 17F3 89 | ProBook 90 | 17F6 91 | ProBook 92 | 1942 93 | ProBook 94 | 1949 95 | ProBook 96 | 198F 97 | ProBook 98 | ProBook 99 | 100 | DisableDevice 101 | 102 | 103 | ProBook-102 104 | ProBook 105 | ProBook-87 106 | ProBook 107 | 108 | 109 | 110 | Elantech TouchPad 111 | 112 | CFBundleIdentifier 113 | as.acidanthera.voodoo.driver.PS2Trackpad 114 | IOClass 115 | ApplePS2Elan 116 | IOProbeScore 117 | 7000 118 | IOProviderClass 119 | ApplePS2MouseDevice 120 | Platform Profile 121 | 122 | Default 123 | 124 | ButtonCount 125 | 3 126 | Darwin 16+ 127 | 128 | ApplePreferenceCapability 129 | 130 | ApplePreferenceIdentifier 131 | com.apple.AppleMultitouchTrackpad 132 | MT Built-in 133 | 134 | MTHIDDevice 135 | 136 | SupportsGestureScrolling 137 | 138 | TrackpadEmbedded 139 | 140 | TrackpadFourFingerGestures 141 | 142 | TrackpadSecondaryClickCorners 143 | 144 | TrackpadThreeFingerDrag 145 | 146 | 147 | DisableDevice 148 | 149 | ForceTouchMode 150 | 1 151 | MouseResolution 152 | 3 153 | MouseSampleRate 154 | 200 155 | ProcessBluetoothMouseStopsTrackpad 156 | 157 | ProcessUSBMouseStopsTrackpad 158 | 159 | QuietTimeAfterTyping 160 | 500000000 161 | ScrollResolution 162 | 400 163 | SetHwResolution 164 | 165 | TrackpointDividerX 166 | 120 167 | TrackpointDividerY 168 | 120 169 | TrackpointMultiplierX 170 | 120 171 | TrackpointMultiplierY 172 | 120 173 | USBMouseStopsTrackpad 174 | 0 175 | UseHighRate 176 | 177 | WakeDelay 178 | 1000 179 | 180 | 181 | RM,deliverNotifications 182 | 183 | 184 | Native Multitouch Engine 185 | 186 | CFBundleIdentifier 187 | as.acidanthera.voodoo.driver.PS2Trackpad 188 | IOClass 189 | VoodooPS2NativeEngine 190 | IOMatchCategory 191 | VoodooPS2NativeEngine 192 | IOProviderClass 193 | VoodooPS2MultitouchInterface 194 | 195 | Sentelic FSP 196 | 197 | CFBundleIdentifier 198 | as.acidanthera.voodoo.driver.PS2Trackpad 199 | IOClass 200 | ApplePS2SentelicFSP 201 | IOProbeScore 202 | 5500 203 | IOProviderClass 204 | ApplePS2MouseDevice 205 | Platform Profile 206 | 207 | Default 208 | 209 | DisableDevice 210 | 211 | 212 | HPQOEM 213 | 214 | 1411 215 | ProBook 216 | 1619 217 | ProBook 218 | 161C 219 | ProBook 220 | 164F 221 | ProBook 222 | 167C 223 | ProBook 224 | 167E 225 | ProBook 226 | 1680 227 | ProBook 228 | 179B 229 | ProBook 230 | 179C 231 | ProBook 232 | 17A9 233 | ProBook 234 | 17F0 235 | ProBook 236 | 17F3 237 | ProBook 238 | 17F6 239 | ProBook 240 | 1942 241 | ProBook 242 | 1949 243 | ProBook 244 | 198F 245 | ProBook 246 | ProBook 247 | 248 | DisableDevice 249 | 250 | 251 | ProBook-102 252 | ProBook 253 | ProBook-87 254 | ProBook 255 | 256 | 257 | 258 | Synaptics TouchPad 259 | 260 | CFBundleIdentifier 261 | as.acidanthera.voodoo.driver.PS2Trackpad 262 | HIDPointerAccelerationTable 263 | 264 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 265 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 266 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 267 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 268 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 269 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 270 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 271 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 272 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 273 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 274 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 275 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 276 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 277 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 278 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 279 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 280 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 281 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 282 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 283 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 284 | 285 | HIDPointerAccelerationType 286 | HIDTrackpadAcceleration 287 | HIDScrollAccelerationTable 288 | 289 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 290 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 291 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 292 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 293 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 294 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 295 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 296 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 297 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 298 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 299 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 300 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 301 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 302 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 303 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 304 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 305 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 306 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 307 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 308 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 309 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 310 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 311 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 312 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 313 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 314 | AAF8JGg= 315 | 316 | HIDScrollAccelerationType 317 | HIDTrackpadScrollAcceleration 318 | IOClass 319 | ApplePS2SynapticsTouchPad 320 | IOProbeScore 321 | 6000 322 | IOProviderClass 323 | ApplePS2MouseDevice 324 | Platform Profile 325 | 326 | Default 327 | 328 | ButtonCount 329 | 3 330 | Darwin 16+ 331 | 332 | ApplePreferenceCapability 333 | 334 | ApplePreferenceIdentifier 335 | com.apple.AppleMultitouchTrackpad 336 | MT Built-in 337 | 338 | MTHIDDevice 339 | 340 | SupportsGestureScrolling 341 | 342 | TrackpadEmbedded 343 | 344 | TrackpadFourFingerGestures 345 | 346 | TrackpadSecondaryClickCorners 347 | 348 | TrackpadThreeFingerDrag 349 | 350 | 351 | DisableDevice 352 | 353 | DisableLEDUpdating 354 | 355 | FakeMiddleButton 356 | 357 | ForceTouchCustomDownThreshold 358 | 90 359 | ForceTouchCustomPower 360 | 8 361 | ForceTouchCustomUpThreshold 362 | 20 363 | ForceTouchMode 364 | 1 365 | ForceTouchPressureThreshold 366 | 100 367 | MiddleClickTime 368 | 100000000 369 | MouseMiddleScroll 370 | 371 | ProcessBluetoothMouseStopsTrackpad 372 | 373 | ProcessUSBMouseStopsTrackpad 374 | 375 | QuietTimeAfterTyping 376 | 500000000 377 | Resolution 378 | 400 379 | ScrollResolution 380 | 400 381 | SkipPassThrough 382 | 383 | USBMouseStopsTrackpad 384 | 0 385 | UseHighRate 386 | 387 | WakeDelay 388 | 1000 389 | 390 | HPQOEM 391 | 392 | 1411 393 | ProBook 394 | 1619 395 | ProBook 396 | 161C 397 | ProBook 398 | 164F 399 | ProBook 400 | 167C 401 | ProBook 402 | 167E 403 | ProBook 404 | 1680 405 | ProBook 406 | 179B 407 | ProBook 408 | 179C 409 | ProBook 410 | 17A9 411 | ProBook 412 | 17F0 413 | ProBook 414 | 17F3 415 | ProBook 416 | 17F6 417 | ProBook 418 | 1942 419 | ProBook 420 | 1949 421 | ProBook 422 | 198F 423 | ProBook 424 | ProBook 425 | 426 | FingerZ 427 | 40 428 | 429 | ProBook-102 430 | ProBook 431 | ProBook-87 432 | ProBook 433 | 434 | LENOVO 435 | 436 | T420 437 | Thinkpad_TrackPad 438 | T460 439 | Thinkpad_ClickPad 440 | T560 441 | Thinkpad_ClickPad 442 | Thinkpad_ClickPad 443 | 444 | FakeMiddleButton 445 | 446 | FingerZ 447 | 30 448 | HWResetOnStart 449 | 450 | MouseMultiplierX 451 | 2 452 | MouseMultiplierY 453 | 2 454 | MouseScrollMultiplierX 455 | 2 456 | MouseScrollMultiplierY 457 | 2 458 | ScrollResolution 459 | 800 460 | Thinkpad 461 | 462 | 463 | Thinkpad_TrackPad 464 | 465 | FakeMiddleButton 466 | 467 | FingerZ 468 | 47 469 | HWResetOnStart 470 | 471 | Resolution 472 | 3200 473 | ScrollResolution 474 | 800 475 | Thinkpad 476 | 477 | 478 | X1CG3 479 | Thinkpad_ClickPad 480 | 481 | 482 | ProductID 483 | 547 484 | RM,deliverNotifications 485 | 486 | VendorID 487 | 1452 488 | 489 | 490 | LSMinimumSystemVersion 491 | 10.11 492 | OSBundleLibraries 493 | 494 | as.acidanthera.voodoo.driver.PS2Controller 495 | 2.2.2 496 | com.apple.iokit.IOHIDFamily 497 | 1.0.0b1 498 | com.apple.kpi.iokit 499 | 9.0.0 500 | com.apple.kpi.libkern 501 | 9.0.0 502 | com.apple.kpi.mach 503 | 9.0.0 504 | 505 | OSBundleRequired 506 | Console 507 | 508 | 509 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- 1 | // SSDT-BATC.dsl 2 | // 3 | // Based on https://github.com/RehabMan/OS-X-ACPI-Battery-Driver/blob/master/SSDT-BATC.dsl 4 | // 5 | // An SSDT to combine two batteries into one 6 | // initial work/testing by ag6952563 (with assistance by RehabMan) 7 | // finalize into generic SSDT by RehabMan 8 | // some code cleanup/optimization/and bug fixing by RehabMan 9 | // modifications to work VirtualSMC SMCBatteryManager by armenio 10 | // add _BIX (easy, following the original code from RehabMan) by armenio 11 | // 12 | // OS X support for multiple batteries is a bit buggy. 13 | // This SSDT can be used to combine two batteries into one, 14 | // avoiding the bugs. 15 | // 16 | // It may need modification depending on the ACPI path of your 17 | // existing battery objects. 18 | // 19 | 20 | // IMPORTANT: 21 | // 22 | // To use this SSDT, you must also patch any Notify for either BAT0 or BAT1 23 | // objects. 24 | // 25 | // The Notify is used to tell the system when a battery is removed or added. 26 | // 27 | // Any code: 28 | // Notify (...BAT0, ...) 29 | // -or 30 | // Notify (...BAT1, ...) 31 | // 32 | // Must be changed to: 33 | // Notify (...BATC, ...) 34 | // 35 | // Refer to Dual Battery Support.md for patching details 36 | // 37 | 38 | DefinitionBlock ("", "SSDT", 2, "ACDT", "BATC", 0x00000000) 39 | { 40 | External (_SB_.PCI0.LPCB.EC, DeviceObj) 41 | External (_SB_.PCI0.LPCB.EC.BAT0, DeviceObj) 42 | External (_SB_.PCI0.LPCB.EC.BAT0._BIF, MethodObj) 43 | External (_SB_.PCI0.LPCB.EC.BAT0._BIX, MethodObj) 44 | External (_SB_.PCI0.LPCB.EC.BAT0._BST, MethodObj) 45 | External (_SB_.PCI0.LPCB.EC.BAT0._HID, IntObj) 46 | External (_SB_.PCI0.LPCB.EC.BAT0._STA, MethodObj) 47 | External (_SB_.PCI0.LPCB.EC.BAT1, DeviceObj) 48 | External (_SB_.PCI0.LPCB.EC.BAT1._BIF, MethodObj) 49 | External (_SB_.PCI0.LPCB.EC.BAT1._BIX, MethodObj) 50 | External (_SB_.PCI0.LPCB.EC.BAT1._BST, MethodObj) 51 | External (_SB_.PCI0.LPCB.EC.BAT1._HID, IntObj) 52 | External (_SB_.PCI0.LPCB.EC.BAT1._STA, MethodObj) 53 | 54 | Scope (\_SB.PCI0.LPCB.EC) 55 | { 56 | Device (BATC) 57 | { 58 | Name (_HID, EisaId ("PNP0C0A")) 59 | Name (_UID, 0x02) 60 | 61 | Method (_INI) 62 | { 63 | If (_OSI ("Darwin")) 64 | { 65 | // disable original battery objects by setting invalid _HID 66 | ^^BAT0._HID = 0 67 | ^^BAT1._HID = 0 68 | } 69 | } 70 | 71 | Method (_STA) 72 | { 73 | If (_OSI ("Darwin")) 74 | { 75 | // call original _STA for BAT0 and BAT1 76 | // result is bitwise OR between them 77 | Return (^^BAT0._STA () | ^^BAT1._STA ()) 78 | } 79 | Else 80 | { 81 | Return (Zero) 82 | } 83 | } 84 | 85 | Method (_BIF) 86 | { 87 | // Local0 BAT0._BIF 88 | // Local1 BAT1._BIF 89 | // Local2 BAT0._STA 90 | // Local3 BAT1._STA 91 | // Local4/Local5 scratch 92 | 93 | // gather and validate data from BAT0 94 | Local0 = ^^BAT0._BIF () 95 | Local2 = ^^BAT0._STA () 96 | If (0x1f == Local2) 97 | { 98 | // check for invalid design capacity 99 | Local4 = DerefOf (Local0 [1]) 100 | If (!Local4 || Ones == Local4) { Local2 = 0; } 101 | // check for invalid last full charge capacity 102 | Local4 = DerefOf (Local0 [2]) 103 | If (!Local4 || Ones == Local4) { Local2 = 0; } 104 | // check for invalid design voltage 105 | Local4 = DerefOf (Local0 [4]) 106 | If (!Local4 || Ones == Local4) { Local2 = 0; } 107 | } 108 | // gather and validate data from BAT1 109 | Local1 = ^^BAT1._BIF () 110 | Local3 = ^^BAT1._STA () 111 | If (0x1f == Local3) 112 | { 113 | // check for invalid design capacity 114 | Local4 = DerefOf (Local1 [1]) 115 | If (!Local4 || Ones == Local4) { Local3 = 0; } 116 | // check for invalid last full charge capacity 117 | Local4 = DerefOf (Local1 [2]) 118 | If (!Local4 || Ones == Local4) { Local3 = 0; } 119 | // check for invalid design voltage 120 | Local4 = DerefOf (Local1 [4]) 121 | If (!Local4 || Ones == Local4) { Local3 = 0; } 122 | } 123 | // find primary and secondary battery 124 | If (0x1f != Local2 && 0x1f == Local3) 125 | { 126 | // make primary use BAT1 data 127 | Local0 = Local1 // BAT1._BIF result 128 | Local2 = Local3 // BAT1._STA result 129 | Local3 = 0 // no secondary battery 130 | } 131 | // combine batteries into Local0 result if possible 132 | If (0x1f == Local2 && 0x1f == Local3) 133 | { 134 | // _BIF 0 Power Unit - leave BAT0 value 135 | // _BIF 1 Design Capacity - add BAT0 and BAT1 values 136 | Local4 = DerefOf (Local0 [1]) 137 | Local5 = DerefOf (Local1 [1]) 138 | If (0xffffffff != Local4 && 0xffffffff != Local5) 139 | { 140 | Local0 [1] = Local4 + Local5 141 | } 142 | // _BIF 2 Last Full Charge Capacity - add BAT0 and BAT1 values 143 | Local4 = DerefOf (Local0 [2]) 144 | Local5 = DerefOf (Local1 [2]) 145 | If (0xffffffff != Local4 && 0xffffffff != Local5) 146 | { 147 | Local0 [2] = Local4 + Local5 148 | } 149 | // _BIF 3 Battery Technology - leave BAT0 value 150 | // _BIF 4 Design Voltage - average between BAT0 and BAT1 values 151 | Local4 = DerefOf (Local0 [4]) 152 | Local5 = DerefOf (Local1 [4]) 153 | If (0xffffffff != Local4 && 0xffffffff != Local5) 154 | { 155 | Local0 [4] = (Local4 + Local5) / 2 156 | } 157 | // _BIF 5 Design Capacity of Warning - add BAT0 and BAT1 values 158 | Local0 [5] = DerefOf (Local0 [5]) + DerefOf (Local1 [5]) 159 | // _BIF 6 Design Capacity of Low - add BAT0 and BAT1 values 160 | Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6]) 161 | // _BIF 7 Battery Capacity Granularity 1 - add BAT0 and BAT1 values 162 | Local4 = DerefOf (Local0 [7]) 163 | Local5 = DerefOf (Local1 [7]) 164 | If (0xffffffff != Local4 && 0xffffffff != Local5) 165 | { 166 | Local0 [7] = Local4 + Local5 167 | } 168 | // _BIF 8 Battery Capacity Granularity 2 - add BAT0 and BAT1 values 169 | Local4 = DerefOf (Local0 [8]) 170 | Local5 = DerefOf (Local1 [8]) 171 | If (0xffffffff != Local4 && 0xffffffff != Local5) 172 | { 173 | Local0 [8] = Local4 + Local5 174 | } 175 | // _BIF 9 Model Number - concatenate BAT0 and BAT1 values 176 | Local0 [0x09] = Concatenate (Concatenate (DerefOf (Local0 [0x09]), " / "), DerefOf (Local1 [0x09])) 177 | // _BIF a Serial Number - concatenate BAT0 and BAT1 values 178 | Local0 [0x0a] = Concatenate (Concatenate (DerefOf (Local0 [0x0a]), " / "), DerefOf (Local1 [0x0a])) 179 | // _BIF b Battery Type - concatenate BAT0 and BAT1 values 180 | Local0 [0x0b] = Concatenate (Concatenate (DerefOf (Local0 [0x0b]), " / "), DerefOf (Local1 [0x0b])) 181 | // _BIF c OEM Information - concatenate BAT0 and BAT1 values 182 | Local0 [0x0c] = Concatenate (Concatenate (DerefOf (Local0 [0x0c]), " / "), DerefOf (Local1 [0x0c])) 183 | } 184 | 185 | Return (Local0) 186 | } // _BIF 187 | 188 | Method (_BIX) 189 | { 190 | // Local0 BAT0._BIX 191 | // Local1 BAT1._BIX 192 | // Local2 BAT0._STA 193 | // Local3 BAT1._STA 194 | // Local4/Local5 scratch 195 | 196 | // gather and validate data from BAT0 197 | Local0 = ^^BAT0._BIX () 198 | Local2 = ^^BAT0._STA () 199 | If (0x1f == Local2) 200 | { 201 | // check for invalid design capacity 202 | Local4 = DerefOf (Local0 [2]) 203 | If (!Local4 || Ones == Local4) { Local2 = 0; } 204 | // check for invalid last full charge capacity 205 | Local4 = DerefOf (Local0 [3]) 206 | If (!Local4 || Ones == Local4) { Local2 = 0; } 207 | // check for invalid design voltage 208 | Local4 = DerefOf (Local0 [5]) 209 | If (!Local4 || Ones == Local4) { Local2 = 0; } 210 | } 211 | // gather and validate data from BAT1 212 | Local1 = ^^BAT1._BIX () 213 | Local3 = ^^BAT1._STA () 214 | If (0x1f == Local3) 215 | { 216 | // check for invalid design capacity 217 | Local4 = DerefOf (Local1 [2]) 218 | If (!Local4 || Ones == Local4) { Local3 = 0; } 219 | // check for invalid last full charge capacity 220 | Local4 = DerefOf (Local1 [3]) 221 | If (!Local4 || Ones == Local4) { Local3 = 0; } 222 | // check for invalid design voltage 223 | Local4 = DerefOf (Local1 [5]) 224 | If (!Local4 || Ones == Local4) { Local3 = 0; } 225 | } 226 | // find primary and secondary battery 227 | If (0x1f != Local2 && 0x1f == Local3) 228 | { 229 | // make primary use BAT1 data 230 | Local0 = Local1 // BAT1._BIX result 231 | Local2 = Local3 // BAT1._STA result 232 | Local3 = 0 // no secondary battery 233 | } 234 | // combine batteries into Local0 result if possible 235 | If (0x1f == Local2 && 0x1f == Local3) 236 | { 237 | // _BIX 0 Revision - leave BAT0 value 238 | // _BIX 1 Power Unit - leave BAT0 value 239 | // _BIX 2 Design Capacity - add BAT0 and BAT1 values 240 | Local4 = DerefOf (Local0 [2]) 241 | Local5 = DerefOf (Local1 [2]) 242 | If (0xffffffff != Local4 && 0xffffffff != Local5) 243 | { 244 | Local0 [2] = Local4 + Local5 245 | } 246 | // _BIX 3 Last Full Charge Capacity - add BAT0 and BAT1 values 247 | Local4 = DerefOf (Local0 [3]) 248 | Local5 = DerefOf (Local1 [3]) 249 | If (0xffffffff != Local4 && 0xffffffff != Local5) 250 | { 251 | Local0 [3] = Local4 + Local5 252 | } 253 | // _BIX 4 Battery Technology - leave BAT0 value 254 | // _BIX 5 Design Voltage - average between BAT0 and BAT1 values 255 | Local4 = DerefOf (Local0 [5]) 256 | Local5 = DerefOf (Local1 [5]) 257 | If (0xffffffff != Local4 && 0xffffffff != Local5) 258 | { 259 | Local0 [5] = (Local4 + Local5) / 2 260 | } 261 | // _BIX 6 Design Capacity of Warning - add BAT0 and BAT1 values 262 | Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6]) 263 | // _BIX 7 Design Capacity of Low - add BAT0 and BAT1 values 264 | Local0 [7] = DerefOf (Local0 [7]) + DerefOf (Local1 [7]) 265 | // _BIX 8 Cycle Count - average between BAT0 and BAT1 values 266 | Local4 = DerefOf (Local0 [8]) 267 | Local5 = DerefOf (Local1 [8]) 268 | If (0xffffffff != Local4 && 0xffffffff != Local5) 269 | { 270 | Local0 [8] = (Local4 + Local5) / 2 271 | } 272 | // _BIX 9 Measurement Accuracy - average between BAT0 and BAT1 values 273 | Local0 [9] = (DerefOf (Local0 [9]) + DerefOf (Local1 [9])) / 2 274 | // _BIX 0xa Max Sampling Time - average between BAT0 and BAT1 values 275 | Local4 = DerefOf (Local0 [0xa]) 276 | Local5 = DerefOf (Local1 [0xa]) 277 | If (0xffffffff != Local4 && 0xffffffff != Local5) 278 | { 279 | Local0 [0xa] = (Local4 + Local5) / 2 280 | } 281 | // _BIX 0xb Min Sampling Time - average between BAT0 and BAT1 values 282 | Local4 = DerefOf (Local0 [0xb]) 283 | Local5 = DerefOf (Local1 [0xb]) 284 | If (0xffffffff != Local4 && 0xffffffff != Local5) 285 | { 286 | Local0 [0xb] = (Local4 + Local5) / 2 287 | } 288 | // _BIX 0xc Max Averaging Interval - average between BAT0 and BAT1 values 289 | Local0 [0xc] = (DerefOf (Local0 [0xc]) + DerefOf (Local1 [0xc])) / 2 290 | // _BIX 0xd Min Averaging Interval - average between BAT0 and BAT1 values 291 | Local0 [0xd] = (DerefOf (Local0 [0xd]) + DerefOf (Local1 [0xd])) / 2 292 | // _BIX 0xe Battery Capacity Granularity 1 - add BAT0 and BAT1 values 293 | Local4 = DerefOf (Local0 [0xe]) 294 | Local5 = DerefOf (Local1 [0xe]) 295 | If (0xffffffff != Local4 && 0xffffffff != Local5) 296 | { 297 | Local0 [0xe] = Local4 + Local5 298 | } 299 | // _BIX 0xf Battery Capacity Granularity 2 - add BAT0 and BAT1 values 300 | Local4 = DerefOf (Local0 [0xf]) 301 | Local5 = DerefOf (Local1 [0xf]) 302 | If (0xffffffff != Local4 && 0xffffffff != Local5) 303 | { 304 | Local0 [0xf] = Local4 + Local5 305 | } 306 | // _BIX 10 Model Number - concatenate BAT0 and BAT1 values 307 | Local0 [0x10] = Concatenate (Concatenate (DerefOf (Local0 [0x10]), " / "), DerefOf (Local1 [0x10])) 308 | // _BIX 11 Serial Number - concatenate BAT0 and BAT1 values 309 | Local0 [0x11] = Concatenate (Concatenate (DerefOf (Local0 [0x11]), " / "), DerefOf (Local1 [0x11])) 310 | // _BIX 12 Battery Type - concatenate BAT0 and BAT1 values 311 | Local0 [0x12] = Concatenate (Concatenate (DerefOf (Local0 [0x12]), " / "), DerefOf (Local1 [0x12])) 312 | // _BIX 13 OEM Information - concatenate BAT0 and BAT1 values 313 | Local0 [0x13] = Concatenate (Concatenate (DerefOf (Local0 [0x13]), " / "), DerefOf (Local1 [0x13])) 314 | // _BIX 14 Battery Swapping Capability - leave BAT0 value for now 315 | } 316 | Return (Local0) 317 | } // _BIX 318 | 319 | Method (_BST) 320 | { 321 | // Local0 BAT0._BST 322 | // Local1 BAT1._BST 323 | // Local2 BAT0._STA 324 | // Local3 BAT1._STA 325 | // Local4/Local5 scratch 326 | 327 | // gather battery data from BAT0 328 | Local0 = ^^BAT0._BST () 329 | Local2 = ^^BAT0._STA () 330 | If (0x1f == Local2) 331 | { 332 | // check for invalid remaining capacity 333 | Local4 = DerefOf (Local0 [2]) 334 | If (!Local4 || Ones == Local4) { Local2 = 0; } 335 | } 336 | // gather battery data from BAT1 337 | Local1 = ^^BAT1._BST () 338 | Local3 = ^^BAT1._STA () 339 | If (0x1f == Local3) 340 | { 341 | // check for invalid remaining capacity 342 | Local4 = DerefOf (Local1 [2]) 343 | If (!Local4 || Ones == Local4) { Local3 = 0; } 344 | } 345 | // find primary and secondary battery 346 | If (0x1f != Local2 && 0x1f == Local3) 347 | { 348 | // make primary use BAT1 data 349 | Local0 = Local1 // BAT1._BST result 350 | Local2 = Local3 // BAT1._STA result 351 | Local3 = 0 // no secondary battery 352 | } 353 | // combine batteries into Local0 result if possible 354 | If (0x1f == Local2 && 0x1f == Local3) 355 | { 356 | // _BST 0 - Battery State - if one battery is charging, then charging, else discharging 357 | Local4 = DerefOf (Local0 [0]) 358 | Local5 = DerefOf (Local1 [0]) 359 | If (Local4 != Local5) 360 | { 361 | If (Local4 == 2 || Local5 == 2) 362 | { 363 | // 2 = charging 364 | Local0 [0] = 2 365 | } 366 | ElseIf (Local4 == 1 || Local5 == 1) 367 | { 368 | // 1 = discharging 369 | Local0 [0] = 1 370 | } 371 | ElseIf (Local4 == 3 || Local5 == 3) 372 | { 373 | Local0 [0] = 3 374 | } 375 | ElseIf (Local4 == 4 || Local5 == 4) 376 | { 377 | // critical 378 | Local0 [0] = 4 379 | } 380 | ElseIf (Local4 == 5 || Local5 == 5) 381 | { 382 | // critical and discharging 383 | Local0 [0] = 5 384 | } 385 | // if none of the above, just leave as BAT0 is 386 | } 387 | 388 | // _BST 1 - Battery Present Rate - add BAT0 and BAT1 values 389 | Local0 [1] = DerefOf (Local0 [1]) + DerefOf (Local1 [1]) 390 | // _BST 2 - Battery Remaining Capacity - add BAT0 and BAT1 values 391 | Local0 [2] = DerefOf (Local0 [2]) + DerefOf (Local1 [2]) 392 | // _BST 3 - Battery Present Voltage - average between BAT0 and BAT1 values 393 | Local0 [3] = (DerefOf (Local0 [3]) + DerefOf (Local1 [3])) / 2 394 | } 395 | Return (Local0) 396 | } // _BST 397 | } // BATC 398 | } // Scope (...) 399 | } 400 | //EOF 401 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 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.4.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.4.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 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,34e8 534 | pci8086,6e8 535 | pci8086,6e9 536 | pci8086,2e8 537 | pci8086,2e9 538 | pci8086,9d60 539 | pci8086,9d61 540 | pci8086,9d62 541 | pci8086,9d63 542 | pci8086,9de8 543 | pci8086,9de9 544 | pci8086,a160 545 | pci8086,a161 546 | pci8086,a162 547 | pci8086,a368 548 | pci8086,a369 549 | pci8086,a36a 550 | pci8086,a36b 551 | 552 | IOProbeScore 553 | 9999 554 | IOProviderClass 555 | IOService 556 | 557 | 558 | LSMinimumSystemVersion 559 | 10.11 560 | NSHumanReadableCopyright 561 | Copyright © 2020 Alexandre Daoud. All rights reserved. 562 | OSBundleCompatibleVersion 563 | 2.0.0 564 | OSBundleLibraries 565 | 566 | com.alexandred.VoodooI2CServices 567 | 1.0 568 | com.apple.iokit.IOACPIFamily 569 | 1.4 570 | com.apple.iokit.IOHIDFamily 571 | 2.0 572 | com.apple.iokit.IOPCIFamily 573 | 2.9 574 | com.apple.kpi.bsd 575 | 8.0 576 | com.apple.kpi.iokit 577 | 14 578 | com.apple.kpi.libkern 579 | 14 580 | com.apple.kpi.mach 581 | 14 582 | org.coolstar.VoodooGPIO 583 | 1.1 584 | 585 | OSBundleRequired 586 | Root 587 | 588 | 589 | --------------------------------------------------------------------------------