├── .gitignore ├── EFI ├── BOOT │ └── BOOTX64.efi ├── CLOVER │ ├── ACPI │ │ ├── origin │ │ │ ├── APIC-p.aml │ │ │ ├── APIC.aml │ │ │ ├── ASF!.aml │ │ │ ├── BGRT.aml │ │ │ ├── DSDT.aml │ │ │ ├── DumpLog.txt │ │ │ ├── FACP.aml │ │ │ ├── FACS.aml │ │ │ ├── FPDT.aml │ │ │ ├── HPET.aml │ │ │ ├── MCFG.aml │ │ │ ├── RSDP.aml │ │ │ ├── RSDT-FACP.aml │ │ │ ├── RSDT-FACS.aml │ │ │ ├── RSDT.aml │ │ │ ├── SLIC.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 │ │ │ └── XSDT.aml │ │ └── patched │ │ │ ├── SSDT-ALS0.aml │ │ │ ├── SSDT-ALS0.dsl │ │ │ ├── SSDT-CPU.aml │ │ │ ├── SSDT-DGPU.dsl │ │ │ ├── SSDT-EC.aml │ │ │ ├── SSDT-FnKey.aml │ │ │ ├── SSDT-FnKey.dsl │ │ │ ├── SSDT-MCHC.aml │ │ │ ├── SSDT-MCHC.dsl │ │ │ ├── SSDT-PNLF.aml │ │ │ ├── SSDT-PNLF.dsl │ │ │ ├── SSDT-UIAC.aml │ │ │ ├── SSDT-XOSI.aml │ │ │ └── SSDT-XOSI.dsl │ ├── CLOVERX64.efi │ ├── config.plist │ ├── drivers │ │ ├── BIOS │ │ │ ├── ApfsDriverLoader.efi │ │ │ ├── FSInject.efi │ │ │ └── HFSPlus.efi │ │ └── UEFI │ │ │ ├── ApfsDriverLoader.efi │ │ │ ├── AptioMemoryFix.efi │ │ │ ├── FSInject.efi │ │ │ ├── HFSPlus.efi │ │ │ ├── VirtualSmc.efi │ │ │ └── apfs.efi │ ├── kexts │ │ └── Other │ │ │ ├── ACPIBatteryManager.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── ACPIBatteryManager │ │ │ ├── AirportBrcmFixup.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── AirportBrcmFixup │ │ │ ├── AppleALC.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── AppleALC │ │ │ ├── BrcmBluetoothInjector.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ │ ├── BrcmFirmwareData.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── BrcmFirmwareData │ │ │ ├── BrcmPatchRAM2.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── BrcmPatchRAM2 │ │ │ ├── BrcmPatchRAM3.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── BrcmPatchRAM3 │ │ │ ├── FakePCIID.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── FakePCIID │ │ │ ├── FakePCIID_XHCIMux.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── FakePCIID_XHCIMux │ │ │ ├── Lilu.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── Lilu │ │ │ ├── RealtekRTL8111.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── RealtekRTL8111 │ │ │ │ └── Resources │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── USBPorts.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ │ ├── VirtualSMC.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VirtualSMC │ │ │ │ └── PlugIns │ │ │ │ └── SMCProcessor.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── SMCProcessor │ │ │ ├── VoodooPS2Controller.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooPS2Controller │ │ │ │ └── PlugIns │ │ │ │ ├── VoodooInput.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── VoodooInput │ │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── VoodooPS2Keyboard │ │ │ │ ├── VoodooPS2Mouse.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── VoodooPS2Mouse │ │ │ │ └── VoodooPS2Trackpad.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Trackpad │ │ │ └── WhateverGreen.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── WhateverGreen │ ├── themes │ │ └── SimpleThemeDark │ │ │ ├── .hash │ │ │ ├── background.png │ │ │ ├── banner.png │ │ │ ├── font.png │ │ │ ├── icons │ │ │ ├── cd_lin.icns │ │ │ ├── cd_mac.icns │ │ │ ├── cd_win.icns │ │ │ ├── func_about.png │ │ │ ├── func_clover.png │ │ │ ├── func_help.png │ │ │ ├── func_options.png │ │ │ ├── func_reset.png │ │ │ ├── func_shutdown.png │ │ │ ├── os_arch.icns │ │ │ ├── os_clover.icns │ │ │ ├── os_freebsd.icns │ │ │ ├── os_legacy.icns │ │ │ ├── os_linux.icns │ │ │ ├── os_mac.icns │ │ │ ├── os_recovery.icns │ │ │ ├── os_sierra.icns │ │ │ ├── os_ubuntu.icns │ │ │ ├── os_unknown.icns │ │ │ ├── os_win.icns │ │ │ ├── os_win7.icns │ │ │ ├── pointer.icns │ │ │ ├── tool_shell.icns │ │ │ ├── tool_shell.png │ │ │ ├── vol_clover.icns │ │ │ ├── vol_external.icns │ │ │ ├── vol_firewire.icns │ │ │ ├── vol_internal.icns │ │ │ ├── vol_internal_ext3.icns │ │ │ ├── vol_internal_hfs.icns │ │ │ ├── vol_internal_ntfs.icns │ │ │ ├── vol_optical.icns │ │ │ └── vol_recovery.icns │ │ │ ├── screenshot0.png │ │ │ ├── selection_big.png │ │ │ ├── selection_small.png │ │ │ └── theme.plist │ └── tools │ │ ├── Shell32.efi │ │ ├── Shell64.efi │ │ ├── Shell64U.efi │ │ └── bdmesg.efi └── OC │ ├── ACPI │ ├── SSDT-EHCx_OFF.aml │ ├── SSDT-EHCx_OFF.dsl │ ├── SSDT-FnKey.aml │ ├── SSDT-FnKey.dsl │ ├── SSDT-HPET_RTC_TIMR-fix.aml │ ├── SSDT-HPET_RTC_TIMR-fix.dsl │ ├── SSDT-PLUG.aml │ ├── SSDT-PLUG.dsl │ ├── SSDT-PNLF.aml │ ├── SSDT-PNLF.dsl │ ├── SSDT-UIAC.aml │ └── SSDT-UIAC.dsl │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HfsPlus.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportBrcmFixup │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleALC │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── BrcmBluetoothInjector.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── BrcmFirmwareData.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── BrcmFirmwareData │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── BrcmPatchRAM2.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM2 │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── RealtekRTL8111.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── RealtekRTL8111 │ │ │ ├── Resources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ ├── Resources │ │ │ └── SSDT-BATC.dsl │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCProcessor │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── USBPorts.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns │ │ │ ├── VoodooInput.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooInput │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Trackpad │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── WhateverGreen │ │ └── _CodeSignature │ │ └── CodeResources │ ├── OpenCore.efi │ └── config.plist ├── README.md ├── img ├── BT.png ├── audio-toast.png ├── audio.png ├── battery.png ├── brightness-toast.png ├── dispaly-info.png ├── dispaly.png ├── system.png ├── touchPad.png ├── usb.png └── wifi.png └── other └── TouchPad ├── ApplePS2SmartTouchPad.kext └── Contents │ ├── Info.plist │ ├── MacOS │ └── ApplePS2SmartTouchPad │ ├── PlugIns │ ├── ApplePS2Controller.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ApplePS2Controller │ └── ApplePS2Keyboard.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── ApplePS2Keyboard │ └── Resources │ ├── Features Documentation.rtfd │ ├── 11493706554_130fa58d5f_n.jpg │ ├── 8524384148_7da070dae6_c.jpg │ ├── 9718452526_b6414cd8e7_n.jpg │ └── TXT.rtf │ └── 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 ├── README.md └── SSDT-FnKey.dsl /.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | .DS_Store 3 | .fseventsd 4 | .empty -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/APIC-p.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/APIC-p.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/DumpLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/DumpLog.txt -------------------------------------------------------------------------------- /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-FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/RSDT-FACP.aml -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/origin/RSDT-FACS.aml: -------------------------------------------------------------------------------- 1 | sstv```*le  -------------------------------------------------------------------------------- /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/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/ACPI/origin/XSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/origin/XSDT.aml -------------------------------------------------------------------------------- /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-ALS0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-ALS0.dsl -------------------------------------------------------------------------------- /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-DGPU.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-DGPU.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-EC.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-FnKey.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-FnKey.dsl -------------------------------------------------------------------------------- /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-MCHC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-MCHC.dsl -------------------------------------------------------------------------------- /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-PNLF.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-PNLF.dsl -------------------------------------------------------------------------------- /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/ACPI/patched/SSDT-XOSI.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/ACPI/patched/SSDT-XOSI.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/config.plist -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /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/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/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/drivers/UEFI/VirtualSmc.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/VirtualSmc.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers/UEFI/apfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/drivers/UEFI/apfs.efi -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/ACPIBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/kexts/Other/BrcmBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmBluetoothInjector.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/BrcmPatchRAM2.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/BrcmPatchRAM3.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/FakePCIID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/FakePCIID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/FakePCIID_XHCIMux.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/FakePCIID_XHCIMux.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/kexts/Other/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/RealtekRTL8111.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/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 -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/USBPorts.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/PlugIns/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/themes/SimpleThemeDark/.hash: -------------------------------------------------------------------------------- 1 | 340eb36af3f8e4066909df417c498a4bb6fcdf75 2 | -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/background.png -------------------------------------------------------------------------------- /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/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/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_about.png -------------------------------------------------------------------------------- /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_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_help.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/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/func_reset.png -------------------------------------------------------------------------------- /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/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_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_freebsd.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_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_mac.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_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_unknown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/os_unknown.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/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.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/tool_shell.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/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_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_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_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_internal_hfs.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/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/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/icons/vol_recovery.icns -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/screenshot0.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/selection_big.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/selection_small.png -------------------------------------------------------------------------------- /EFI/CLOVER/themes/SimpleThemeDark/theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/CLOVER/themes/SimpleThemeDark/theme.plist -------------------------------------------------------------------------------- /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/OC/ACPI/SSDT-EHCx_OFF.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-EHCx_OFF.dsl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-FnKey.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-FnKey.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-FnKey.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-FnKey.dsl -------------------------------------------------------------------------------- /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/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-HPET_RTC_TIMR-fix.dsl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG.dsl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PNLF.dsl -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-UIAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-UIAC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/ACPI/SSDT-UIAC.dsl -------------------------------------------------------------------------------- /EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/BrcmBluetoothInjector.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/BrcmFirmwareData.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM2.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/BrcmPatchRAM2.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/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 -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/SMCProcessor.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/USBInjectAll.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/USBInjectAll.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/USBInjectAll.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/EFI/OC/config.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/README.md -------------------------------------------------------------------------------- /img/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/BT.png -------------------------------------------------------------------------------- /img/audio-toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/audio-toast.png -------------------------------------------------------------------------------- /img/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/audio.png -------------------------------------------------------------------------------- /img/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/battery.png -------------------------------------------------------------------------------- /img/brightness-toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/brightness-toast.png -------------------------------------------------------------------------------- /img/dispaly-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/dispaly-info.png -------------------------------------------------------------------------------- /img/dispaly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/dispaly.png -------------------------------------------------------------------------------- /img/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/system.png -------------------------------------------------------------------------------- /img/touchPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/touchPad.png -------------------------------------------------------------------------------- /img/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/usb.png -------------------------------------------------------------------------------- /img/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/img/wifi.png -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Info.plist -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/MacOS/ApplePS2SmartTouchPad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/MacOS/ApplePS2SmartTouchPad -------------------------------------------------------------------------------- /other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Controller.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/PlugIns/ApplePS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/PlugIns/ApplePS2Keyboard.kext/Contents/Info.plist -------------------------------------------------------------------------------- /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/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 -------------------------------------------------------------------------------- /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/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/ApplePS2SmartTouchPad.kext/Contents/Resources/Features Documentation.rtfd/TXT.rtf -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /other/TouchPad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/README.md -------------------------------------------------------------------------------- /other/TouchPad/SSDT-FnKey.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivothgle/Hackintosh/HEAD/other/TouchPad/SSDT-FnKey.dsl --------------------------------------------------------------------------------