├── .gitignore ├── img ├── BT.png ├── usb.png ├── audio.png ├── system.png ├── wifi.png ├── battery.png ├── dispaly.png ├── touchPad.png ├── audio-toast.png ├── dispaly-info.png └── brightness-toast.png ├── EFI ├── CLOVER │ ├── themes │ │ └── SimpleThemeDark │ │ │ ├── .hash │ │ │ ├── banner.png │ │ │ ├── font.png │ │ │ ├── background.png │ │ │ ├── screenshot0.png │ │ │ ├── icons │ │ │ ├── cd_lin.icns │ │ │ ├── cd_mac.icns │ │ │ ├── cd_win.icns │ │ │ ├── os_mac.icns │ │ │ ├── os_win.icns │ │ │ ├── func_about.png │ │ │ ├── func_help.png │ │ │ ├── func_reset.png │ │ │ ├── os_arch.icns │ │ │ ├── os_clover.icns │ │ │ ├── os_legacy.icns │ │ │ ├── os_linux.icns │ │ │ ├── os_sierra.icns │ │ │ ├── os_ubuntu.icns │ │ │ ├── os_win7.icns │ │ │ ├── pointer.icns │ │ │ ├── tool_shell.png │ │ │ ├── func_clover.png │ │ │ ├── func_options.png │ │ │ ├── os_freebsd.icns │ │ │ ├── os_recovery.icns │ │ │ ├── os_unknown.icns │ │ │ ├── tool_shell.icns │ │ │ ├── vol_clover.icns │ │ │ ├── vol_optical.icns │ │ │ ├── func_shutdown.png │ │ │ ├── vol_external.icns │ │ │ ├── vol_firewire.icns │ │ │ ├── vol_internal.icns │ │ │ ├── vol_recovery.icns │ │ │ ├── vol_internal_hfs.icns │ │ │ ├── vol_internal_ext3.icns │ │ │ └── vol_internal_ntfs.icns │ │ │ ├── selection_big.png │ │ │ ├── selection_small.png │ │ │ └── theme.plist │ ├── CLOVERX64.efi │ ├── tools │ │ ├── Shell32.efi │ │ ├── Shell64.efi │ │ ├── Shell64U.efi │ │ └── bdmesg.efi │ ├── ACPI │ │ ├── origin │ │ │ ├── APIC.aml │ │ │ ├── ASF!.aml │ │ │ ├── BGRT.aml │ │ │ ├── DSDT.aml │ │ │ ├── FACP.aml │ │ │ ├── FACS.aml │ │ │ ├── FPDT.aml │ │ │ ├── HPET.aml │ │ │ ├── MCFG.aml │ │ │ ├── RSDP.aml │ │ │ ├── RSDT.aml │ │ │ ├── SLIC.aml │ │ │ ├── XSDT.aml │ │ │ ├── APIC-p.aml │ │ │ ├── RSDT-FACP.aml │ │ │ ├── RSDT-FACS.aml │ │ │ ├── SSDT-0-PARADISE.aml │ │ │ ├── SSDT-1-PARADISE.aml │ │ │ ├── SSDT-2-PARADISE.aml │ │ │ ├── SSDT-3-PARADISE.aml │ │ │ ├── SSDT-4-PARADISE.aml │ │ │ ├── SSDT-5-PARADISE.aml │ │ │ ├── SSDT-6-PARADISE.aml │ │ │ ├── SSDT-x2_0-ApIst.aml │ │ │ ├── SSDT-x2_1-Cpu0Cst.aml │ │ │ └── SSDT-x2_2-ApCst.aml │ │ └── patched │ │ │ ├── SSDT-CPU.aml │ │ │ ├── SSDT-EC.aml │ │ │ ├── SSDT-ALS0.aml │ │ │ ├── SSDT-FnKey.aml │ │ │ ├── SSDT-MCHC.aml │ │ │ ├── SSDT-PNLF.aml │ │ │ ├── SSDT-UIAC.aml │ │ │ ├── SSDT-XOSI.aml │ │ │ ├── SSDT-MCHC.dsl │ │ │ ├── SSDT-FnKey.dsl │ │ │ ├── SSDT-ALS0.dsl │ │ │ ├── SSDT-XOSI.dsl │ │ │ └── SSDT-DGPU.dsl │ ├── drivers │ │ ├── UEFI │ │ │ ├── apfs.efi │ │ │ ├── FSInject.efi │ │ │ ├── HFSPlus.efi │ │ │ ├── VirtualSmc.efi │ │ │ ├── ApfsDriverLoader.efi │ │ │ └── AptioMemoryFix.efi │ │ └── BIOS │ │ │ ├── FSInject.efi │ │ │ ├── HFSPlus.efi │ │ │ └── ApfsDriverLoader.efi │ └── kexts │ │ └── Other │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ └── Info.plist │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── AppleALC │ │ ├── FakePCIID.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── FakePCIID │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── PlugIns │ │ │ └── SMCProcessor.kext │ │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCProcessor │ │ │ └── Info.plist │ │ ├── BrcmPatchRAM2.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM2 │ │ ├── BrcmPatchRAM3.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM3 │ │ ├── WhateverGreen.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── WhateverGreen │ │ │ └── Info.plist │ │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ ├── Resources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── Info.plist │ │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── AirportBrcmFixup │ │ ├── BrcmFirmwareData.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── BrcmFirmwareData │ │ │ └── Info.plist │ │ ├── FakePCIID_XHCIMux.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── FakePCIID_XHCIMux │ │ │ └── Info.plist │ │ ├── ACPIBatteryManager.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── ACPIBatteryManager │ │ │ └── Info.plist │ │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns │ │ │ ├── VoodooInput.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VoodooInput │ │ │ │ └── Info.plist │ │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ └── MacOS │ │ │ └── VoodooPS2Trackpad │ │ └── USBPorts.kext │ │ └── Contents │ │ └── Info.plist ├── OC │ ├── OpenCore.efi │ ├── ACPI │ │ ├── SSDT-FnKey.aml │ │ ├── SSDT-PLUG.aml │ │ ├── SSDT-PNLF.aml │ │ ├── SSDT-UIAC.aml │ │ ├── SSDT-EHCx_OFF.aml │ │ ├── SSDT-HPET_RTC_TIMR-fix.aml │ │ ├── SSDT-FnKey.dsl │ │ ├── SSDT-EHCx_OFF.dsl │ │ ├── SSDT-UIAC.dsl │ │ └── SSDT-HPET_RTC_TIMR-fix.dsl │ ├── Drivers │ │ ├── HfsPlus.efi │ │ └── OpenRuntime.efi │ ├── Bootstrap │ │ └── Bootstrap.efi │ └── Kexts │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ ├── Info.plist │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── AppleALC │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCSuperIO │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCProcessor │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── Info.plist │ │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── BrcmPatchRAM2.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM2 │ │ ├── WhateverGreen.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── WhateverGreen │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── Info.plist │ │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ ├── Resources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── AirportBrcmFixup │ │ ├── BrcmFirmwareData.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── BrcmFirmwareData │ │ │ ├── Info.plist │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── Info.plist │ │ └── VoodooPS2Controller.kext │ │ └── Contents │ │ ├── MacOS │ │ └── VoodooPS2Controller │ │ └── PlugIns │ │ ├── VoodooInput.kext │ │ └── Contents │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── Info.plist │ │ ├── VoodooPS2Mouse.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── VoodooPS2Mouse │ │ ├── VoodooPS2Keyboard.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── VoodooPS2Keyboard │ │ └── VoodooPS2Trackpad.kext │ │ └── Contents │ │ └── MacOS │ │ └── VoodooPS2Trackpad └── BOOT │ └── BOOTX64.efi ├── other └── TouchPad │ ├── ApplePS2SmartTouchPad.kext │ └── Contents │ │ ├── MacOS │ │ └── ApplePS2SmartTouchPad │ │ ├── Resources │ │ ├── Features Documentation.rtfd │ │ │ ├── TXT.rtf │ │ │ ├── 8524384148_7da070dae6_c.jpg │ │ │ ├── 9718452526_b6414cd8e7_n.jpg │ │ │ └── 11493706554_130fa58d5f_n.jpg │ │ └── Synaptics documentation.rtfd │ │ │ ├── TXT.rtf │ │ │ ├── page30image13008.png │ │ │ ├── page30image13432.png │ │ │ ├── page30image13912.png │ │ │ ├── page30image14840.png │ │ │ ├── page30image15160.png │ │ │ ├── page30image16448.png │ │ │ ├── page30image16608.png │ │ │ ├── page30image18496.png │ │ │ ├── page30image18808.png │ │ │ ├── page30image20328.png │ │ │ ├── page30image21840.png │ │ │ ├── page30image22000.png │ │ │ ├── page30image24168.png │ │ │ ├── page30image24328.png │ │ │ ├── page30image25088.png │ │ │ ├── page30image25248.png │ │ │ ├── page30image26496.png │ │ │ ├── page30image26984.png │ │ │ ├── page30image28496.png │ │ │ ├── page30image29088.png │ │ │ ├── page30image31456.png │ │ │ ├── page30image31616.png │ │ │ ├── page30image31776.png │ │ │ ├── page30image31936.png │ │ │ ├── page30image32096.png │ │ │ ├── page30image32256.png │ │ │ ├── page30image32416.png │ │ │ ├── page30image33264.png │ │ │ ├── page30image33848.png │ │ │ ├── page30image34168.png │ │ │ ├── page30image34328.png │ │ │ ├── page30image34920.png │ │ │ ├── page30image35080.png │ │ │ ├── page30image35672.png │ │ │ ├── page30image35992.png │ │ │ ├── page30image36312.png │ │ │ ├── page30image36472.png │ │ │ ├── page30image36632.png │ │ │ ├── page30image36792.png │ │ │ ├── page30image36952.png │ │ │ ├── page30image37112.png │ │ │ ├── page30image37272.png │ │ │ ├── page30image38680.png │ │ │ ├── page30image39000.png │ │ │ ├── page30image40360.png │ │ │ ├── page30image41264.png │ │ │ ├── page30image42512.png │ │ │ ├── page30image42992.png │ │ │ ├── page30image44072.png │ │ │ ├── page30image44392.png │ │ │ ├── page30image45080.png │ │ │ ├── page30image45400.png │ │ │ ├── page30image45872.png │ │ │ ├── page30image47224.png │ │ │ ├── page30image47840.png │ │ │ ├── page30image48000.png │ │ │ ├── page30image49832.png │ │ │ ├── page30image49992.png │ │ │ ├── page30image50744.png │ │ │ ├── page30image51992.png │ │ │ ├── page30image52480.png │ │ │ ├── page30image53728.png │ │ │ ├── page30image54320.png │ │ │ ├── page30image54640.png │ │ │ ├── page30image56688.png │ │ │ ├── page30image56848.png │ │ │ ├── page30image57008.png │ │ │ ├── page30image57328.png │ │ │ ├── page30image57488.png │ │ │ ├── page30image57648.png │ │ │ ├── page30image58464.png │ │ │ ├── page30image59048.png │ │ │ ├── page30image59368.png │ │ │ ├── page30image59528.png │ │ │ ├── page30image60112.png │ │ │ ├── page30image60272.png │ │ │ ├── page30image60432.png │ │ │ ├── page30image61880.png │ │ │ ├── page30image62040.png │ │ │ ├── page30image62200.png │ │ │ ├── page30image63104.png │ │ │ ├── page30image63424.png │ │ │ ├── page30image63744.png │ │ │ ├── page30image64064.png │ │ │ ├── page30image64672.png │ │ │ ├── page30image64832.png │ │ │ ├── page30image65424.png │ │ │ ├── page30image65744.png │ │ │ ├── page30image65904.png │ │ │ ├── page30image66064.png │ │ │ ├── page30image66224.png │ │ │ ├── page30image67312.png │ │ │ ├── page30image67472.png │ │ │ ├── page30image67632.png │ │ │ ├── page30image68112.png │ │ │ ├── page30image68432.png │ │ │ ├── page30image68856.png │ │ │ ├── page30image69176.png │ │ │ ├── page42image103272.png │ │ │ ├── page42image105384.png │ │ │ ├── page42image105808.png │ │ │ ├── page42image75600.png │ │ │ ├── page42image75760.png │ │ │ ├── page42image76080.png │ │ │ ├── page42image76672.png │ │ │ ├── page42image76832.png │ │ │ ├── page42image77440.png │ │ │ ├── page42image77600.png │ │ │ ├── page42image77920.png │ │ │ ├── page42image78240.png │ │ │ ├── page42image78848.png │ │ │ ├── page42image79272.png │ │ │ ├── page42image81272.png │ │ │ ├── page42image82192.png │ │ │ ├── page42image83992.png │ │ │ ├── page42image84520.png │ │ │ ├── page42image85104.png │ │ │ ├── page42image85528.png │ │ │ ├── page42image86456.png │ │ │ ├── page42image86936.png │ │ │ ├── page42image87360.png │ │ │ ├── page42image88112.png │ │ │ ├── page42image88272.png │ │ │ ├── page42image88912.png │ │ │ ├── page42image93040.png │ │ │ ├── page42image95864.png │ │ │ ├── page42image96184.png │ │ │ ├── page42image97536.png │ │ │ ├── page42image99496.png │ │ │ ├── page43image24304.png │ │ │ ├── page43image24464.png │ │ │ ├── page43image24784.png │ │ │ ├── page43image25376.png │ │ │ ├── page43image25536.png │ │ │ ├── page43image26144.png │ │ │ ├── page43image26304.png │ │ │ ├── page43image26624.png │ │ │ ├── page43image26944.png │ │ │ ├── page43image27568.png │ │ │ ├── page43image28152.png │ │ │ ├── page43image29984.png │ │ │ ├── page43image30408.png │ │ │ ├── page43image30736.png │ │ │ ├── page43image31160.png │ │ │ ├── page43image32696.png │ │ │ ├── page43image33232.png │ │ │ ├── page43image33392.png │ │ │ ├── page43image33816.png │ │ │ ├── page43image34240.png │ │ │ ├── page43image35168.png │ │ │ ├── page43image35648.png │ │ │ ├── page43image35968.png │ │ │ ├── page43image36720.png │ │ │ ├── page43image36880.png │ │ │ ├── page43image37520.png │ │ │ ├── page43image46136.png │ │ │ ├── page43image48136.png │ │ │ ├── page43image48560.png │ │ │ ├── page43image49048.png │ │ │ ├── page43image50440.png │ │ │ ├── page43image51704.png │ │ │ ├── page43image52024.png │ │ │ ├── page43image53736.png │ │ │ ├── page43image54056.png │ │ │ ├── page43image54544.png │ │ │ └── page43image55936.png │ │ └── PlugIns │ │ ├── ApplePS2Keyboard.kext │ │ └── Contents │ │ │ └── MacOS │ │ │ └── ApplePS2Keyboard │ │ └── ApplePS2Controller.kext │ │ └── Contents │ │ ├── MacOS │ │ └── ApplePS2Controller │ │ └── Info.plist │ ├── README.md │ └── SSDT-FnKey.dsl └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | .DS_Store 3 | .fseventsd 4 | .empty -------------------------------------------------------------------------------- /img/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/BT.png -------------------------------------------------------------------------------- /img/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/usb.png -------------------------------------------------------------------------------- /img/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/audio.png -------------------------------------------------------------------------------- /img/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/system.png -------------------------------------------------------------------------------- /img/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/wifi.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/.hash: -------------------------------------------------------------------------------- 1 | 340eb36af3f8e4066909df417c498a4bb6fcdf75 2 | -------------------------------------------------------------------------------- /img/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/battery.png -------------------------------------------------------------------------------- /img/dispaly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/dispaly.png -------------------------------------------------------------------------------- /img/touchPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/touchPad.png -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /img/audio-toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/audio-toast.png -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /img/dispaly-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/dispaly-info.png -------------------------------------------------------------------------------- /EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /img/brightness-toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/brightness-toast.png -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-FnKey.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-FnKey.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-UIAC.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EHCx_OFF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-EHCx_OFF.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/APIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/APIC.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/ASF!.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/ASF!.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/BGRT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/BGRT.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/DSDT.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/FACP.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/FACS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/FACS.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/FPDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/FPDT.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/HPET.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/MCFG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/MCFG.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/RSDP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/RSDP.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/RSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/RSDT.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SLIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SLIC.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/XSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/XSDT.aml -------------------------------------------------------------------------------- /EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/APIC-p.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/APIC-p.aml -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/apfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/apfs.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/RSDT-FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/RSDT-FACP.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/RSDT-FACS.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/RSDT-FACS.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-CPU.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-CPU.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/BIOS/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/BIOS/FSInject.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/BIOS/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/BIOS/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-ALS0.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-FnKey.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-FnKey.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-MCHC.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-UIAC.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-XOSI.aml -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-0-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-0-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-1-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-1-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-2-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-2-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-3-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-3-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-4-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-4-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-5-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-5-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-6-PARADISE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-6-PARADISE.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-x2_0-ApIst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-x2_0-ApIst.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-x2_1-Cpu0Cst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-x2_1-Cpu0Cst.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/SSDT-x2_2-ApCst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/SSDT-x2_2-ApCst.aml -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/banner.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/font.png -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/background.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/screenshot0.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/cd_lin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/cd_lin.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/cd_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/cd_mac.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/cd_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/cd_win.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_mac.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_win.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/selection_big.png -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_about.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_help.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_reset.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_arch.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_clover.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_legacy.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_linux.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_sierra.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_sierra.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_win7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_win7.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/pointer.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/tool_shell.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/selection_small.png -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_clover.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_options.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_freebsd.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_recovery.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/os_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_unknown.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/tool_shell.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_clover.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_optical.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_shutdown.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_external.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_firewire.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_recovery.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM2.kext/Contents/MacOS/BrcmPatchRAM2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/BrcmPatchRAM2.kext/Contents/MacOS/BrcmPatchRAM2 -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/MacOS/FakePCIID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/MacOS/FakePCIID -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/MacOS/BrcmPatchRAM2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/MacOS/BrcmPatchRAM2 -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3 -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/FakePCIID_XHCIMux.kext/Contents/MacOS/FakePCIID_XHCIMux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/FakePCIID_XHCIMux.kext/Contents/MacOS/FakePCIID_XHCIMux -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/MacOS/ApplePS2SmartTouchPad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/MacOS/ApplePS2SmartTouchPad -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/TXT.rtf -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/TXT.rtf -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/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/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image13008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image13008.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image13432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image13432.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image13912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image13912.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image14840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image14840.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image15160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image15160.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image16448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image16448.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image16608.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image16608.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image18496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image18496.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image18808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image18808.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image20328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image20328.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image21840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image21840.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image22000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image22000.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image24168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image24168.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image24328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image24328.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image25088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image25088.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image25248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image25248.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image26496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image26496.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image26984.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image26984.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image28496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image28496.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image29088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image29088.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31456.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31616.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31776.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31776.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image31936.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image32096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image32096.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image32256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image32256.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image32416.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image32416.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image33264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image33264.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image33848.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image33848.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image34168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image34168.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image34328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image34328.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image34920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image34920.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image35080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image35080.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image35672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image35672.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image35992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image35992.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36312.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36472.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36472.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36632.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36792.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image36952.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image37112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image37112.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image37272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image37272.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image38680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image38680.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image39000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image39000.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image40360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image40360.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image41264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image41264.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image42512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image42512.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image42992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image42992.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image44072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image44072.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image44392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image44392.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image45080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image45080.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image45400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image45400.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image45872.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image45872.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image47224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image47224.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image47840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image47840.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image48000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image48000.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image49832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image49832.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image49992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image49992.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image50744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image50744.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image51992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image51992.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image52480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image52480.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image53728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image53728.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image54320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image54320.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image54640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image54640.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image56688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image56688.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image56848.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image56848.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57008.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57328.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57488.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57488.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image57648.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image58464.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image58464.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image59048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image59048.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image59368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image59368.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image59528.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image59528.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image60112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image60112.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image60272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image60272.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image60432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image60432.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image61880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image61880.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image62040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image62040.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image62200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image62200.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image63104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image63104.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image63424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image63424.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image63744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image63744.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image64064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image64064.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image64672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image64672.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image64832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image64832.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image65424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image65424.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image65744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image65744.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image65904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image65904.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image66064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image66064.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image66224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image66224.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image67312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image67312.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image67472.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image67472.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image67632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image67632.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image68112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image68112.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image68432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image68432.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image68856.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image68856.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image69176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page30image69176.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image103272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image103272.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image105384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image105384.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image105808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image105808.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image75600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image75600.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image75760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image75760.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image76080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image76080.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image76672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image76672.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image76832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image76832.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image77440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image77440.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image77600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image77600.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image77920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image77920.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image78240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image78240.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image78848.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image78848.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image79272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image79272.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image81272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image81272.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image82192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image82192.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image83992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image83992.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image84520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image84520.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image85104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image85104.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image85528.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image85528.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image86456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image86456.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image86936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image86936.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image87360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image87360.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image88112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image88112.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image88272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image88272.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image88912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image88912.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image93040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image93040.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image95864.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image95864.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image96184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image96184.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image97536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image97536.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image99496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page42image99496.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image24304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image24304.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image24464.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image24464.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image24784.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image24784.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image25376.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image25376.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image25536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image25536.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26144.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26304.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26624.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image26944.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image27568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image27568.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image28152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image28152.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image29984.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image29984.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image30408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image30408.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image30736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image30736.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image31160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image31160.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image32696.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image32696.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image33232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image33232.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image33392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image33392.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image33816.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image33816.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image34240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image34240.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image35168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image35168.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image35648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image35648.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image35968.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image35968.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image36720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image36720.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image36880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image36880.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image37520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image37520.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image46136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image46136.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image48136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image48136.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image48560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image48560.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image49048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image49048.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image50440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image50440.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image51704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image51704.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image52024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image52024.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image53736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image53736.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image54056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image54056.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image54544.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image54544.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image55936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Synaptics documentation.rtfd/page43image55936.png -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Keyboard.kext/Contents/MacOS/ApplePS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Keyboard.kext/Contents/MacOS/ApplePS2Keyboard -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Controller.kext/Contents/MacOS/ApplePS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Controller.kext/Contents/MacOS/ApplePS2Controller -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/8524384148_7da070dae6_c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/8524384148_7da070dae6_c.jpg -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/9718452526_b6414cd8e7_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/9718452526_b6414cd8e7_n.jpg -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/11493706554_130fa58d5f_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/11493706554_130fa58d5f_n.jpg -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /other/TouchPad/README.md: -------------------------------------------------------------------------------- 1 | ## 触控板 2 | 3 | 用 `ApplePS2SmartTouchPad.kext` 驱动触控板正常,`SSDT-FnKey.dsl` 可使用 `fn + F8/F9` 调整亮度。 4 | 5 | 但,问题是左边 `Shift + F1/F2` 也是调节亮度,感觉这个 shift 跟 fn 功能一样,不太方便 6 | 7 | ### 用法 8 | 删除 `EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext` 9 | 复制 `other/TouchPad/ApplePS2SmartTouchPad.kext` 到 `EFI/CLOVER/kexts/Other` 10 | 11 | 如果要用 fn 调节亮度,还需复制编译后的 `other/TouchPad/SSDT-FnKey.dsl` 到 `EFI/CLOVER/ACPI/patched` 12 | 13 | 14 | ![TouchPad](../../img/touchPad.png) 15 | -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-MCHC.dsl: -------------------------------------------------------------------------------- 1 | //Add MCHC 2 | DefinitionBlock ("", "SSDT", 2, "hack", "MCHC", 0) 3 | { 4 | External (_SB_.PCI0, DeviceObj) 5 | 6 | Scope (_SB.PCI0) 7 | { 8 | Device (MCHC) 9 | { 10 | Name (_ADR, Zero) 11 | Method (_STA, 0, NotSerialized) 12 | { 13 | If (_OSI ("Darwin")) 14 | { 15 | Return (0x0F) 16 | } 17 | Else 18 | { 19 | Return (Zero) 20 | } 21 | } 22 | } 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-FnKey.dsl: -------------------------------------------------------------------------------- 1 | // This is a hotpatch for HASEE (K650D-i5 D2) backlight control 2 | // Fn + F8(down) / F9(up) 3 | // In config ACPI, _Q12 renamed XQ12 4 | // Find: <5f513132 00700a> 5 | // Replace: <58513132 00700a> 6 | DefinitionBlock ("", "SSDT", 2, "hack", "fnkey", 0x00000000) 7 | { 8 | External (_SB_.PCI0.LPCB.EC__, DeviceObj) 9 | External (_SB_.PCI0.LPCB.PS2K, DeviceObj) 10 | External (OEM2, FieldUnitObj) 11 | 12 | Scope (_SB.PCI0.LPCB.EC) 13 | { 14 | Name (OEM8, 0) 15 | Store (OEM2, OEM8) 16 | 17 | Method (_Q12, 0, NotSerialized) 18 | { 19 | If (OEM2 < OEM8 || ( OEM2 == 0 && OEM8 == 0)) 20 | { 21 | Notify (PS2K, 0x0405) // Down 22 | } 23 | ElseIf (OEM2 > OEM8 || ( OEM2 == 7 && OEM8 == 7)) 24 | { 25 | Notify (PS2K, 0x0406) // Up 26 | } 27 | 28 | Store (OEM2, OEM8) 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-FnKey.dsl: -------------------------------------------------------------------------------- 1 | // This is a hotpatch for HASEE (K650D-i5 D2) backlight control 2 | // Fn + F8(down) / F9(up) 3 | // In config ACPI, _Q12 renamed XQ12 4 | // Find: <5f513132 00700a> 5 | // Replace: <58513132 00700a> 6 | DefinitionBlock ("", "SSDT", 2, "hack", "fnkey", 0x00000000) 7 | { 8 | External (_SB_.PCI0.LPCB.EC__, DeviceObj) 9 | External (_SB_.PCI0.LPCB.PS2K, DeviceObj) 10 | External (OEM2, FieldUnitObj) 11 | 12 | Scope (_SB.PCI0.LPCB.EC) 13 | { 14 | Name (OEM8, 0) 15 | Store (OEM2, OEM8) 16 | 17 | Method (_Q12, 0, NotSerialized) 18 | { 19 | If (OEM2 < OEM8 || ( OEM2 == 0 && OEM8 == 0)) 20 | { 21 | Notify (PS2K, 0x0405) // Down 22 | } 23 | ElseIf (OEM2 > OEM8 || ( OEM2 == 7 && OEM8 == 7)) 24 | { 25 | Notify (PS2K, 0x0406) // Up 26 | } 27 | 28 | Store (OEM2, OEM8) 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-ALS0.dsl: -------------------------------------------------------------------------------- 1 | // Fake ambient light sensor device 2 | // 3 | #ifndef NO_DEFINITIONBLOCK 4 | DefinitionBlock("", "SSDT", 2, "hack", "ALS0", 0) 5 | { 6 | #endif 7 | // Search "ACPI0008".... 8 | Scope (_SB) 9 | { 10 | Device(ALS0) 11 | { 12 | Name(_HID, "ACPI0008") 13 | Name(_CID, "smc-als") 14 | Name(_ALI, 300) 15 | Name(_ALR, Package() 16 | { 17 | //Package() { 70, 0 }, 18 | //Package() { 73, 10 }, 19 | //Package() { 85, 80 }, 20 | Package() { 100, 300 }, 21 | //Package() { 150, 1000 }, 22 | }) 23 | 24 | Method (_STA, 0, NotSerialized) 25 | { 26 | If (_OSI ("Darwin")) 27 | { 28 | Return (0x0B) 29 | } 30 | Else 31 | { 32 | Return (Zero) 33 | } 34 | } 35 | } 36 | } 37 | #ifndef NO_DEFINITIONBLOCK 38 | } 39 | #endif 40 | //EOF -------------------------------------------------------------------------------- /other/TouchPad/SSDT-FnKey.dsl: -------------------------------------------------------------------------------- 1 | // This is a hotpatch for HASEE (K650D-i5 D2) backlight control 2 | // Fn + F8(down) / F9(up) 3 | DefinitionBlock ("", "SSDT", 2, "hack", "fnkey", 0x00000000) 4 | { 5 | External (_SB_.PCI0.LPCB.EC__, DeviceObj) 6 | External (_SB_.PCI0.LPCB.PS2K, DeviceObj) 7 | External (OEM2, FieldUnitObj) 8 | 9 | 10 | External (_SB_.PCI0.LPCB.EC__._Q0A, MethodObj) 11 | External (_SB_.PCI0.LPCB.EC__._Q0B, MethodObj) 12 | 13 | Scope (_SB.PCI0.LPCB.EC) 14 | { 15 | Name (OEM8, 0) 16 | Store (OEM2, OEM8) 17 | 18 | Method (_Q12, 0, NotSerialized) 19 | { 20 | If (OEM2 < OEM8 || ( OEM2 == 0 && OEM8 == 0)) 21 | { 22 | //Notify (PS2K, 0x0405) // Down 23 | Notify (PS2K, 0x20) // Reserved 24 | Notify (PS2K, 0x0205) 25 | Notify (PS2K, 0x0285) 26 | } 27 | ElseIf (OEM2 > OEM8 || ( OEM2 == 7 && OEM8 == 7)) 28 | { 29 | //Notify (PS2K, 0x0406) // Up 30 | Notify (PS2K, 0x10) // Reserved 31 | Notify (PS2K, 0x0206) 32 | Notify (PS2K, 0x0286) 33 | } 34 | \_SB_.PCI0.LPCB.EC__._Q0A() 35 | \_SB_.PCI0.LPCB.EC__._Q0B() 36 | 37 | Store (OEM2, OEM8) 38 | } 39 | } 40 | } -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | Chang 7 | Description 8 | A Simple Theme 9 | Theme 10 | 11 | Background 12 | 13 | Path 14 | background.png 15 | Type 16 | Tile 17 | 18 | Badges 19 | 20 | Show 21 | 22 | Swap 23 | 24 | Inline 25 | 26 | 27 | Banner 28 | banner.png 29 | Font 30 | 31 | Path 32 | font.png 33 | Type 34 | Load 35 | CharWidth 36 | 10 37 | 38 | Selection 39 | 40 | Big 41 | selection_big.png 42 | Color 43 | 0x6C6C6CFF 44 | Small 45 | selection_small.png 46 | OnTop 47 | 48 | 49 | 50 | Year 51 | 2014 52 | 53 | 54 | -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EHCx_OFF.dsl: -------------------------------------------------------------------------------- 1 | /* 2 | * USB compatibility table for disable phantoms EHC1, EHC2. 3 | * 4 | * Attention! 5 | * Only for 7,8,9-series chipsets and 10.11 and newer! 6 | * 7 | * To disable EHC1 and EHC2 - set an option "XHCI Mode" to "Enabled" in yours BIOS. 8 | * If the "XHCI Mode" option is not available in yours BIOS or works incorrectly, then use this ACPI table. 9 | * Disabling through BIOS is preferable whenever possible. 10 | * 11 | * WARN: for some motherboards you need to use either "EH1D = One" or "EH2D = One" but not both! 12 | * This is because for some motherboards, device (EHC1 or EHC2) is used by macOS. Check the IOReg. 13 | */ 14 | DefinitionBlock ("", "SSDT", 2, "ACDT", "EHCx_OFF", 0x00001000) 15 | { 16 | Scope (\) 17 | { 18 | OperationRegion (RCRG, SystemMemory, 0xFED1F418, One) 19 | Field (RCRG, DWordAcc, Lock, Preserve) 20 | { 21 | , 13, 22 | EH2D, 1, 23 | , 1, 24 | EH1D, 1 25 | } 26 | 27 | Method (_INI, 0, NotSerialized) // _INI: Initialize 28 | { 29 | // In most cases this patch does benefit all operating systems, 30 | // yet on select pre-Windows 10 it may cause issues. 31 | // Remove If (_OSI ("Darwin")) in case you have none. 32 | If (_OSI ("Darwin")) { 33 | EH1D = One // Disable EHC1 34 | EH2D = One // Disable EHC2 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-XOSI.dsl: -------------------------------------------------------------------------------- 1 | // Override for host defined _OSI to handle "Darwin"... 2 | // In config ACPI, OSID renamed XSID 3 | // Find: 4F534944 4 | // Replace: 58534944 5 | // TgtBridge:no 6 | // 7 | // In config ACPI, _OSI renamed XOSI 8 | // Find: 5F4F5349 9 | // Replace: 584F5349 10 | // TgtBridge:no 11 | // Search "_OSI" in Method (_INI.... 12 | #ifndef NO_DEFINITIONBLOCK 13 | DefinitionBlock("", "SSDT", 2, "hack", "XOSI", 0) 14 | { 15 | #endif 16 | Method(XOSI, 1) 17 | { 18 | Local0 = Package() 19 | { 20 | "Windows", // generic Windows query 21 | "Windows 2001", // Windows XP 22 | "Windows 2001 SP1", // Windows XP SP1 23 | "Windows 2001 SP2", // Windows XP SP2 24 | "Windows 2001.1", // Windows Server 2003 25 | "Windows 2001.1 SP1", // Windows Server 2003 SP1 26 | "Windows 2006", // Windows Vista 27 | "Windows 2006 SP1", // Windows Vista SP1 28 | "Windows 2006.1", // Windows Server 2008 29 | "Windows 2009", // Windows 7/Windows Server 2008 R2 30 | "Windows 2012", // Windows 8/Windows Server 2012 31 | "Windows 2013", // Windows 8.1/Windows Server 2012 R2 32 | "Windows 2015", 33 | "Windows 2016", 34 | "Windows 2017", 35 | "Windows 2017.2", 36 | "Windows 2018", 37 | "Windows 2018.2", 38 | } 39 | Return (Ones != Match(Local0, MEQ, Arg0, MTR, 0, 0)) 40 | } 41 | #ifndef NO_DEFINITIONBLOCK 42 | } 43 | #endif 44 | //EOF 45 | -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-UIAC.dsl: -------------------------------------------------------------------------------- 1 | DefinitionBlock ("", "SSDT", 2, "hack", "_UIAC", 0) 2 | { 3 | Device(UIAC) 4 | { 5 | Name(_HID, "UIA00000") 6 | 7 | Name(RMCF, Package() 8 | { 9 | // XHC (8086_8c31) 10 | "XHC", Package() 11 | { 12 | "port-count", Buffer() { 0x12, 0x00, 0x00, 0x00 }, 13 | "ports", Package() 14 | { 15 | "SS02", Package() 16 | { 17 | "UsbConnector", 3, 18 | "port", Buffer() { 0x11, 0x00, 0x00, 0x00 }, 19 | }, 20 | "HS08", Package() 21 | { 22 | "UsbConnector", 255, 23 | "port", Buffer() { 0x08, 0x00, 0x00, 0x00 }, 24 | }, 25 | "SS03", Package() 26 | { 27 | "UsbConnector", 3, 28 | "port", Buffer() { 0x12, 0x00, 0x00, 0x00 }, 29 | }, 30 | "HS02", Package() 31 | { 32 | "UsbConnector", 0, 33 | "port", Buffer() { 0x02, 0x00, 0x00, 0x00 }, 34 | }, 35 | "HS06", Package() 36 | { 37 | "UsbConnector", 0, 38 | "port", Buffer() { 0x06, 0x00, 0x00, 0x00 }, 39 | }, 40 | "HS03", Package() 41 | { 42 | "UsbConnector", 0, 43 | "port", Buffer() { 0x03, 0x00, 0x00, 0x00 }, 44 | }, 45 | "HS07", Package() 46 | { 47 | "UsbConnector", 255, 48 | "port", Buffer() { 0x07, 0x00, 0x00, 0x00 }, 49 | }, 50 | }, 51 | }, 52 | }) 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FakePCIID 11 | CFBundleIdentifier 12 | org.rehabman.driver.FakePCIID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakePCIID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.15 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.15 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 10M2518 37 | DTSDKName 38 | macosx10.6 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | OSBundleCompatibleVersion 44 | 1.3.15 45 | OSBundleLibraries 46 | 47 | com.apple.iokit.IOPCIFamily 48 | 1.0.0b1 49 | com.apple.kpi.bsd 50 | 8.0.0 51 | com.apple.kpi.iokit 52 | 8.0.0 53 | com.apple.kpi.libkern 54 | 8.0.0 55 | com.apple.kpi.mach 56 | 8.0.0 57 | com.apple.kpi.unsupported 58 | 8.0.0 59 | 60 | OSBundleRequired 61 | Root 62 | Source Code 63 | https://github.com/RehabMan/FakePCIID 64 | 65 | 66 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.4 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.5.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | BrcmFirmwareStore 44 | 45 | CFBundleIdentifier 46 | as.acidanthera.BrcmFirmwareStore 47 | IOClass 48 | BrcmFirmwareStore 49 | IOMatchCategory 50 | BrcmFirmwareStore 51 | IOProviderClass 52 | IOResources 53 | 54 | 55 | OSBundleCompatibleVersion 56 | 2.5.4 57 | OSBundleLibraries 58 | 59 | com.apple.kpi.iokit 60 | 9.0 61 | com.apple.kpi.libkern 62 | 9.0 63 | com.apple.kpi.mach 64 | 9.0 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.3 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.5.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | BrcmFirmwareStore 44 | 45 | CFBundleIdentifier 46 | as.acidanthera.BrcmFirmwareStore 47 | IOClass 48 | BrcmFirmwareStore 49 | IOMatchCategory 50 | BrcmFirmwareStore 51 | IOProviderClass 52 | IOResources 53 | 54 | 55 | OSBundleCompatibleVersion 56 | 2.5.3 57 | OSBundleLibraries 58 | 59 | com.apple.kpi.iokit 60 | 9.0 61 | com.apple.kpi.libkern 62 | 9.0 63 | com.apple.kpi.mach 64 | 9.0 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | 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 | NSHumanReadableCopyright 61 | Copyright © 2019 Kishor Prins. All rights reserved. 62 | OSBundleLibraries 63 | 64 | com.apple.iokit.IOHIDFamily 65 | 2.0 66 | com.apple.kpi.iokit 67 | 14 68 | com.apple.kpi.libkern 69 | 14 70 | com.apple.kpi.mach 71 | 13.0 72 | 73 | OSBundleRequired 74 | Root 75 | 76 | 77 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | 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 | NSHumanReadableCopyright 61 | Copyright © 2019 Kishor Prins. All rights reserved. 62 | OSBundleLibraries 63 | 64 | com.apple.iokit.IOHIDFamily 65 | 2.0 66 | com.apple.kpi.iokit 67 | 14 68 | com.apple.kpi.libkern 69 | 14 70 | com.apple.kpi.mach 71 | 13.0 72 | 73 | OSBundleRequired 74 | Root 75 | 76 | 77 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hasee K650D-i5 D2 2 | 3 | ## 电脑配置 4 | 5 | | 规格 | 详细信息 | 6 | | -------- | ---------------------------------- | 7 | | 电脑型号 | 战神 K650D-i5 D2 | 8 | | 处理器 | Intel Core i5-4210M @ 2.60GHz 双核 | 9 | | 显卡 | Intel HD Graphics 4600 | 10 | | 显示器 | 三星 1920x1080 (15.6 英寸) | 11 | | 声卡 | VIA VT10802 (节点:3/33/65) | 12 | | 网卡 | 英特尔网卡已更换为 BCM95352HMB | 13 | | 蓝牙 | 使用 BCM95352HMB | 14 | 15 | ## 正常工作的 16 | 17 | - 显卡 显示器内建、亮度调节(可用 `Fn + F8` 和 `Fn + F9` 调节 ) 18 | - 音频 19 | - USB 20 | - 有线、Wifi 21 | - 蓝牙 22 | - 睡眠(鼠标、电源键唤醒正常) 23 | - 电池显示 24 | - 变频(看起来没什么问题) 25 | 26 | ## 不能工作的 27 | 28 | - 独显(无解,已屏蔽) 29 | - 触摸板~~(对我没什么用,就没驱动)~~ [驱动方法戳我](other/TouchPad/README.md) 30 | 31 | ## 截图 32 | 33 | ![image-20190518222415711](./img/system.png) 34 | 35 | ![image-20190518222529970](./img/dispaly.png) 36 | 37 | ![image-20190518222702773](./img/usb.png) 38 | 39 | ![image-20190518222745483](./img/dispaly-info.png) 40 | 41 | ![image-20190518222853311](./img/battery.png) 42 | 43 | ![image-20190518223000678](./img/BT.png) 44 | 45 | ![image-20190518223026315](./img/audio.png) 46 | 47 | ![image-20190518223113692](./img/wifi.png) 48 | 49 | ![image-20190518223322149](./img/audio-toast.png) 50 | 51 | ![image-20190518223412135](./img/brightness-toast.png) 52 | 53 | 54 | 55 | ## 其它 56 | 57 | `BCM95352HMB` 处理,蓝牙需要屏蔽 51 针脚才能驱动,Wifi 如遇睡眠唤醒后无法打开,屏蔽 20 针脚。使用其它网卡的可用自行调整。 58 | 59 | > 相关文档 60 | > 61 | > | Pin No. | Definition | Basic Description | Type | 62 | > | ------- | -------------- | ---------------------------------- | ----- | 63 | > | 20 | WLAN_DISABLE_L | WLAN disable control (Active low). | Input | 64 | > | 51 | BT_DISABLE_L | BT disable control (Active low). | Input | 65 | > 66 | > [查看针脚位置图片](https://www.tenforums.com/network-sharing/115932-intel-ac-7260-wi-fi-pci-e-asus-g73sw-laptop-win10-pro-64-no-go-2.html#post1438095) 67 | 68 | 69 | ## 更新 70 | 71 | 更新 修复 USB 稳定性,电池显示,注入 PCI 属性 72 | 73 | 改用 [headkaze/OS-X-BrcmPatchRAM](https://github.com/headkaze/OS-X-BrcmPatchRAM) 驱动蓝牙和提高 WIFI 稳定性 74 | 75 | 76 | 屏蔽独显和亮度键修复使用 hotpatch 补丁, 如使用 `ApplePS2SmartTouchPad.kext` 驱动的话可能导致亮度键无效。 77 | 78 | 更新 `AppleALC.kext` 到 `1.3.8` 后,可使用 layout-id 65。 79 | 80 | ## 鸣谢 81 | 82 | - [黑果小兵](https://github.com/daliansky/) 83 | - [RehabMan](https://github.com/RehabMan) 84 | - [Acidanthera](https://github.com/acidanthera) 85 | - [daggeryu](https://github.com/daggeryu) 86 | 87 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.5 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.5 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.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/AppleALC.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/VirtualSMC.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/SMCProcessor.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/WhateverGreen.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/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ru.joedm.SMCSuperIO 46 | 47 | CFBundleIdentifier 48 | ru.joedm.SMCSuperIO 49 | IOClass 50 | SMCSuperIO 51 | IOMatchCategory 52 | SMCSuperIO 53 | IOPCIClassMatch 54 | 0x06010000&0xffff0000 55 | IOProviderClass 56 | IOPCIDevice 57 | IOResourceMatch 58 | ACPI 59 | 60 | 61 | NSHumanReadableCopyright 62 | Copyright © 2018 joedm. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 12.0.0 75 | com.apple.kpi.dsep 76 | 12.0.0 77 | com.apple.kpi.iokit 78 | 12.0.0 79 | com.apple.kpi.libkern 80 | 12.0.0 81 | com.apple.kpi.mach 82 | 12.0.0 83 | com.apple.kpi.unsupported 84 | 12.0.0 85 | 86 | OSBundleRequired 87 | Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.SMCProcessor 46 | 47 | CFBundleIdentifier 48 | as.vit9696.SMCProcessor 49 | IOClass 50 | SMCProcessor 51 | IOMatchCategory 52 | SMCProcessor 53 | IONameMatch 54 | processor 55 | IOPropertyMatch 56 | 57 | processor-index 58 | 0 59 | 60 | IOProviderClass 61 | IOACPIPlatformDevice 62 | IOResourceMatch 63 | ACPI 64 | 65 | 66 | NSHumanReadableCopyright 67 | Copyright © 2018 vit9696. All rights reserved. 68 | OSBundleCompatibleVersion 69 | 1.0 70 | OSBundleLibraries 71 | 72 | as.vit9696.Lilu 73 | 1.2.0 74 | as.vit9696.VirtualSMC 75 | 1.0.0 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.bsd 79 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.SMCProcessor 46 | 47 | CFBundleIdentifier 48 | as.vit9696.SMCProcessor 49 | IOClass 50 | SMCProcessor 51 | IOMatchCategory 52 | SMCProcessor 53 | IONameMatch 54 | processor 55 | IOPropertyMatch 56 | 57 | processor-index 58 | 0 59 | 60 | IOProviderClass 61 | IOACPIPlatformDevice 62 | IOResourceMatch 63 | ACPI 64 | 65 | 66 | NSHumanReadableCopyright 67 | Copyright © 2018 vit9696. All rights reserved. 68 | OSBundleCompatibleVersion 69 | 1.0 70 | OSBundleLibraries 71 | 72 | as.vit9696.Lilu 73 | 1.2.0 74 | as.vit9696.VirtualSMC 75 | 1.0.0 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.bsd 79 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G1114 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | RealtekRTL8111 11 | CFBundleIdentifier 12 | com.insanelymac.RealtekRTL8111 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RealtekRTL8111 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 16E185 37 | DTSDKName 38 | macosx10.12 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | RTL8111 PCIe Adapter 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.RealtekRTL8111 49 | Driver_Version 50 | 2.2.2 51 | IOClass 52 | RTL8111 53 | IOPCIMatch 54 | 0x816810ec 0x81681186 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOPCIDevice 59 | Model 60 | RTL8111 61 | Vendor 62 | Realtek 63 | disableASPM 64 | 65 | enableCSO6 66 | 67 | enableEEE 68 | 69 | enableTSO4 70 | 71 | enableTSO6 72 | 73 | intrMitigate 74 | 53080 75 | rxPolling 76 | 77 | 78 | 79 | NSHumanReadableCopyright 80 | Copyright © 2013 Laura Müller. All rights reserved. 81 | OSBundleLibraries 82 | 83 | com.apple.iokit.IONetworkingFamily 84 | 1.5.0 85 | com.apple.iokit.IOPCIFamily 86 | 1.7 87 | com.apple.kpi.bsd 88 | 8.10.0 89 | com.apple.kpi.iokit 90 | 8.10.0 91 | com.apple.kpi.libkern 92 | 8.10.0 93 | com.apple.kpi.mach 94 | 8.10.0 95 | 96 | OSBundleRequired 97 | Network-Root 98 | 99 | 100 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G1114 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | RealtekRTL8111 11 | CFBundleIdentifier 12 | com.insanelymac.RealtekRTL8111 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RealtekRTL8111 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 16E185 37 | DTSDKName 38 | macosx10.12 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | RTL8111 PCIe Adapter 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.RealtekRTL8111 49 | Driver_Version 50 | 2.2.2 51 | IOClass 52 | RTL8111 53 | IOPCIMatch 54 | 0x816810ec 0x81681186 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOPCIDevice 59 | Model 60 | RTL8111 61 | Vendor 62 | Realtek 63 | disableASPM 64 | 65 | enableCSO6 66 | 67 | enableEEE 68 | 69 | enableTSO4 70 | 71 | enableTSO6 72 | 73 | intrMitigate 74 | 53080 75 | rxPolling 76 | 77 | 78 | 79 | NSHumanReadableCopyright 80 | Copyright © 2013 Laura Müller. All rights reserved. 81 | OSBundleLibraries 82 | 83 | com.apple.iokit.IONetworkingFamily 84 | 1.5.0 85 | com.apple.iokit.IOPCIFamily 86 | 1.7 87 | com.apple.kpi.bsd 88 | 8.10.0 89 | com.apple.kpi.iokit 90 | 8.10.0 91 | com.apple.kpi.libkern 92 | 8.10.0 93 | com.apple.kpi.mach 94 | 8.10.0 95 | 96 | OSBundleRequired 97 | Network-Root 98 | 99 | 100 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/SSDT-BATC.dsl 8 | 9 | GR5jQT6YEajh2JAV07GEMZ4MEEg= 10 | 11 | 12 | files2 13 | 14 | Resources/SSDT-BATC.dsl 15 | 16 | hash 17 | 18 | GR5jQT6YEajh2JAV07GEMZ4MEEg= 19 | 20 | hash2 21 | 22 | 5mu9V+XG7w3bw6blH2j+h12EcJtz1HcuHBkyafKonks= 23 | 24 | 25 | 26 | rules 27 | 28 | ^Resources/ 29 | 30 | ^Resources/.*\.lproj/ 31 | 32 | optional 33 | 34 | weight 35 | 1000 36 | 37 | ^Resources/.*\.lproj/locversion.plist$ 38 | 39 | omit 40 | 41 | weight 42 | 1100 43 | 44 | ^Resources/Base\.lproj/ 45 | 46 | weight 47 | 1010 48 | 49 | ^version.plist$ 50 | 51 | 52 | rules2 53 | 54 | .*\.dSYM($|/) 55 | 56 | weight 57 | 11 58 | 59 | ^(.*/)?\.DS_Store$ 60 | 61 | omit 62 | 63 | weight 64 | 2000 65 | 66 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 67 | 68 | nested 69 | 70 | weight 71 | 10 72 | 73 | ^.* 74 | 75 | ^Info\.plist$ 76 | 77 | omit 78 | 79 | weight 80 | 20 81 | 82 | ^PkgInfo$ 83 | 84 | omit 85 | 86 | weight 87 | 20 88 | 89 | ^Resources/ 90 | 91 | weight 92 | 20 93 | 94 | ^Resources/.*\.lproj/ 95 | 96 | optional 97 | 98 | weight 99 | 1000 100 | 101 | ^Resources/.*\.lproj/locversion.plist$ 102 | 103 | omit 104 | 105 | weight 106 | 1100 107 | 108 | ^Resources/Base\.lproj/ 109 | 110 | weight 111 | 1010 112 | 113 | ^[^/]+$ 114 | 115 | nested 116 | 117 | weight 118 | 10 119 | 120 | ^embedded\.provisionprofile$ 121 | 122 | weight 123 | 20 124 | 125 | ^version\.plist$ 126 | 127 | weight 128 | 20 129 | 130 | 131 | 132 | 133 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCBatteryManager 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCBatteryManager 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCBatteryManager 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | IOSMBusController 44 | 45 | CFBundleIdentifier 46 | ru.usrsse2.SMCBatteryManager 47 | IOClass 48 | SMCSMBusController 49 | IOMatchCategory 50 | SMCSMBusController 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | SMCBatteryManager 57 | 58 | CFBundleIdentifier 59 | ru.usrsse2.SMCBatteryManager 60 | IOClass 61 | SMCBatteryManager 62 | IOMatchCategory 63 | SMCBatteryManager 64 | IOProviderClass 65 | IOResources 66 | IOResourceMatch 67 | IOKit 68 | 69 | 70 | NSHumanReadableCopyright 71 | Copyright © 2018 usrsse2. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.iokit.IOSMBusFamily 83 | 1.0.0 84 | com.apple.kpi.bsd 85 | 12.0.0 86 | com.apple.kpi.dsep 87 | 12.0.0 88 | com.apple.kpi.iokit 89 | 12.0.0 90 | com.apple.kpi.libkern 91 | 12.0.0 92 | com.apple.kpi.mach 93 | 12.0.0 94 | com.apple.kpi.unsupported 95 | 12.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14F2009 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | ApplePS2Controller 11 | CFBundleIdentifier 12 | org.emlydinesh.driver.ApplePS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ApplePS2Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 4.6.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 4.6.8 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6A2008a 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 12D75 33 | DTSDKName 34 | macosx10.8 35 | DTXcode 36 | 0611 37 | DTXcodeBuild 38 | 6A2008a 39 | IOKitPersonalities 40 | 41 | ACPI PS/2 Nub 42 | 43 | CFBundleIdentifier 44 | org.emlydinesh.driver.ApplePS2Controller 45 | IOClass 46 | AppleACPIPS2Nub 47 | IONameMatch 48 | 49 | PNP0303 50 | PNP030B 51 | 52 | IOProbeScore 53 | 1000 54 | IOProviderClass 55 | IOACPIPlatformDevice 56 | MouseNameMatch 57 | 58 | PNP0F03 59 | PNP0F0B 60 | PNP0F12 61 | PNP0F13 62 | PNP0F0E 63 | 64 | 65 | ApplePS2Controller 66 | 67 | CFBundleIdentifier 68 | org.emlydinesh.driver.ApplePS2Controller 69 | IOClass 70 | ApplePS2Controller 71 | IONameMatch 72 | ps2controller 73 | IOProviderClass 74 | IOPlatformDevice 75 | 76 | 77 | NSHumanReadableCopyright 78 | Copyright © EMlyDinEsH (mg-dinesh@live.com) 2012-2016. All rights reserved. 79 | OSBundleCompatibleVersion 80 | 4.6.8 81 | OSBundleLibraries 82 | 83 | com.apple.iokit.IOACPIFamily 84 | 1.0d1 85 | com.apple.kpi.bsd 86 | 8.0.0 87 | com.apple.kpi.iokit 88 | 8.0.0 89 | com.apple.kpi.libkern 90 | 8.0.0 91 | com.apple.kpi.mach 92 | 8.0.0 93 | com.apple.kpi.unsupported 94 | 8.0.0 95 | 96 | OSBundleRequired 97 | Console 98 | 99 | 100 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.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 | ^Resources/Base\.lproj/ 52 | 53 | weight 54 | 1010 55 | 56 | ^version.plist$ 57 | 58 | 59 | rules2 60 | 61 | .*\.dSYM($|/) 62 | 63 | weight 64 | 11 65 | 66 | ^(.*/)?\.DS_Store$ 67 | 68 | omit 69 | 70 | weight 71 | 2000 72 | 73 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 74 | 75 | nested 76 | 77 | weight 78 | 10 79 | 80 | ^.* 81 | 82 | ^Info\.plist$ 83 | 84 | omit 85 | 86 | weight 87 | 20 88 | 89 | ^PkgInfo$ 90 | 91 | omit 92 | 93 | weight 94 | 20 95 | 96 | ^Resources/ 97 | 98 | weight 99 | 20 100 | 101 | ^Resources/.*\.lproj/ 102 | 103 | optional 104 | 105 | weight 106 | 1000 107 | 108 | ^Resources/.*\.lproj/locversion.plist$ 109 | 110 | omit 111 | 112 | weight 113 | 1100 114 | 115 | ^Resources/Base\.lproj/ 116 | 117 | weight 118 | 1010 119 | 120 | ^[^/]+$ 121 | 122 | nested 123 | 124 | weight 125 | 10 126 | 127 | ^embedded\.provisionprofile$ 128 | 129 | weight 130 | 20 131 | 132 | ^version\.plist$ 133 | 134 | weight 135 | 20 136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-DGPU.dsl: -------------------------------------------------------------------------------- 1 | // This is a hotpatch for HASEE (K650D-i5 D2) to disabling discrete graphics in dual-GPU laptops. 2 | // In config ACPI, _REG renamed XREG 3 | // Find: <115f5245 4702> 4 | // Replace: <11585245 4702> 5 | // In config ACPI, _WAK renamed XWAK 6 | // Find: <5f57414b 09> 7 | // Replace: <5857414b 09> 8 | // In config ACPI, SGOF renamed XGOF 9 | // Find: <53474f46 08> 10 | // Replace: <58474f46 08> 11 | // In config ACPI, _INI renamed XINI 12 | // Find: <5f494e49 0070005c 2f> 13 | // Replace: <58494e49 0070005c 2f> 14 | DefinitionBlock("", "SSDT", 2, "hack", "D-GPU", 0) 15 | { 16 | External (_SB_.PCI0.PEG0.PEGP, DeviceObj) 17 | External (_SB_.PCI0.PEG0.PEGP.XINI, MethodObj) 18 | External (_SB_.PCI0.PEG0.PEGP.CCHK, MethodObj) 19 | External (_SB_.PCI0.PEG0.PEGP.SPP0, MethodObj) 20 | External (_SB_.PCI0.PEG0.PEGP._OFF, MethodObj) 21 | External (_SB_.PCI0.LPCB.EC__, DeviceObj) 22 | External (_SB_.PCI0.LPCB.EC__.XREG, MethodObj) 23 | External (_SB_.PCI0.LPCB.EC__.ECOK, IntObj) 24 | External (_SB_.PCI0.LPCB.EC__.GPUT, FieldUnitObj) 25 | External (XWAK, MethodObj) 26 | 27 | External (P80H, FieldUnitObj) 28 | External (EECP, FieldUnitObj) 29 | 30 | 31 | Scope(_SB.PCI0.PEG0.PEGP) 32 | { 33 | External (LCTL, FieldUnitObj) 34 | External (SVID, FieldUnitObj) 35 | External (SDID, FieldUnitObj) 36 | External (LNKD, FieldUnitObj) 37 | External (LNKS, FieldUnitObj) 38 | External (EMLW, FieldUnitObj) 39 | External (GP50, FieldUnitObj) 40 | External (GP54, FieldUnitObj) 41 | External (GP74, FieldUnitObj) 42 | 43 | External (ONOF, IntObj) 44 | External (ELCT, IntObj) 45 | External (HVID, IntObj) 46 | External (HDID, IntObj) 47 | External (DMLW, IntObj) 48 | 49 | Method (_INI) 50 | { 51 | XINI() // call original _INI, now renamed XINI 52 | _OFF() 53 | } 54 | 55 | Method (SGOF, 0) 56 | { 57 | Store (0x8E, P80H) 58 | If (LEqual (CCHK (Zero), Zero)) 59 | { 60 | Return (Zero) 61 | } 62 | 63 | Store (Zero, ONOF) 64 | Store (LCTL, ELCT) 65 | Store (SVID, HVID) 66 | Store (SDID, HDID) 67 | Store (EMLW, DMLW) 68 | SPP0 () 69 | Store (One, LNKD) 70 | While (LNotEqual (LNKS, Zero)) 71 | { 72 | Sleep (One) 73 | } 74 | 75 | Sleep (0x64) 76 | Store (Zero, GP50) 77 | Stall (0x64) 78 | Store (One, GP54) 79 | Store (One, GP74) 80 | Sleep (0x012C) 81 | Store (0x8F, P80H) 82 | Return (Zero) 83 | } 84 | } 85 | 86 | Scope (_SB.PCI0.LPCB.EC) 87 | { 88 | OperationRegion (RME3, EmbeddedControl, 0x00, 0xFF) 89 | Method (_REG, 2) 90 | { 91 | XREG(Arg0, Arg1) // call original _REG, now renamed XREG 92 | If (3 == Arg0 && 1 == Arg1) 93 | { 94 | If (ECOK) 95 | { 96 | Store (Zero, GPUT) 97 | } 98 | } 99 | } 100 | } 101 | 102 | Scope (\) 103 | { 104 | Method (_WAK, 1) 105 | { 106 | If (CondRefOf (\_SB.PCI0.PEG0.PEGP._OFF)) 107 | { 108 | \_SB.PCI0.PEG0.PEGP._OFF() 109 | } 110 | Return (XWAK(Arg0)) // call original _WAK, now renamed XWAK 111 | } 112 | } 113 | } -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.dsl: -------------------------------------------------------------------------------- 1 | //Fix HPET,RTC,TIMR 2 | DefinitionBlock ("", "SSDT", 2, "OCLT", "HRTfix", 0) 3 | { 4 | External (_SB.PCI0.LPCB, DeviceObj) 5 | External (_SB.PCI0.LPCB.RTC, DeviceObj) 6 | External (_SB.PCI0.LPCB.TIMR, DeviceObj) 7 | External (HPAE, IntObj) 8 | //External (HPTE, IntObj) 9 | 10 | //disable HPET 11 | Scope (\) 12 | { 13 | If (_OSI ("Darwin")) 14 | { 15 | HPAE =0 16 | //HPTE =0 17 | } 18 | } 19 | 20 | //disable RTC 21 | Scope (_SB.PCI0.LPCB.RTC) 22 | { 23 | Method (_STA, 0, NotSerialized) 24 | { 25 | If (_OSI ("Darwin")) 26 | { 27 | Return (0) 28 | } 29 | Else 30 | { 31 | Return (0x0F) 32 | } 33 | } 34 | } 35 | 36 | //disable TIMR 37 | Scope (_SB.PCI0.LPCB.TIMR) 38 | { 39 | Method (_STA, 0, NotSerialized) 40 | { 41 | If (_OSI ("Darwin")) 42 | { 43 | Return (0) 44 | } 45 | Else 46 | { 47 | Return (0x0F) 48 | } 49 | } 50 | } 51 | 52 | Scope (_SB.PCI0.LPCB) 53 | { 54 | //Fake HPE0 55 | Device (HPE0) 56 | { 57 | Name (_HID, EisaId ("PNP0103")) 58 | Name (_UID, Zero) 59 | Name (BUF0, ResourceTemplate () 60 | { 61 | IRQNoFlags() { 0, 8 } 62 | Memory32Fixed (ReadWrite, 63 | 0xFED00000, 64 | 0x00000400, 65 | ) 66 | }) 67 | Method (_STA, 0, NotSerialized) 68 | { 69 | If (_OSI ("Darwin")) 70 | { 71 | Return (0x0F) 72 | } 73 | Else 74 | { 75 | Return (0) 76 | } 77 | } 78 | Method (_CRS, 0, Serialized) 79 | { 80 | Return (BUF0) 81 | } 82 | } 83 | 84 | //Fake RTC0 85 | Device (RTC0) 86 | { 87 | Name (_HID, EisaId ("PNP0B00")) 88 | Name (_CRS, ResourceTemplate () 89 | { 90 | IO (Decode16, 91 | 0x0070, 92 | 0x0070, 93 | 0x01, 94 | 0x02, 95 | //0x08 96 | ) 97 | }) 98 | Method (_STA, 0, NotSerialized) 99 | { 100 | If (_OSI ("Darwin")) 101 | { 102 | Return (0x0F) 103 | } 104 | Else 105 | { 106 | Return (0) 107 | } 108 | } 109 | } 110 | 111 | //Fake TIM0 112 | Device (TIM0) 113 | { 114 | Name (_HID, EisaId ("PNP0100")) 115 | Name (_CRS, ResourceTemplate () 116 | { 117 | IO (Decode16, 118 | 0x0040, 119 | 0x0040, 120 | 0x01, 121 | 0x04, 122 | ) 123 | IO (Decode16, 124 | 0x0050, 125 | 0x0050, 126 | 0x10, 127 | 0x04, 128 | ) 129 | }) 130 | Method (_STA, 0, NotSerialized) 131 | { 132 | If (_OSI ("Darwin")) 133 | { 134 | Return (0x0F) 135 | } 136 | Else 137 | { 138 | Return (0) 139 | } 140 | } 141 | } 142 | } 143 | } 144 | 145 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | ACPIBatteryManager 11 | CFBundleGetInfoString 12 | 1.90.1, Copyright 2011 Apple Inc., RehabMan 2012 13 | CFBundleIdentifier 14 | org.rehabman.driver.AppleSmartBatteryManager 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ACPIBatteryManager 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.90.1 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.90.1 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 9F2000 35 | DTPlatformVersion 36 | GM 37 | DTSDKBuild 38 | 12D75 39 | DTSDKName 40 | macosx10.8 41 | DTXcode 42 | 0941 43 | DTXcodeBuild 44 | 9F2000 45 | IOKitPersonalities 46 | 47 | ACPI AC Adapter 48 | 49 | CFBundleIdentifier 50 | org.rehabman.driver.AppleSmartBatteryManager 51 | IOClass 52 | ACPIACAdapter 53 | IONameMatch 54 | ACPI0003 55 | IOProbeScore 56 | 1000 57 | IOProviderClass 58 | IOACPIPlatformDevice 59 | 60 | ACPI Battery Manager 61 | 62 | CFBundleIdentifier 63 | org.rehabman.driver.AppleSmartBatteryManager 64 | Configuration 65 | 66 | Correct16bitSignedCurrentRate 67 | 68 | CorrectCorruptCapacities 69 | 70 | CurrentDischargeRateMax 71 | 20000 72 | EstimateCycleCountDivisor 73 | 6 74 | FirstPollDelay 75 | 4000 76 | StartupDelay 77 | 0 78 | UseDesignVoltageForCurrentCapacity 79 | 80 | UseDesignVoltageForDesignCapacity 81 | 82 | UseDesignVoltageForMaxCapacity 83 | 84 | UseExtendedBatteryInformationMethod 85 | 86 | UseExtraBatteryInformationMethod 87 | 88 | 89 | IOClass 90 | AppleSmartBatteryManager 91 | IONameMatch 92 | PNP0C0A 93 | IOProbeScore 94 | 1000 95 | IOProviderClass 96 | IOACPIPlatformDevice 97 | 98 | 99 | NSHumanReadableCopyright 100 | Copyright © 2011 Apple Inc. All rights reserved, RehabMan 2012 101 | OSBundleLibraries 102 | 103 | com.apple.iokit.IOACPIFamily 104 | 1.0d1 105 | com.apple.kpi.iokit 106 | 9.0 107 | com.apple.kpi.libkern 108 | 9.0 109 | 110 | OSBundleRequired 111 | Root 112 | Source Code 113 | https://github.com/RehabMan/OS-X-ACPI-Battery-Driver 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | 1.0 Copyright © 2018 Headsoft. All rights reserved. 9 | CFBundleIdentifier 10 | com.Headsoft.USBPorts 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBPorts 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | MacBookPro11,1-EH02 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | EH02 33 | IOProbeScore 34 | 5000 35 | IOProviderClass 36 | AppleUSBEHCIPCI 37 | IOProviderMergeProperties 38 | 39 | port-count 40 | 41 | AgAAAA== 42 | 43 | ports 44 | 45 | PR01 46 | 47 | UsbConnector 48 | 255 49 | port 50 | 51 | AQAAAA== 52 | 53 | 54 | PR12 55 | 56 | UsbConnector 57 | 255 58 | port 59 | 60 | AgAAAA== 61 | 62 | 63 | 64 | 65 | model 66 | MacBookPro11,1 67 | 68 | MacBookPro11,1-XHC 69 | 70 | CFBundleIdentifier 71 | com.apple.driver.AppleUSBMergeNub 72 | IOClass 73 | AppleUSBMergeNub 74 | IONameMatch 75 | XHC 76 | IOProbeScore 77 | 5000 78 | IOProviderClass 79 | AppleUSBXHCIPCI 80 | IOProviderMergeProperties 81 | 82 | port-count 83 | 84 | EgAAAA== 85 | 86 | ports 87 | 88 | HS02 89 | 90 | UsbConnector 91 | 0 92 | port 93 | 94 | AgAAAA== 95 | 96 | 97 | HS03 98 | 99 | UsbConnector 100 | 0 101 | port 102 | 103 | AwAAAA== 104 | 105 | 106 | HS06 107 | 108 | UsbConnector 109 | 0 110 | port 111 | 112 | BgAAAA== 113 | 114 | 115 | HS07 116 | 117 | UsbConnector 118 | 255 119 | port 120 | 121 | BwAAAA== 122 | 123 | 124 | HS08 125 | 126 | UsbConnector 127 | 255 128 | port 129 | 130 | CAAAAA== 131 | 132 | 133 | SS02 134 | 135 | UsbConnector 136 | 3 137 | port 138 | 139 | EQAAAA== 140 | 141 | 142 | SS03 143 | 144 | UsbConnector 145 | 3 146 | port 147 | 148 | EgAAAA== 149 | 150 | 151 | 152 | 153 | model 154 | MacBookPro11,1 155 | 156 | 157 | OSBundleRequired 158 | Root 159 | 160 | 161 | -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/FakePCIID_XHCIMux.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FakePCIID_XHCIMux 11 | CFBundleIdentifier 12 | org.rehabman.driver.FakePCIID.XHCIMux 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakePCIID_XHCIMux 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.15 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.15 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 10M2518 37 | DTSDKName 38 | macosx10.6 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | IOKitPersonalities 44 | 45 | XHCIMux 7-series 46 | 47 | CFBundleIdentifier 48 | org.rehabman.driver.FakePCIID.XHCIMux 49 | FakeProperties 50 | 51 | RM,pr2-block 52 | 53 | AA== 54 | 55 | RM,pr2-chipset-mask 56 | 57 | DwAAAA== 58 | 59 | RM,pr2-force 60 | 61 | AAAAAA== 62 | 63 | RM,pr2-honor-pr2m 64 | 65 | AQ== 66 | 67 | RM,pr2-init 68 | 69 | AQ== 70 | 71 | RM,pr2m-block 72 | 73 | AQ== 74 | 75 | 76 | IOClass 77 | FakePCIID_XHCIMux 78 | IOMatchCategory 79 | FakePCIID_XHCIMux 80 | IOPCIPrimaryMatch 81 | 0x1e318086 82 | IOProbeScore 83 | 9001 84 | IOProviderClass 85 | IOPCIDevice 86 | 87 | XHCIMux 8 and 9-series 88 | 89 | CFBundleIdentifier 90 | org.rehabman.driver.FakePCIID.XHCIMux 91 | FakeProperties 92 | 93 | RM,pr2-block 94 | 95 | AA== 96 | 97 | RM,pr2-chipset-mask 98 | 99 | /z8AAA== 100 | 101 | RM,pr2-force 102 | 103 | AAAAAA== 104 | 105 | RM,pr2-honor-pr2m 106 | 107 | AQ== 108 | 109 | RM,pr2-init 110 | 111 | AQ== 112 | 113 | RM,pr2m-block 114 | 115 | AQ== 116 | 117 | 118 | IOClass 119 | FakePCIID_XHCIMux 120 | IOMatchCategory 121 | FakePCIID_XHCIMux 122 | IOPCIPrimaryMatch 123 | 0x9c318086 0x9cb18086 0x8c318086 0x8cb18086 0x8d318086 124 | IOProbeScore 125 | 9001 126 | IOProviderClass 127 | IOPCIDevice 128 | 129 | 130 | OSBundleLibraries 131 | 132 | com.apple.iokit.IOPCIFamily 133 | 1.0.0b1 134 | com.apple.kpi.bsd 135 | 8.0.0 136 | com.apple.kpi.iokit 137 | 8.0.0 138 | com.apple.kpi.libkern 139 | 8.0.0 140 | com.apple.kpi.mach 141 | 8.0.0 142 | com.apple.kpi.unsupported 143 | 8.0.0 144 | org.rehabman.driver.FakePCIID 145 | 1.3.15 146 | 147 | OSBundleRequired 148 | Root 149 | Source Code 150 | https://github.com/RehabMan/FakePCIID 151 | 152 | 153 | --------------------------------------------------------------------------------