├── .gitignore ├── EFI ├── EFI │ ├── APPLE │ │ └── FIRMWARE │ │ │ └── MBP91.scap │ ├── BOOT │ │ ├── .empty │ │ └── BOOTX64.efi │ ├── CLOVER │ │ ├── ACPI │ │ │ ├── WINDOWS │ │ │ │ └── .empty │ │ │ ├── origin │ │ │ │ ├── .empty │ │ │ │ ├── APIC.aml │ │ │ │ ├── ASF!.aml │ │ │ │ ├── BOOT.aml │ │ │ │ ├── DSDT.aml │ │ │ │ ├── DumpLog.txt │ │ │ │ ├── ECDT.aml │ │ │ │ ├── FACP.aml │ │ │ │ ├── FACS.aml │ │ │ │ ├── HPET.aml │ │ │ │ ├── MCFG.aml │ │ │ │ ├── RSDP.aml │ │ │ │ ├── RSDT-FACP.aml │ │ │ │ ├── RSDT-SSDT-5-TP-6Q.aml │ │ │ │ ├── RSDT.aml │ │ │ │ ├── SLAC.aml │ │ │ │ ├── SLIC.aml │ │ │ │ ├── SSDT-0-TP-6Q.aml │ │ │ │ ├── SSDT-1-TP-6Q.aml │ │ │ │ ├── SSDT-2-CpuPm.aml │ │ │ │ ├── SSDT-3-Cpu0Tst.aml │ │ │ │ ├── SSDT-4-ApTst.aml │ │ │ │ ├── SSDT-x2_0-Cpu0Ist.aml │ │ │ │ ├── SSDT-x2_1-ApIst.aml │ │ │ │ ├── SSDT-x2_2-Cpu0Cst.aml │ │ │ │ ├── SSDT-x2_3-ApCst.aml │ │ │ │ ├── TCPA.aml │ │ │ │ └── XSDT.aml │ │ │ └── patched │ │ │ │ ├── .BACKUPS │ │ │ │ ├── .DSDT copy.aml │ │ │ │ └── SSDT laptop generated.aml │ │ │ │ ├── .empty │ │ │ │ ├── DSDT.aml │ │ │ │ ├── SSDT-PNLF.aml │ │ │ │ └── SSDT.aml │ │ ├── CLOVERX64.efi │ │ ├── OEM │ │ │ └── SystemProductName │ │ │ │ ├── UEFI │ │ │ │ └── config-sample.plist │ │ │ │ └── config-sample.plist │ │ ├── ROM │ │ │ └── .empty │ │ ├── config.plist │ │ ├── doc │ │ │ ├── HowToFixDsdt.txt │ │ │ ├── HowToInstallOSX.txt │ │ │ ├── Installation.txt │ │ │ ├── UEFI boot with Clover.rtf │ │ │ ├── bcfg.txt │ │ │ └── boot1f32-install.sh │ │ ├── drivers │ │ │ ├── BIOS │ │ │ │ ├── ApfsDriverLoader.efi │ │ │ │ ├── AudioDxe.efi │ │ │ │ ├── FSInject.efi │ │ │ │ ├── HFSPlus.efi │ │ │ │ ├── SMCHelper.efi │ │ │ │ └── XhciDxe.efi │ │ │ └── UEFI │ │ │ │ ├── ApfsDriverLoader.efi │ │ │ │ ├── AudioDxe.efi │ │ │ │ ├── DataHubDxe.efi │ │ │ │ ├── EmuVariableUefi.efi │ │ │ │ ├── FSInject.efi │ │ │ │ ├── FirmwareVolume.efi │ │ │ │ ├── OsxAptioFix3Drv.efi │ │ │ │ ├── PartitionDxe.efi │ │ │ │ ├── SMCHelper.efi │ │ │ │ └── VBoxHfs.efi │ │ ├── kexts │ │ │ ├── 10.11 │ │ │ │ └── .empty │ │ │ ├── 10.12 │ │ │ │ └── .empty │ │ │ ├── 10.13 │ │ │ │ └── .empty │ │ │ ├── 10.14 │ │ │ │ └── .empty │ │ │ ├── 10.15 │ │ │ │ └── .empty │ │ │ ├── Off │ │ │ │ └── .empty │ │ │ └── Other │ │ │ │ ├── .empty │ │ │ │ ├── AirportItlwm.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── AirportItlwm │ │ │ │ ├── AppleALC.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── AppleALC │ │ │ │ ├── AppleIntelCPUPowerManagement.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── AppleIntelCPUPowerManagement │ │ │ │ │ ├── Resources │ │ │ │ │ └── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeSignature │ │ │ │ │ └── version.plist │ │ │ │ ├── AppleIntelE1000e.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── AppleIntelE1000e │ │ │ │ │ └── Resources │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Lilu.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── Lilu │ │ │ │ ├── SMCBatteryManager.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── SMCBatteryManager │ │ │ │ │ └── Resources │ │ │ │ │ └── SSDT-BATC.dsl │ │ │ │ ├── SMCLightSensor.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── SMCLightSensor │ │ │ │ ├── SMCProcessor.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── SMCProcessor │ │ │ │ ├── SMCSuperIO.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── SMCSuperIO │ │ │ │ ├── VirtualSMC.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── MacOS │ │ │ │ │ └── VirtualSMC │ │ │ │ ├── VoodooPS2Controller.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooPS2Controller │ │ │ │ │ └── PlugIns │ │ │ │ │ ├── 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 │ │ ├── misc │ │ │ └── .empty │ │ ├── themes │ │ │ ├── Dell-RedPoint │ │ │ │ ├── banner.png │ │ │ │ ├── bg.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_cougar.icns │ │ │ │ │ ├── os_freebsd.icns │ │ │ │ │ ├── os_legacy.icns │ │ │ │ │ ├── os_leo.icns │ │ │ │ │ ├── os_linux.icns │ │ │ │ │ ├── os_lion.icns │ │ │ │ │ ├── os_mac.icns │ │ │ │ │ ├── os_recovery.icns │ │ │ │ │ ├── os_snow.icns │ │ │ │ │ ├── os_tiger.icns │ │ │ │ │ ├── os_ubuntu.icns │ │ │ │ │ ├── os_unknow.icns │ │ │ │ │ ├── os_vista.icns │ │ │ │ │ ├── os_win.icns │ │ │ │ │ ├── os_win8.icns │ │ │ │ │ ├── pointer.icns │ │ │ │ │ ├── pointer.png │ │ │ │ │ ├── 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 │ │ │ │ ├── options_anim │ │ │ │ │ ├── options_anim_000.png │ │ │ │ │ └── options_anim_001.png │ │ │ │ ├── screenshot.png │ │ │ │ ├── selection_big.png │ │ │ │ ├── selection_small.png │ │ │ │ ├── sound.wav │ │ │ │ └── theme.plist │ │ │ ├── Lenovo │ │ │ │ ├── banner.png │ │ │ │ ├── banner.psd │ │ │ │ ├── bg.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_cougar.icns │ │ │ │ │ ├── os_freebsd.icns │ │ │ │ │ ├── os_legacy.icns │ │ │ │ │ ├── os_leo.icns │ │ │ │ │ ├── os_linux.icns │ │ │ │ │ ├── os_lion.icns │ │ │ │ │ ├── os_mac.icns │ │ │ │ │ ├── os_recovery.icns │ │ │ │ │ ├── os_snow.icns │ │ │ │ │ ├── os_tiger.icns │ │ │ │ │ ├── os_ubuntu.icns │ │ │ │ │ ├── os_unknow.icns │ │ │ │ │ ├── os_vista.icns │ │ │ │ │ ├── os_win.icns │ │ │ │ │ ├── os_win8.icns │ │ │ │ │ ├── pointer.icns │ │ │ │ │ ├── pointer.png │ │ │ │ │ ├── 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 │ │ │ │ ├── options_anim │ │ │ │ │ ├── options_anim_000.png │ │ │ │ │ └── options_anim_001.png │ │ │ │ ├── screenshot.png │ │ │ │ ├── selection_big.png │ │ │ │ ├── selection_small.png │ │ │ │ ├── sound.wav │ │ │ │ └── theme.plist │ │ │ ├── Thinkpad │ │ │ │ ├── banner.png │ │ │ │ ├── banner.psd │ │ │ │ ├── bg.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_cougar.icns │ │ │ │ │ ├── os_freebsd.icns │ │ │ │ │ ├── os_legacy.icns │ │ │ │ │ ├── os_leo.icns │ │ │ │ │ ├── os_linux.icns │ │ │ │ │ ├── os_lion.icns │ │ │ │ │ ├── os_mac.icns │ │ │ │ │ ├── os_recovery.icns │ │ │ │ │ ├── os_snow.icns │ │ │ │ │ ├── os_tiger.icns │ │ │ │ │ ├── os_ubuntu.icns │ │ │ │ │ ├── os_unknow.icns │ │ │ │ │ ├── os_vista.icns │ │ │ │ │ ├── os_win.icns │ │ │ │ │ ├── os_win8.icns │ │ │ │ │ ├── pointer.icns │ │ │ │ │ ├── pointer.png │ │ │ │ │ ├── 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 │ │ │ │ ├── options_anim │ │ │ │ │ ├── options_anim_000.png │ │ │ │ │ └── options_anim_001.png │ │ │ │ ├── screenshot.png │ │ │ │ ├── selection_big.png │ │ │ │ ├── selection_small.png │ │ │ │ ├── sound.wav │ │ │ │ └── theme.plist │ │ │ ├── embedded │ │ │ │ ├── screenshot.png │ │ │ │ └── theme.plist │ │ │ ├── logo_main.png │ │ │ ├── pointer-metal.png │ │ │ └── random │ │ │ │ └── theme.plist │ │ └── tools │ │ │ ├── Shell32.efi │ │ │ ├── Shell64.efi │ │ │ ├── Shell64U.efi │ │ │ └── bdmesg.efi │ └── Microsoft │ │ └── Boot │ │ ├── BCD │ │ ├── BCD.LOG │ │ ├── BCD.LOG1 │ │ ├── BCD.LOG2 │ │ ├── BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TM.blf │ │ ├── BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TMContainer00000000000000000001.regtrans-ms │ │ ├── BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TMContainer00000000000000000002.regtrans-ms │ │ ├── bootmgfw.efi │ │ ├── bootmgr.efi │ │ ├── cs-CZ │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── da-DK │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── de-DE │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── el-GR │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── en-US │ │ ├── bootmgfw.efi.mui │ │ ├── bootmgr.efi.mui │ │ └── memtest.efi.mui │ │ ├── es-ES │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── fi-FI │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── fr-FR │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── hu-HU │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── it-IT │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── ja-JP │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── ko-KR │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── memtest.efi │ │ ├── nb-NO │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── nl-NL │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── pl-PL │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── pt-BR │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── pt-PT │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── ru-RU │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── sv-SE │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── tr-TR │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── zh-CN │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ ├── zh-HK │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui │ │ └── zh-TW │ │ ├── bootmgfw.efi.mui │ │ └── bootmgr.efi.mui ├── Library │ ├── Preferences │ │ └── com.projectosx.clover.installer.plist │ └── Receipts │ │ ├── org.clover.biosboot.bom │ │ ├── org.clover.biosboot.plist │ │ ├── org.clover.bootloader.boot0af.bom │ │ ├── org.clover.bootloader.boot0af.plist │ │ ├── org.clover.cloverefi.64.sata.bom │ │ ├── org.clover.cloverefi.64.sata.plist │ │ ├── org.clover.drivers64.apfsdriverloader.bom │ │ ├── org.clover.drivers64.apfsdriverloader.plist │ │ ├── org.clover.drivers64.mandatory.audiodxe.bom │ │ ├── org.clover.drivers64.mandatory.audiodxe.plist │ │ ├── org.clover.drivers64.mandatory.fsinject.bom │ │ ├── org.clover.drivers64.mandatory.fsinject.plist │ │ ├── org.clover.drivers64.mandatory.smchelper.bom │ │ ├── org.clover.drivers64.mandatory.smchelper.plist │ │ ├── org.clover.drivers64.mandatory.xhcidxe.bom │ │ ├── org.clover.drivers64.mandatory.xhcidxe.plist │ │ ├── org.clover.drivers64uefi.apfsdriverloader.uefi.bom │ │ ├── org.clover.drivers64uefi.apfsdriverloader.uefi.plist │ │ ├── org.clover.drivers64uefi.mandatory.audiodxe.uefi.bom │ │ ├── org.clover.drivers64uefi.mandatory.audiodxe.uefi.plist │ │ ├── org.clover.drivers64uefi.mandatory.datahubdxe.uefi.bom │ │ ├── org.clover.drivers64uefi.mandatory.datahubdxe.uefi.plist │ │ ├── org.clover.drivers64uefi.mandatory.fsinject.uefi.bom │ │ ├── org.clover.drivers64uefi.mandatory.fsinject.uefi.plist │ │ ├── org.clover.drivers64uefi.mandatory.smchelper.uefi.bom │ │ ├── org.clover.drivers64uefi.mandatory.smchelper.uefi.plist │ │ ├── org.clover.efifolder.bom │ │ ├── org.clover.efifolder.plist │ │ ├── org.clover.post.bom │ │ ├── org.clover.post.plist │ │ ├── org.clover.pre.bom │ │ ├── org.clover.pre.plist │ │ ├── org.clover.utils.bom │ │ └── org.clover.utils.plist ├── TOOLS │ └── ssdtPRGen.sh ├── boot └── usr │ ├── local │ └── bin │ │ ├── bdmesg │ │ ├── boot1-install │ │ ├── espfinder │ │ └── partutil │ └── standalone │ └── i386 │ ├── Description.txt │ ├── Installation.txt │ ├── boot0af │ ├── boot0ss │ ├── boot1f32 │ ├── boot1f32alt │ ├── boot1h │ ├── boot1h2 │ ├── boot1x │ ├── boot1xalt │ └── x64 │ ├── boot6 │ └── boot7 ├── README.md ├── Thinkpad-X201-i7-Catalina-OS-Arrandale-Acceleration.jpg └── Thinkpad-X201-i7-Catalina-OS-hackintosh.JPG /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .unused/ 4 | .Original from guide/ -------------------------------------------------------------------------------- /EFI/EFI/APPLE/FIRMWARE/MBP91.scap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/APPLE/FIRMWARE/MBP91.scap -------------------------------------------------------------------------------- /EFI/EFI/BOOT/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/WINDOWS/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/APIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/APIC.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/ASF!.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/ASF!.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/BOOT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/BOOT.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/DSDT.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/DumpLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/DumpLog.txt -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/ECDT.aml: -------------------------------------------------------------------------------- 1 | ECDTRWLENOVOTP-6Q LNVOfb\_SB.PCI0.LPC.EC -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/FACP.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/FACS.aml: -------------------------------------------------------------------------------- 1 | FACS@< -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/HPET.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/MCFG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/MCFG.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/RSDP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/RSDP.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/RSDT-FACP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/RSDT-FACP.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/RSDT-SSDT-5-TP-6Q.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/RSDT-SSDT-5-TP-6Q.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/RSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/RSDT.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SLAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SLAC.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SLIC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SLIC.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-0-TP-6Q.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-0-TP-6Q.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-1-TP-6Q.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-1-TP-6Q.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-2-CpuPm.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-2-CpuPm.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-3-Cpu0Tst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-3-Cpu0Tst.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-4-ApTst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-4-ApTst.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_0-Cpu0Ist.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_0-Cpu0Ist.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_1-ApIst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_1-ApIst.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_2-Cpu0Cst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_2-Cpu0Cst.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_3-ApCst.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/SSDT-x2_3-ApCst.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/TCPA.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/TCPA.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/origin/XSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/origin/XSDT.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/patched/.BACKUPS/.DSDT copy.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/patched/.BACKUPS/.DSDT copy.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/patched/.BACKUPS/SSDT laptop generated.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/patched/.BACKUPS/SSDT laptop generated.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/patched/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/patched/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/patched/DSDT.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/patched/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/patched/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ACPI/patched/SSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/ACPI/patched/SSDT.aml -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/ROM/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/doc/HowToFixDsdt.txt: -------------------------------------------------------------------------------- 1 | 2 | ========================================================================================================================== 3 | 4 | How to Fix DSDT using Clover (since rev. 479) 5 | ---------------------------------------------------------------- 6 | 7 | 8 | New setting in /EFI/config.plist: 9 | 10 | ACPI: 11 | FixDsdtMask 12 | 0xFFFF 13 | 14 | Suggest to remove /EFI/ACPI/patched/dsdt.aml if get kernel panic. 15 | All mask values are as below. Some patches need Method DTGP (0x0001) to work fine. 16 | 17 | Definition of 0x00FF: 18 | 0000 0000 0000 0001 = 0x0001 = FIX_DTGP 19 | 0000 0000 0000 0010 = 0x0002 = FIX_WARNING 20 | 0000 0000 0000 0100 = 0x0004 = FIX_SHUTDOWN 21 | 0000 0000 0000 1000 = 0x0008 = FIX_MCHC 22 | 0000 0000 0001 0000 = 0x0010 = FIX_HPET 23 | 0000 0000 0010 0000 = 0x0020 = FIX_LPC 24 | 0000 0000 0100 0000 = 0x0040 = FIX_IPIC 25 | 0000 0000 1000 0000 = 0x0080 = FIX_SBUS 26 | 27 | Definition of 0xFF00: 28 | 0000 0001 0000 0000 = 0x0100 = FIX_DISPLAY 29 | 0000 0010 0000 0000 = 0x0200 = FIX_IDE 30 | 0000 0100 0000 0000 = 0x0400 = FIX_SATA 31 | 0000 1000 0000 0000 = 0x0800 = FIX_FIREWIRE 32 | 0001 0000 0000 0000 = 0x1000 = FIX_USB 33 | 0010 0000 0000 0000 = 0x2000 = FIX_LAN 34 | 0100 0000 0000 0000 = 0x4000 = FIX_WIFI 35 | 1000 0000 0000 0000 = 0x8000 = FIX_HDA 36 | 37 | 38 | How to use dsdt fix: 39 | -------------------- 40 | 41 | 0000 0000 1111 1111 = 0x00FF = Fix all of bit(0) ~ bit(7). 42 | 1111 1111 0000 0000 = 0xFF00 = Fix all of bit(8) ~ bit(15). Need to be 0xFF01 with method DTGP first. 43 | 44 | You can fix dsdt for single function. Need method DTGP to work without dsdt.aml. 45 | 46 | 0000 0000 0000 1001 = 0x0009 = DTGP + MCHC 47 | 0000 0000 0010 0001 = 0x0021 = DTGP + LPC 48 | 0000 0000 1000 0001 = 0x0081 = DTGP + SBUS 49 | 0000 0001 0000 0001 = 0x0101 = DTGP + DISPLAY 50 | 0000 0010 0000 0001 = 0x0201 = DTGP + IDE 51 | 0000 0100 0000 0001 = 0x0401 = DTGP + SATA 52 | 0000 1000 0000 0001 = 0x0801 = DTGP + FIREWIRE 53 | 0001 0000 0000 0001 = 0x1001 = DTGP + USB 54 | 0010 0000 0000 0001 = 0x2001 = DTGP + LAN 55 | 0100 0000 0000 0001 = 0x4001 = DTGP + WIFI 56 | 1000 0000 0000 0001 = 0x8001 = DTGP + HDA 57 | 58 | Or fix dsdt for multi functions. Need method DTGP to work without dsdt.aml. 59 | 60 | 0000 0101 0000 0001 = 0x0501 = DTGP + DISPLAY + SATA 61 | 0011 0001 0000 0001 = 0x3101 = DTGP + DISPLAY + USB + LAN 62 | 1011 0101 0000 0001 = 0xB501 = DTGP + DISPLAY + SATA + USB + LAN + HDA 63 | 64 | ========================================================================================================================== 65 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/doc/HowToInstallOSX.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | ========================================================================================================================== 4 | 5 | How to install InstallESD.dmg to GPT with 10.7.x and 10.8.x. (since rev. 480) 6 | ---------------------------------------------------------------- 7 | 8 | 9 | First, you need to Restore InstallESD.dmg to disk by using Disk Utility. 10 | 11 | Then, follow the stage 1 and stage 2 to install 10.7.x or 10.8.x to GPT, and auto-create the Recovery HD used for iCloud. 12 | 13 | 14 | Stage 1 15 | --------- 16 | 17 | 1.Remove kernelcache in InstallESD.dmg/Library/Preferences/SystemConfiguration/com.apple.Boot.plist. 18 | Kernel Cache remove this line. 19 | xxxxxxxxxxxxx remove this line. 20 | 21 | 2.Copy BaseSystem.dmg/System/Library/Extensions to partition of InstallESD.dmg and add other kexts (FakeSMC.kext). 22 | 23 | 3.Clover select to "Boot Mac OS X with extra kexts (skips cache)", and follow the installation with restart first time. 24 | 25 | 26 | Stage 2 27 | --------- 28 | 29 | 1.Remove kernelcache in target partition's /OS X Install Data/com.apple.Boot.plist. 30 | Kernel Cache remove this line. 31 | xxxxxxxxxxxxx remove this line. 32 | ( 10.7.x is /Mac OS X Install Data/com.apple.Boot.plist ) 33 | 34 | 2.Copy InstallESD.dmg/System/Library/CoreServices and /mach_kernel to target partition's / . 35 | 36 | 3.Copy BaseSystem.dmg/System/Library/Extensions to target partition's / and add other kexts (FakeSMC.kext). 37 | 38 | 4.Boot to "OS X Install" with "Boot Mac OS X with extra kexts (skips cache)" and finish the installation. 39 | (10.7.x is "Mac OS X Install") 40 | 41 | ========================================================================================================================== 42 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/doc/Installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/doc/Installation.txt -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/doc/UEFI boot with Clover.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf360 2 | {\fonttbl\f0\froman\fcharset0 Times-Roman;\f1\fmodern\fcharset0 CourierNewPSMT;\f2\fmodern\fcharset0 Courier; 3 | \f3\fnil\fcharset0 LucidaGrande;} 4 | {\colortbl;\red255\green255\blue255;\red26\green26\blue26;\red253\green209\blue195;\red48\green75\blue109; 5 | \red248\green252\blue253;\red255\green255\blue255;} 6 | \paperw11900\paperh16840\margl1440\margr1440\vieww15340\viewh12400\viewkind0 7 | \deftab720 8 | \pard\pardeftab720\sl320\ql\qnatural 9 | 10 | \f0\b\fs32 \cf0 UEFI boot with Clover 11 | \b0\fs26 \ 12 | \pard\pardeftab720\sl380\ql\qnatural 13 | \cf0 by Dmazar\ 14 | \ 15 | As a general procedure, it would be good to get standard Clover working first (BIOS MBR -> boot0->boot1->boot->CloverX64.efi) and then try direct UEFI (UEFI -> CloverX64.efi). I think this is a good path, since if you manage to get standard Clover working, then you know that things are set up properly (Clover config, SMBIOS, DSDT) and any issues that may arise in UEFI boot and UEFI specific. I'll try to summarize here what I know so far.\ 16 | \ 17 | For UEFI boot, I would recommend to first try it from FAT32 formatted USB stick.\ 18 | \ 19 | \pard\pardeftab720\sl380\ql\qnatural 20 | 21 | \b \cf0 1. FAT32 USB stick: 22 | \b0 \ 23 | I have mine formatted in Windows. Ordinary MBR with FAT32 partition. Now, if I understood correctly from Applelife.ru, Troj80 says {\field{\*\fldinst{HYPERLINK "http://translate.googleusercontent.com/translate_c?hl=hr&rurl=translate.google.com&sl=ru&tl=en&u=http://applelife.ru/threads/clover.32052/page-277&usg=ALkJrhiPS1lblaqIqyMzBlyocfjOebKkrA#post-289584"}}{\fldrslt \cf2 \ul \ulc2 here}} that EFI partition (which is also usually FAT32) has to be formatted with the cluster size with the value between 1K and 8K in order to be usable from UEFI. Maybe the same thing should be done with the USB stick? I did not try formatting it in OSX - will have to try. Something like:\ 24 | \pard\pardeftab720\sl380\ql\qnatural 25 | 26 | \f1 \cf0 > newfs_msdos -F32 -b 1024 -v USBStick /dev/diskHsH 27 | \f0 \ 28 | where /dev/diskHsH is partition on the stick.\ 29 | \ 30 | My USB stick formatted in Windows looks like this:\ 31 | \pard\pardeftab720\sl380\ql\qnatural 32 | 33 | \b \cf0 \cb3 CODE\ 34 | \pard\pardeftab720\sl380\ql\qnatural 35 | 36 | \f2\b0 \cf4 \cb5 > diskutil list\ 37 | /dev/disk4\ 38 | \'a0\'a0 #:\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0 TYPE NAME\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0SIZE\'a0\'a0\'a0\'a0\'a0\'a0 IDENTIFIER\ 39 | \'a0\'a0 0:\'a0\'a0\'a0\'a0 FDisk_partition_scheme\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0*4.0 GB\'a0\'a0\'a0\'a0 disk4\ 40 | \'a0\'a0 1:\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0 DOS_FAT_32 DUET\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a0\'a04.0 GB\'a0\'a0\'a0\'a0 disk4s1\ 41 | > newfs_msdos -N disk4s1\ 42 | 512 bytes per physical sector\ 43 | /dev/rdisk4s1: 7816248 sectors in 977031 FAT32 clusters (4096 bytes/cluster)\ 44 | bps=512 spc=8 res=32 nft=2 mid=0xf8 spt=32 hds=255 hid=2 drv=0x80 bsec=7831550 bspf=7634 rdcl=2 infs=1 bkbs=6\ 45 | \pard\pardeftab720\sl380\ql\qnatural 46 | 47 | \f0 \cf0 \cb1 \ 48 | \pard\pardeftab720\sl380\ql\qnatural 49 | 50 | \b \cf0 2. Standard Clover install 51 | \b0 \ 52 | This is BIOS MBR -> boot0 -> boot1xxx -> boot ->CloverX64.efi boot.\ 53 | You may skip this step and go directly to UEFI boot, but in case of any issues please go back and do this prior to asking help for UEFI boot. This is to eliminate problems with Clover installation and set up. I can try to help with UEFI boot, but It's easier and more likely to get help on standard Clover setup - ask for help in {\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2304"}}{\fldrslt \cf2 \ul \ulc2 Clover thread}}.\ 54 | \ 55 | Take the Clover installer from {\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2304"}}{\fldrslt \cf2 \ul \ulc2 here}} and set it up on FAT32 USB stick. Then edit /EFI/config.plist to suit your needs, put DSDT (and SSDTs) in /EFI/ACPI/patched folder and leave /EFI/Drivers64 empty. Do classic boot from that USB stick. When this works, move to UEFi boot.\ 56 | \ 57 | 58 | \b 3. UEFI boot 59 | \b0 \ 60 | That USB stick should have standard Clover installation. The same stick with the same Clover files from step 2. can be used here, except some additional drivers and (U)EFI shell are needed :\ 61 | \pard\pardeftab720\sl380\ql\qnatural 62 | 63 | \b \cf0 \cb3 CODE\ 64 | \pard\pardeftab720\sl380\ql\qnatural 65 | 66 | \f2\b0 \cf4 \cb5 /EFI\ 67 | \'a0\'a0config.pist (or in OEM folder)\ 68 | \'a0\'a0/ACPI (or in OEM folder)\ 69 | \'a0\'a0\'a0\'a0...\ 70 | \'a0\'a0/BOOT\ 71 | \'a0\'a0\'a0\'a0BootX64.efi\ 72 | \'a0\'a0\'a0\'a0CloverX64.efi\ 73 | \'a0\'a0/DRIVERS64\ 74 | \'a0\'a0\'a0\'a0HFSPlusX64.efi (or VBoxHfs.efi)\ 75 | \'a0\'a0\'a0\'a0OsxFatBinaryDrv.efi\ 76 | \'a0\'a0\'a0\'a0OsxAptioFixDrv.efi - this one only for Aptio boards\ 77 | ...\ 78 | \pard\pardeftab720\sl380\ql\qnatural 79 | 80 | \f0 \cf0 \cb1 \ 81 | /EFI/BOOT/BootX64.efi can be:\ 82 | - copied CloverX64.efi, but if it hangs ({\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2428&st=220"}}{\fldrslt \cf2 \ul \ulc2 see here}}), then it should be shell\ 83 | - in case of UEFI v2.3 this can be UEFI Shell (also known as edk2 shell, shell2): {\field{\*\fldinst{HYPERLINK "https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2/ShellBinPkg/UefiShell/X64/"}}{\fldrslt \cf2 \ul \ulc2 here}}\ 84 | - in case of older UEFIs, this should be older EFI shell (also known as edk1 shell or it's port to GCC called GccShell): {\field{\*\fldinst{HYPERLINK "http://sourceforge.net/projects/efi-shell/files/"}}{\fldrslt \cf2 \ul \ulc2 here}}\ 85 | \ 86 | Drivers64:\ 87 | - HFSPlusX64.efi (or VBoxHfs.efi) for HFS+ support\ 88 | - OsxFatBinaryDrv.efi for multi architecture (FatBin) binaries like boot.efi\ 89 | - OsxAptioFixDrv.efi (this one only for Aptio boards)\ 90 | \ 91 | Modify Clover's /EFI/config.plist:\ 92 | - to be able to boot Mountain Lion add slide=0 to boot-args. this option will be ignored by other version of OSX, but will (oh, may) enable ML booting. for example:\ 93 | \pard\pardeftab720\sl380\ql\qnatural 94 | 95 | \f1 \cf0 boot-args\ 96 | -v arch=x86_64 slide=0\ 97 | \pard\pardeftab720\sl380\ql\qnatural 98 | 99 | \f0 \cf0 \ 100 | Booting from that USB stick on my board goes like this:\ 101 | - power on\ 102 | - pressing F8 during POST screen shows boot options (like drive selection)\ 103 | - if USB stick is FAT32 and contains /efi/boot/bootx64.efi, then option "UEFI: The name of the stick" will appear as a boot option\ 104 | - selecting that option starts /efi/boot/bootx64.efi - which is shell or Clover\ 105 | \ 106 | On Aptio boards you can also put shell to the root folder as ShellX64.efi, and then can start it from UEFI Setup screen/Exit/Start shell (or something similar).\ 107 | \ 108 | If bootx64.efi is a shell, then shell will start and prompt will appear. Use the commands in 4. below to start Clover. Unless you know what you are doing and why, there is no need to load any drivers before starting Clover - Clover will load drivers from /efi/drivers64 folder when it starts.\ 109 | \ 110 | \pard\pardeftab720\sl380\ql\qnatural 111 | 112 | \b \cf0 4. (U)EFI Shell 113 | \b0 \ 114 | EFI shell (old shell) user guide and command manual: {\field{\*\fldinst{HYPERLINK "http://sourceforge.net/projects/efi-shell/files/documents/"}}{\fldrslt \cf2 \ul \ulc2 here}}\ 115 | \pard\pardeftab720\sl380\ql\qnatural 116 | 117 | \f1 \cf0 > help -b 118 | \f0 \ 119 | list shell commands\ 120 | 121 | \f1 > help -b\ 122 | > help -b -v 123 | \f0 \ 124 | prints command help. in the shell2 use later version.\ 125 | 126 | \f1 > ver 127 | \f0 \ 128 | will print UEFI version\ 129 | 130 | \f1 > map fs* 131 | \f0 \ 132 | will list current shell file system/volume/partition mappings\ 133 | 134 | \f1 > fs0:\ 135 | > fs1:\ 136 | > fsXX: 137 | \f0 \ 138 | changes the current volume\ 139 | 140 | \f1 > ls 141 | \f0 \ 142 | lists files in the current directory\ 143 | 144 | \f1 > cd \\efi\\boot 145 | \f0 \ 146 | changes the current directory\ 147 | 148 | \f1 > cloverx64.efi 149 | \f0 \ 150 | starts clover\ 151 | \ 152 | So, find and start Clover and try to boot OSX. When you get that working, then you can install Clover to a hard disk.\ 153 | \ 154 | \pard\pardeftab720\sl380\ql\qnatural 155 | 156 | \b \cf0 5. Install to HDD EFI partition 157 | \b0 \ 158 | By default, UEFI can only access FAT partitions, for example EFI partition(s), so the only option is to install it to EFI partition.\ 159 | \ 160 | My EFI partition created by SnowLeo installation is FAT16. Clover works from there, but sometimes I have problems with certain files - they get short XXXX~1.yyy names. I need to try to reformat it to FAT32 as Troj80 suggested and see if this helps.\ 161 | \ 162 | Installation requires copying /EFI folder from USB stick to EFI partition and adding CloverX64.efi as a boot option.\ 163 | \ 164 | \pard\pardeftab720\sl380\ql\qnatural 165 | \cf0 \ul \ulc0 5.1.1 copying from the shell\ulnone \ 166 | Use:\ 167 | \pard\pardeftab720\sl380\ql\qnatural 168 | 169 | \f1 \cf0 > map fs*\ 170 | > fs0:\ 171 | > ls\ 172 | > fs1:\ 173 | ...\ 174 | \pard\pardeftab720\sl380\ql\qnatural 175 | 176 | \f0 \cf0 to identify USB volume (for example fs1) and EFI volume (for example fs0). Use:\ 177 | \pard\pardeftab720\sl380\ql\qnatural 178 | 179 | \f1 \cf0 > fs0:\ 180 | > cd \\EFI\ 181 | > cp -r fs1:\\EFI\\* .\ 182 | > ls\ 183 | \pard\pardeftab720\sl380\ql\qnatural 184 | 185 | \f0 \cf0 \ 186 | \pard\pardeftab720\sl380\ql\qnatural 187 | \cf0 \ul \ulc0 5.1.2 copying from OSX\ulnone \ 188 | - open terminal\ 189 | - mount EFI partition\ 190 | \pard\pardeftab720\sl380\ql\qnatural 191 | 192 | \f1 \cf0 > diskuti list 193 | \f0 \ 194 | to identify EFI partition, and\ 195 | 196 | \f1 > mkdir /Volumes/efi\ 197 | > sudo mount -t msdos /dev/diskXs1 /Volumes/efi 198 | \f0 \ 199 | to mount it (where /dev/diskXs1 is EFI partition device).\ 200 | - it should appear in Finder as EFI volume\ 201 | - then use Finder to copy whole /EFI folder to EFI volume\ 202 | - check it from terminal:\ 203 | 204 | \f1 > ls /Volumes/efi/EFI/* 205 | \f0 \ 206 | this should list ACPI, BOOT and other Clover folders.\ 207 | \ 208 | \pard\pardeftab720\sl380\ql\qnatural 209 | \cf0 \ul \ulc0 5.2 Add Clover as a boot option\ulnone \ 210 | On Aptio, it's not enough to rename Cloverx64.efi on HDD to BootX64.efi to enable it to start ({\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2428&st=100&p=18177&#entry18177"}}{\fldrslt \cf2 \ul \ulc2 see here}}). But it seems that's what you need to do on Gigabyte Hybrid EFI. Standard procedure for adding an OS boot option in UEFI is to add boot option variable to NVRAM - that's what is needed on Aptio.\ 211 | \ 212 | Boot options can be managed with 213 | \f1 bcfg 214 | \f0 command in a shell. But, this command is available only in UEFI shell (shell2) and since shell2 requires UEFI 2.3 or newer, users with older UEFI have a problem. If you are the "lucky" one with older UEFI where shell2 does not work, try with my modified shell2 from {\field{\*\fldinst{HYPERLINK "http://dl.dropbox.com/u/17629062/Shell2.zip"}}{\fldrslt \cf2 \ul \ulc2 here}}. This is not fully working port, but bcfg works and I'm using it only for boot options manipulation with bcfg.\ 215 | \ 216 | Users of UEFI 2.3 or newer can put shell2 to FAT32 USB stick as /efi/boot/bootx64.efi and just use this one. Since I need old shell for normal use and moded shell2 for bcfg, I have old shell set as /efi/boot/bootx64.efi and moded shell2 as /shellx64.efi (in the root of USB) - in this way I can press F8 during POST and choose "UEFI: stick name" to load older shell or press Del to enter UEFI Setup screens and then select Exit/Start shell to load moded shell2. Actually, I have both shells copied to HDD EFI partition and added as separate boot options, but that can be done later.\ 217 | \ 218 | Boot into shell2 (real one or moded) and find Cloverx64.efi on HDD EFI partition with some combination of the following commands:\ 219 | \pard\pardeftab720\sl380\ql\qnatural 220 | 221 | \f1 \cf0 > map fs*\ 222 | > fs0: (or fs1: or fs2: ...)\ 223 | > ls\ 224 | > cd \\efi\\boot\ 225 | > ls\ 226 | \pard\pardeftab720\sl380\ql\qnatural 227 | 228 | \f0 \cf0 \ 229 | And then:\ 230 | \pard\pardeftab720\sl380\ql\qnatural 231 | 232 | \f1 \cf0 > help bcfg -b -v 233 | \f0 \ 234 | and try to understand help from the screen\ 235 | 236 | \f1 > bcfg boot dump 237 | \f0 \ 238 | to list current boot options\ 239 | 240 | \f1 > bcfg boot add N cloverx64.efi "OSX through Clover" 241 | \f0 \ 242 | to add cloverx64.efi from the current dir as a boot option labeled "OSX through Clover". N should be boot option number: 0 if you wan it to be the first, 1 to be the second ...\ 243 | 244 | \f1 > bcfg boot dump 245 | \f0 \ 246 | to check if it is added\ 247 | 248 | \f1 > reset 249 | \f0 \ 250 | to reset the system and to try to load Clover from HDD\ 251 | \ 252 | When it is added, reset the system and press F8 during POST (or whatever key is needed to get selection of boot options) and "OSX through Clover" should be there. Select it and try if it works.\ 253 | \ 254 | \pard\pardeftab720\sl380\ql\qnatural 255 | 256 | \b \cf0 6. Troubleshooting 257 | \b0 \ 258 | - If you can not boot through UEFI and did not try to set it up as standard Clover boot, please try standard BIOS MBR Clover setup first. Maybe the issue is in the Clover setup and not UEFI boot.\ 259 | - When asking for help, please copy UEFIDump.nsh script to your FAT32 USB, boot into shell, choose FAT32 volume with fs0: or fs1: or ... , execute UEFIDump.nsh > dump.txt and post it here.\ 260 | \ 261 | - If you can boot into OSX but have some issues, search for latest version of DarwinDumper {\field{\*\fldinst{HYPERLINK "http://www.projectosx.com/forum/index.php?showtopic=2447"}}{\fldrslt \cf2 \ul \ulc2 here}} (usually the last post) and post it's logs here if it will be needed.\ 262 | \pard\pardeftab720\sl280\qr 263 | 264 | \f3\fs22 \cf2 \cb6 \ 265 | } -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/doc/bcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/doc/bcfg.txt -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/doc/boot1f32-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # boot1f32-install.sh 4 | # 5 | # Created by mackerintel on 2/2/09. 6 | # Copyright 2009 mackerintel. All rights reserved. 7 | 8 | if [[ x$1 == x ]]; then 9 | echo Usage: $0 disknumber; 10 | exit 0; 11 | fi 12 | 13 | if [[ `dd if=/dev/disk${1}s1 count=8 bs=1 skip=82 | uuencode -m -|head -n 2|tail -n 1` != "RkFUMzIgICA=" ]]; then 14 | echo "/dev/disk${1}s1" "isn't" a FAT32 partition; 15 | exit 1; 16 | fi 17 | 18 | if [ ! -f boot1f32 ]; then 19 | echo "boot1f32 not found"; 20 | exit 1; 21 | fi 22 | 23 | dd if=/dev/disk${1}s1 count=1 bs=512 of=/tmp/origbs 24 | cp boot1f32 /tmp/newbs 25 | dd if=/tmp/origbs of=/tmp/newbs skip=3 seek=3 bs=1 count=87 conv=notrunc 26 | dd of=/dev/disk${1}s1 count=1 bs=512 if=/tmp/newbs 27 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/BIOS/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/BIOS/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/BIOS/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/BIOS/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/BIOS/FSInject.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/BIOS/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/BIOS/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/BIOS/SMCHelper.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/BIOS/SMCHelper.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/BIOS/XhciDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/BIOS/XhciDxe.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/DataHubDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/DataHubDxe.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/EmuVariableUefi.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/EmuVariableUefi.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/FSInject.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/FirmwareVolume.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/FirmwareVolume.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/OsxAptioFix3Drv.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/OsxAptioFix3Drv.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/PartitionDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/PartitionDxe.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/SMCHelper.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/SMCHelper.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/drivers/UEFI/VBoxHfs.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/drivers/UEFI/VBoxHfs.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/10.11/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/10.12/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/10.13/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/10.14/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/10.15/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Off/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AirportItlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H2 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportItlwm 11 | CFBundleIdentifier 12 | com.zxystd.AirportItlwm 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportItlwm 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.3.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12D4e 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.1 35 | DTSDKBuild 36 | 20C63 37 | DTSDKName 38 | macosx11.1 39 | DTXcode 40 | 1240 41 | DTXcodeBuild 42 | 12D4e 43 | IOKitPersonalities 44 | 45 | itlwm 46 | 47 | CFBundleIdentifier 48 | com.zxystd.AirportItlwm 49 | IOClass 50 | AirportItlwm 51 | IOMatchCategory 52 | IODefaultMatchCategory 53 | IOPCIMatch 54 | 0x27238086 0x43F08086 0xA0F08086 0x34F08086 0x4DF08086 0x02F08086 0x3DF08086 0x06F08086 0x27208086 0x08b18086 0x08b28086 0x08b38086 0x08b48086 0x095a8086 0x095b8086 0x31658086 0x31668086 0x24f38086 0x24f48086 0x24f58086 0x24f68086 0x24fb8086 0x24fd8086 0x25268086 0x9df08086 0xa3708086 0x31DC8086 0x30DC8086 0x271C8086 0x271B8086 0x42a48086 0x00a08086 0x00a48086 0x02a08086 0x40a48086 0x00608086 0x00648086 0x02608086 0x02648086 0x42298086 0x422b8086 0x422c8086 0x42308086 0x42328086 0x42358086 0x42368086 0x42378086 0x42388086 0x42398086 0x423a8086 0x423b8086 0x423c8086 0x423d8086 0x00828086 0x00838086 0x00848086 0x00858086 0x00878086 0x00898086 0x008a8086 0x008b8086 0x00908086 0x00918086 0x08928086 0x08938086 0x08948086 0x08958086 0x08968086 0x08978086 0x08ae8086 0x08af8086 0x088e8086 0x088f8086 0x08908086 0x08918086 0x08878086 0x08888086 55 | IOProbeScore 56 | 2000 57 | IOProviderClass 58 | IOPCIDevice 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.15 63 | NSHumanReadableCopyright 64 | Copyright © 2020 钟先耀. All rights reserved. 65 | OSBundleLibraries 66 | 67 | com.apple.iokit.IO80211Family 68 | 1200.12.2b1 69 | com.apple.iokit.IONetworkingFamily 70 | 3.2 71 | com.apple.iokit.IOPCIFamily 72 | 2.9 73 | com.apple.kpi.bsd 74 | 16.7 75 | com.apple.kpi.iokit 76 | 16.7 77 | com.apple.kpi.libkern 78 | 16.7 79 | com.apple.kpi.mach 80 | 16.7 81 | 82 | OSBundleRequired 83 | Network-Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AirportItlwm.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AirportItlwm.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 12A251 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | AppleIntelCPUPowerManagement 11 | CFBundleIdentifier 12 | com.apple.driver.AppleIntelCPUPowerManagement 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Intel CPU Low Level Power Management 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 196.0.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 196.0.0 25 | DTCompiler 26 | 27 | DTPlatformBuild 28 | 4F212 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 12A251 33 | DTSDKName 34 | 35 | DTXcode 36 | 0440 37 | DTXcodeBuild 38 | 4F212 39 | IOKitPersonalities 40 | 41 | IntelCPUPowerManagement 42 | 43 | CFBundleIdentifier 44 | com.apple.driver.AppleIntelCPUPowerManagement 45 | IOClass 46 | AppleIntelCPUPowerManagement 47 | IOMatchCategory 48 | AppleIntelCPUPowerManagement 49 | IOPropertyMatch 50 | 51 | intel_cpupm_matching 52 | 0 53 | 54 | IOProviderClass 55 | IOResources 56 | IOResourceMatch 57 | IOKit 58 | 59 | 60 | NSHumanReadableCopyright 61 | Copyright © 2005-2011 Apple Inc. All rights reserved. 62 | OSBundleLibraries 63 | 64 | com.apple.kpi.bsd 65 | 8.0.0 66 | com.apple.kpi.iokit 67 | 8.0.0 68 | com.apple.kpi.libkern 69 | 8.0.0 70 | com.apple.kpi.mach 71 | 8.0.0 72 | com.apple.kpi.private 73 | 8.0.0 74 | com.apple.kpi.unsupported 75 | 8.0.0 76 | 77 | OSBundleRequired 78 | Root 79 | 80 | 81 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/MacOS/AppleIntelCPUPowerManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/MacOS/AppleIntelCPUPowerManagement -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/English.lproj/InfoPlist.strings 8 | 9 | hash 10 | 11 | zmV6UqBSo6r1NOz798vd5O4zTBA= 12 | 13 | optional 14 | 15 | 16 | Resources/English.lproj/locversion.plist 17 | 18 | hash 19 | 20 | 1ougdm9ZbwQc89ttlJbBZp9VBEY= 21 | 22 | optional 23 | 24 | 25 | version.plist 26 | 27 | 5n6zJhjWdlRuXkaLTBG2BwjCI5E= 28 | 29 | 30 | rules 31 | 32 | @[0-9]+ 33 | 34 | omit 35 | 36 | weight 37 | 10 38 | 39 | \.licns$ 40 | 41 | optional 42 | 43 | weight 44 | 50 45 | 46 | ^Resources/ 47 | 48 | ^Resources/.*\.lproj/ 49 | 50 | omit 51 | 52 | weight 53 | 30 54 | 55 | ^Resources/.*\.lproj/locversion.plist$ 56 | 57 | omit 58 | 59 | weight 60 | 30 61 | 62 | ^Resources/.*\.nib/classes\.nib$ 63 | 64 | optional 65 | 66 | weight 67 | 5 68 | 69 | ^Resources/.*\.nib/data\.dependency$ 70 | 71 | optional 72 | 73 | weight 74 | 5 75 | 76 | ^Resources/.*\.nib/designable\.nib$ 77 | 78 | optional 79 | 80 | weight 81 | 5 82 | 83 | ^Resources/.*\.nib/info\.nib$ 84 | 85 | optional 86 | 87 | weight 88 | 5 89 | 90 | ^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$ 91 | 92 | omit 93 | 94 | weight 95 | 10 96 | 97 | ^Resources/English\.lproj/ 98 | 99 | optional 100 | 101 | weight 102 | 40 103 | 104 | ^version.plist$ 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelCPUPowerManagement.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 385 7 | CFBundleShortVersionString 8 | 196.0.0 9 | CFBundleVersion 10 | 196.0.0 11 | ProjectName 12 | AppleIntelCPUPowerManagement 13 | SourceVersion 14 | 196000000000000 15 | 16 | 17 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 10K549 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | AppleIntelE1000e 11 | CFBundleIdentifier 12 | com.insanelymac.driver.AppleIntelE1000e 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AppleIntelE1000e 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 3.3.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 3.3.6 25 | DTCompiler 26 | 27 | DTPlatformBuild 28 | 10M2518 29 | DTPlatformVersion 30 | PG 31 | DTSDKBuild 32 | 10M2518 33 | DTSDKName 34 | macosx10.6 35 | DTXcode 36 | 0400 37 | DTXcodeBuild 38 | 10M2518 39 | IOKitPersonalities 40 | 41 | e1000e 42 | 43 | CFBundleIdentifier 44 | com.insanelymac.driver.AppleIntelE1000e 45 | E1000_CTRL_TFCE 46 | 47 | E1000_DEFAULT_RXD 48 | 256 49 | E1000_DEFAULT_TXD 50 | 256 51 | IOClass 52 | AppleIntelE1000e 53 | IOPCIClassMatch 54 | 0x02000000&0xffff0000 55 | IOPCIPrimaryMatch 56 | 0x10008086&0x0000ffff 57 | IOProviderClass 58 | IOPCIDevice 59 | NETIF_F_TSO 60 | 61 | 62 | 63 | OSBundleLibraries 64 | 65 | com.apple.iokit.IONetworkingFamily 66 | 1.5.0 67 | com.apple.iokit.IOPCIFamily 68 | 1.7 69 | com.apple.kpi.bsd 70 | 8.10.0 71 | com.apple.kpi.iokit 72 | 8.10.0 73 | com.apple.kpi.libkern 74 | 8.10.0 75 | com.apple.kpi.mach 76 | 8.10.0 77 | 78 | OSBundleRequired 79 | Network-Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/MacOS/AppleIntelE1000e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/MacOS/AppleIntelE1000e -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/Resources/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/AppleIntelE1000e.kext/Contents/Resources/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.5.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kpi.bsd 70 | 10.0.0 71 | com.apple.kpi.dsep 72 | 10.0.0 73 | com.apple.kpi.iokit 74 | 10.0.0 75 | com.apple.kpi.libkern 76 | 10.0.0 77 | com.apple.kpi.mach 78 | 10.0.0 79 | com.apple.kpi.unsupported 80 | 10.0.0 81 | 82 | OSBundleRequired 83 | Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCBatteryManager 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCBatteryManager 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCBatteryManager 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.9 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.9 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | IOSMBusController 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCBatteryManager 49 | IOClass 50 | SMCSMBusController 51 | IOMatchCategory 52 | SMCSMBusController 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | SMCBatteryManager 59 | 60 | CFBundleIdentifier 61 | ru.usrsse2.SMCBatteryManager 62 | IOClass 63 | SMCBatteryManager 64 | IOMatchCategory 65 | SMCBatteryManager 66 | IOProviderClass 67 | IOResources 68 | IOResourceMatch 69 | IOKit 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.6 74 | NSHumanReadableCopyright 75 | Copyright © 2018 usrsse2. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | as.vit9696.VirtualSMC 83 | 1.0.0 84 | com.apple.iokit.IOACPIFamily 85 | 1.0.0d1 86 | com.apple.iokit.IOSMBusFamily 87 | 1.0.0 88 | com.apple.kpi.bsd 89 | 10.0.0 90 | com.apple.kpi.dsep 91 | 10.0.0 92 | com.apple.kpi.iokit 93 | 10.0.0 94 | com.apple.kpi.libkern 95 | 10.0.0 96 | com.apple.kpi.mach 97 | 10.0.0 98 | com.apple.kpi.unsupported 99 | 10.0.0 100 | 101 | OSBundleRequired 102 | Root 103 | 104 | 105 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCLightSensor 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCLightSensor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCLightSensor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.9 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.9 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | SMCLightSensor 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCLightSensor 49 | IOClass 50 | SMCLightSensor 51 | IOMatchCategory 52 | SMCLightSensor 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.6 61 | NSHumanReadableCopyright 62 | Copyright © 2018 vit9696. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 10.0.0 75 | com.apple.kpi.dsep 76 | 10.0.0 77 | com.apple.kpi.iokit 78 | 10.0.0 79 | com.apple.kpi.libkern 80 | 10.0.0 81 | com.apple.kpi.mach 82 | 10.0.0 83 | com.apple.kpi.unsupported 84 | 10.0.0 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.VirtualSMC 48 | 49 | CFBundleIdentifier 50 | as.vit9696.VirtualSMC 51 | IOClass 52 | VirtualSMC 53 | IODeviceMemory 54 | 55 | 56 | 57 | address 58 | 768 59 | length 60 | 32 61 | 62 | 63 | 64 | 65 | address 66 | 4277141504 67 | length 68 | 65536 69 | 70 | 71 | 72 | IOInterruptControllers 73 | 74 | io-apic-0 75 | 76 | IOInterruptSpecifiers 77 | 78 | 79 | BgAAAAAAAAA= 80 | 81 | 82 | IOMatchCategory 83 | IOACPIPlatformDevice 84 | IOName 85 | SMC 86 | IOProbeScore 87 | 60000 88 | IOProviderClass 89 | AppleACPIPlatformExpert 90 | Keystore 91 | 92 | Generic 93 | 94 | 95 | attr 96 | 97 | iA== 98 | 99 | comment 100 | Total fan number, this should be put to a plugin 101 | name 102 | 103 | Rk51bQ== 104 | 105 | type 106 | 107 | dWk4IA== 108 | 109 | value 110 | 111 | AA== 112 | 113 | 114 | 115 | attr 116 | 117 | gA== 118 | 119 | comment 120 | CPU plimit 121 | name 122 | 123 | TVNUYw== 124 | 125 | type 126 | 127 | dWk4IA== 128 | 129 | value 130 | 131 | AA== 132 | 133 | 134 | 135 | attr 136 | 137 | gA== 138 | 139 | comment 140 | FAN plimit (supposedly) 141 | name 142 | 143 | TVNUZg== 144 | 145 | type 146 | 147 | dWk4IA== 148 | 149 | value 150 | 151 | AA== 152 | 153 | 154 | 155 | attr 156 | 157 | gA== 158 | 159 | comment 160 | Memory plimit 161 | name 162 | 163 | TVNUbQ== 164 | 165 | type 166 | 167 | dWk4IA== 168 | 169 | value 170 | 171 | AA== 172 | 173 | 174 | 175 | attr 176 | 177 | gA== 178 | 179 | comment 180 | This should be 1 on laptops, and is overriden by sensors 181 | name 182 | 183 | QkFUUA== 184 | 185 | type 186 | 187 | ZmxhZw== 188 | 189 | value 190 | 191 | AA== 192 | 193 | 194 | 195 | attr 196 | 197 | gA== 198 | 199 | comment 200 | Only MacPros have custom illumination controllers 201 | name 202 | 203 | THNOTQ== 204 | 205 | type 206 | 207 | dWk4IA== 208 | 209 | value 210 | 211 | AA== 212 | 213 | 214 | 215 | GenericDesktopV1 216 | 217 | GenericDesktopV2 218 | 219 | GenericLaptopV1 220 | 221 | GenericLaptopV2 222 | 223 | GenericV1 224 | 225 | 226 | attr 227 | 228 | gA== 229 | 230 | comment 231 | GPU plimit 232 | name 233 | 234 | TVNUZw== 235 | 236 | type 237 | 238 | dWk4IA== 239 | 240 | value 241 | 242 | AA== 243 | 244 | 245 | 246 | GenericV2 247 | 248 | 249 | attr 250 | 251 | gA== 252 | 253 | comment 254 | E plimit (???) 255 | name 256 | 257 | TVNUZQ== 258 | 259 | type 260 | 261 | dWk4IA== 262 | 263 | value 264 | 265 | AA== 266 | 267 | 268 | 269 | attr 270 | 271 | gA== 272 | 273 | comment 274 | I plimit (???) 275 | name 276 | 277 | TVNUaQ== 278 | 279 | type 280 | 281 | dWk4IA== 282 | 283 | value 284 | 285 | AA== 286 | 287 | 288 | 289 | attr 290 | 291 | gA== 292 | 293 | comment 294 | J plimit (???) 295 | name 296 | 297 | TVNUag== 298 | 299 | type 300 | 301 | dWk4IA== 302 | 303 | value 304 | 305 | AA== 306 | 307 | 308 | 309 | 310 | ModelInfo 311 | 312 | GenericV1 313 | 314 | branch 315 | 316 | ajUyAAAAAAA= 317 | 318 | hwname 319 | 320 | c21jLXBpa2V0b24A 321 | 322 | platform 323 | 324 | ajUyAAAAAAA= 325 | 326 | rev 327 | 328 | AXQPAAAE 329 | 330 | revfb 331 | 332 | AXQPAAAE 333 | 334 | revfu 335 | 336 | AXQPAAAE 337 | 338 | 339 | GenericV2 340 | 341 | branch 342 | 343 | ajUyAAAAAAA= 344 | 345 | hwname 346 | 347 | c21jLWh1cm9ucml2ZXIA 348 | 349 | platform 350 | 351 | ajUyAAAAAAA= 352 | 353 | rev 354 | 355 | AigPAAAH 356 | 357 | revfb 358 | 359 | AigPAAAH 360 | 361 | revfu 362 | 363 | AigPAAAH 364 | 365 | 366 | GenericV3 367 | 368 | hwname 369 | 370 | c21jLWh1cm9ucml2ZXIA 371 | 372 | platform 373 | 374 | ajUyAAAAAAA= 375 | 376 | 377 | 378 | _STA 379 | 11 380 | name 381 | 382 | QVBQMDAwMQA= 383 | 384 | 385 | 386 | LSMinimumSystemVersion 387 | 10.6 388 | NSHumanReadableCopyright 389 | Copyright © 2017 vit9696. All rights reserved. 390 | OSBundleCompatibleVersion 391 | 1.0 392 | OSBundleLibraries 393 | 394 | as.vit9696.Lilu 395 | 1.2.0 396 | com.apple.iokit.IOACPIFamily 397 | 1.0.0d1 398 | com.apple.kpi.bsd 399 | 10.0.0 400 | com.apple.kpi.dsep 401 | 10.0.0 402 | com.apple.kpi.iokit 403 | 10.0.0 404 | com.apple.kpi.libkern 405 | 10.0.0 406 | com.apple.kpi.mach 407 | 10.0.0 408 | com.apple.kpi.unsupported 409 | 10.0.0 410 | 411 | OSBundleRequired 412 | Root 413 | 414 | 415 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G29 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 1.8.28, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.8.28 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.8.28 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | ACPI PS/2 Nub 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Controller 49 | IOClass 50 | AppleACPIPS2Nub 51 | IONameMatch 52 | 53 | PNP0303 54 | PNP030B 55 | PNP0320 56 | 57 | IOProviderClass 58 | IOACPIPlatformDevice 59 | MouseNameMatch 60 | 61 | PNP0F03 62 | PNP0F0B 63 | PNP0F0E 64 | PNP0F13 65 | 66 | 67 | ApplePS2Controller 68 | 69 | CFBundleIdentifier 70 | org.rehabman.voodoo.driver.PS2Controller 71 | IOClass 72 | ApplePS2Controller 73 | IONameMatch 74 | ps2controller 75 | IOProviderClass 76 | IOPlatformDevice 77 | Platform Profile 78 | 79 | Default 80 | 81 | MouseWakeFirst 82 | 83 | WakeDelay 84 | 10 85 | 86 | HPQOEM 87 | 88 | 1411 89 | ProBook 90 | 1619 91 | ProBook 92 | 161C 93 | ProBook 94 | 164F 95 | ProBook 96 | 167C 97 | ProBook 98 | 167E 99 | ProBook 100 | 1680 101 | ProBook 102 | 179B 103 | ProBook 104 | 179C 105 | ProBook 106 | 17A9 107 | ProBook 108 | 17F0 109 | ProBook 110 | 17F3 111 | ProBook 112 | 17F6 113 | ProBook 114 | 1942 115 | ProBook 116 | 1949 117 | ProBook 118 | 198F 119 | ProBook 120 | ProBook 121 | 122 | WakeDelay 123 | 0 124 | 125 | ProBook-102 126 | ProBook 127 | ProBook-87 128 | ProBook 129 | 130 | 131 | 132 | 133 | OSBundleCompatibleVersion 134 | 1.8.28 135 | OSBundleLibraries 136 | 137 | com.apple.iokit.IOACPIFamily 138 | 1.0.0d1 139 | com.apple.kpi.bsd 140 | 8.0.0 141 | com.apple.kpi.iokit 142 | 8.0.0 143 | com.apple.kpi.libkern 144 | 8.0.0 145 | com.apple.kpi.mach 146 | 8.0.0 147 | com.apple.kpi.unsupported 148 | 8.0.0 149 | 150 | OSBundleRequired 151 | Console 152 | Source Code 153 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 154 | 155 | 156 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G29 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 1.8.28, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.8.28 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.8.28 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | ApplePS2Mouse 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Mouse 49 | HIDPointerAccelerationType 50 | HIDTrackpadAcceleration 51 | HIDScrollAccelerationType 52 | HIDTrackpadScrollAcceleration 53 | IOClass 54 | ApplePS2Mouse 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | ActLikeTrackpad 62 | 63 | ButtonCount 64 | 3 65 | DefaultResolution 66 | 240 67 | DisableDevice 68 | 69 | DisableLEDUpdating 70 | 71 | FakeMiddleButton 72 | 73 | ForceDefaultResolution 74 | 75 | ForceSetResolution 76 | 77 | MiddleClickTime 78 | 100000000 79 | MouseCount 80 | 0 81 | MouseYInverter 82 | 1 83 | QuietTimeAfterTyping 84 | 500000000 85 | ResolutionMode 86 | 3 87 | ScrollResolution 88 | 5 89 | ScrollYInverter 90 | 1 91 | TrackpadScroll 92 | 93 | WakeDelay 94 | 1000 95 | 96 | HPQOEM 97 | 98 | 1411 99 | ProBook 100 | 1619 101 | ProBook 102 | 161C 103 | ProBook 104 | 164F 105 | ProBook 106 | 167C 107 | ProBook 108 | 167E 109 | ProBook 110 | 1680 111 | ProBook 112 | 179B 113 | ProBook 114 | 179C 115 | ProBook 116 | 17A9 117 | ProBook 118 | 17F0 119 | ProBook 120 | 17F3 121 | ProBook 122 | 17F6 123 | ProBook 124 | 1942 125 | ProBook 126 | 1949 127 | ProBook 128 | 198F 129 | ProBook 130 | ProBook 131 | 132 | ActLikeTrackpad 133 | 134 | DisableDevice 135 | 136 | 137 | ProBook-102 138 | ProBook 139 | ProBook-87 140 | ProBook 141 | 142 | 143 | ProductID 144 | 547 145 | USBMouseStopsTrackpad 146 | 0 147 | VendorID 148 | 1452 149 | 150 | 151 | OSBundleLibraries 152 | 153 | com.apple.iokit.IOHIDFamily 154 | 1.0.0b1 155 | com.apple.kpi.iokit 156 | 9.0.0 157 | com.apple.kpi.libkern 158 | 9.0.0 159 | com.apple.kpi.mach 160 | 9.0.0 161 | org.rehabman.voodoo.driver.PS2Controller 162 | 1.8.28 163 | 164 | OSBundleRequired 165 | Console 166 | Source Code 167 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 168 | 169 | 170 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 16G29 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 1.8.28, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | org.rehabman.voodoo.driver.PS2Trackpad 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Trackpad 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.8.28 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.8.28 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 8E3004b 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 12D75 37 | DTSDKName 38 | macosx10.8 39 | DTXcode 40 | 0833 41 | DTXcodeBuild 42 | 8E3004b 43 | IOKitPersonalities 44 | 45 | ALPS GlidePoint 46 | 47 | CFBundleIdentifier 48 | org.rehabman.voodoo.driver.PS2Trackpad 49 | IOClass 50 | ApplePS2ALPSGlidePoint 51 | IOProbeScore 52 | 1500 53 | IOProviderClass 54 | ApplePS2MouseDevice 55 | Platform Profile 56 | 57 | Default 58 | 59 | DisableDevice 60 | 61 | 62 | HPQOEM 63 | 64 | 1411 65 | ProBook 66 | 1619 67 | ProBook 68 | 161C 69 | ProBook 70 | 164F 71 | ProBook 72 | 167C 73 | ProBook 74 | 167E 75 | ProBook 76 | 1680 77 | ProBook 78 | 179B 79 | ProBook 80 | 179C 81 | ProBook 82 | 17A9 83 | ProBook 84 | 17F0 85 | ProBook 86 | 17F3 87 | ProBook 88 | 17F6 89 | ProBook 90 | 1942 91 | ProBook 92 | 1949 93 | ProBook 94 | 198F 95 | ProBook 96 | ProBook 97 | 98 | DisableDevice 99 | 100 | 101 | ProBook-102 102 | ProBook 103 | ProBook-87 104 | ProBook 105 | 106 | 107 | 108 | Sentelic FSP 109 | 110 | CFBundleIdentifier 111 | org.rehabman.voodoo.driver.PS2Trackpad 112 | IOClass 113 | ApplePS2SentelicFSP 114 | IOProbeScore 115 | 5500 116 | IOProviderClass 117 | ApplePS2MouseDevice 118 | Platform Profile 119 | 120 | Default 121 | 122 | DisableDevice 123 | 124 | 125 | HPQOEM 126 | 127 | 1411 128 | ProBook 129 | 1619 130 | ProBook 131 | 161C 132 | ProBook 133 | 164F 134 | ProBook 135 | 167C 136 | ProBook 137 | 167E 138 | ProBook 139 | 1680 140 | ProBook 141 | 179B 142 | ProBook 143 | 179C 144 | ProBook 145 | 17A9 146 | ProBook 147 | 17F0 148 | ProBook 149 | 17F3 150 | ProBook 151 | 17F6 152 | ProBook 153 | 1942 154 | ProBook 155 | 1949 156 | ProBook 157 | 198F 158 | ProBook 159 | ProBook 160 | 161 | DisableDevice 162 | 163 | 164 | ProBook-102 165 | ProBook 166 | ProBook-87 167 | ProBook 168 | 169 | 170 | 171 | Synaptics TouchPad 172 | 173 | CFBundleIdentifier 174 | org.rehabman.voodoo.driver.PS2Trackpad 175 | HIDPointerAccelerationTable 176 | 177 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 178 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 179 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 180 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 181 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 182 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 183 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 184 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 185 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 186 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 187 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 188 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 189 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 190 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 191 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 192 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 193 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 194 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 195 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 196 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 197 | 198 | HIDPointerAccelerationType 199 | HIDTrackpadAcceleration 200 | HIDScrollAccelerationTable 201 | 202 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 203 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 204 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 205 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 206 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 207 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 208 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 209 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 210 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 211 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 212 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 213 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 214 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 215 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 216 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 217 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 218 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 219 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 220 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 221 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 222 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 223 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 224 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 225 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 226 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 227 | AAF8JGg= 228 | 229 | HIDScrollAccelerationType 230 | HIDTrackpadScrollAcceleration 231 | IOClass 232 | ApplePS2SynapticsTouchPad 233 | IOProbeScore 234 | 6000 235 | IOProviderClass 236 | ApplePS2MouseDevice 237 | Platform Profile 238 | 239 | Default 240 | 241 | BogusDeltaThreshX 242 | 0 243 | BogusDeltaThreshY 244 | 0 245 | ButtonCount 246 | 3 247 | CenterX 248 | 3000 249 | CenterY 250 | 3000 251 | CircularScrollDivisor 252 | 0 253 | CircularScrollTrigger 254 | 0 255 | ClickPadClickTime 256 | 300000000 257 | ClickPadTrackBoth 258 | 259 | Darwin 16.x 260 | 261 | ApplePreferenceCapability 262 | 263 | ApplePreferenceIdentifier 264 | com.apple.AppleMultitouchTrackpad 265 | MT Built-in 266 | 267 | MTHIDDevice 268 | 269 | SupportsGestureScrolling 270 | 271 | TrackpadEmbedded 272 | 273 | TrackpadFourFingerGestures 274 | 275 | TrackpadSecondaryClickCorners 276 | 277 | TrackpadThreeFingerDrag 278 | 279 | 280 | Darwin 17.x 281 | 282 | ApplePreferenceCapability 283 | 284 | ApplePreferenceIdentifier 285 | com.apple.AppleMultitouchTrackpad 286 | MT Built-in 287 | 288 | MTHIDDevice 289 | 290 | SupportsGestureScrolling 291 | 292 | TrackpadEmbedded 293 | 294 | TrackpadFourFingerGestures 295 | 296 | TrackpadSecondaryClickCorners 297 | 298 | TrackpadThreeFingerDrag 299 | 300 | 301 | DisableDevice 302 | 303 | DisableLEDUpdating 304 | 305 | DisableZoneBottom 306 | 4200 307 | DisableZoneControl 308 | 0 309 | DisableZoneLeft 310 | 0 311 | DisableZoneRight 312 | 1700 313 | DisableZoneTop 314 | 99999 315 | DivisorX 316 | 5 317 | DivisorY 318 | 5 319 | DoubleTapThresholdX 320 | 100 321 | DoubleTapThresholdY 322 | 100 323 | DragExitDelayTime 324 | 1000000000 325 | DragLockTempMask 326 | 1048592 327 | DynamicEWMode 328 | 329 | EdgeBottom 330 | 1700 331 | EdgeLeft 332 | 1700 333 | EdgeRight 334 | 5200 335 | EdgeTop 336 | 4200 337 | FakeMiddleButton 338 | 339 | FingerChangeIgnoreDeltas 340 | 3 341 | FingerZ 342 | 30 343 | HorizontalScrollDivisor 344 | 0 345 | ImmediateClick 346 | 347 | MaxDragTime 348 | 180000000 349 | MaxTapTime 350 | 130000000 351 | MiddleClickTime 352 | 100000000 353 | MomentumScrollDivisor 354 | 100 355 | MomentumScrollMultiplier 356 | 98 357 | MomentumScrollSamplesMin 358 | 3 359 | MomentumScrollThreshY 360 | 18 361 | MomentumScrollTimer 362 | 10000000 363 | MouseCount 364 | 0 365 | MouseMiddleScroll 366 | 367 | MouseMultiplierX 368 | 20 369 | MouseMultiplierY 370 | 20 371 | MouseScrollMultiplierX 372 | 20 373 | MouseScrollMultiplierY 374 | 20 375 | MultiFingerHorizontalDivisor 376 | 13 377 | MultiFingerVerticalDivisor 378 | 13 379 | MultiFingerWLimit 380 | 9 381 | QuietTimeAfterTyping 382 | 500000000 383 | Resolution 384 | 400 385 | RightClickZoneBottom 386 | 0 387 | RightClickZoneLeft 388 | 3800 389 | RightClickZoneRight 390 | 99999 391 | RightClickZoneTop 392 | 2000 393 | ScrollDeltaThreshX 394 | 0 395 | ScrollDeltaThreshY 396 | 0 397 | ScrollResolution 398 | 400 399 | SkipPassThrough 400 | 401 | SmoothInput 402 | 403 | StickyHorizontalScrolling 404 | 405 | StickyMultiFingerScrolling 406 | 407 | StickyVerticalScrolling 408 | 409 | SwapDoubleTriple 410 | 411 | SwipeDeltaX 412 | 800 413 | SwipeDeltaY 414 | 800 415 | TapThresholdX 416 | 50 417 | TapThresholdY 418 | 50 419 | USBMouseStopsTrackpad 420 | 0 421 | UnitsPerMMX 422 | 50 423 | UnitsPerMMY 424 | 50 425 | UnsmoothInput 426 | 427 | UseHighRate 428 | 429 | VerticalScrollDivisor 430 | 0 431 | WakeDelay 432 | 1000 433 | ZLimit 434 | 115 435 | ZoneBottom 436 | 0 437 | ZoneLeft 438 | 1700 439 | ZoneRight 440 | 5200 441 | ZoneTop 442 | 99999 443 | 444 | HPQOEM 445 | 446 | 1411 447 | ProBook 448 | 1619 449 | ProBook 450 | 161C 451 | ProBook 452 | 164F 453 | ProBook 454 | 167C 455 | ProBook 456 | 167E 457 | ProBook 458 | 1680 459 | ProBook 460 | 179B 461 | ProBook 462 | 179C 463 | ProBook 464 | 17A9 465 | ProBook 466 | 17F0 467 | ProBook 468 | 17F3 469 | ProBook 470 | 17F6 471 | ProBook 472 | 1942 473 | ProBook 474 | 1949 475 | ProBook 476 | 198F 477 | ProBook 478 | ProBook 479 | 480 | FingerZ 481 | 40 482 | 483 | ProBook-102 484 | ProBook 485 | ProBook-87 486 | ProBook 487 | 488 | 489 | ProductID 490 | 547 491 | VendorID 492 | 1452 493 | 494 | 495 | OSBundleLibraries 496 | 497 | com.apple.iokit.IOHIDSystem 498 | 1.0.0b1 499 | com.apple.kpi.iokit 500 | 9.0.0 501 | com.apple.kpi.libkern 502 | 9.0.0 503 | com.apple.kpi.mach 504 | 9.0.0 505 | org.rehabman.voodoo.driver.PS2Controller 506 | 1.8.28 507 | 508 | OSBundleRequired 509 | Console 510 | Source Code 511 | https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller 512 | 513 | 514 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.8 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 12.0.0 92 | com.apple.kpi.dsep 93 | 12.0.0 94 | com.apple.kpi.iokit 95 | 12.0.0 96 | com.apple.kpi.libkern 97 | 12.0.0 98 | com.apple.kpi.mach 99 | 12.0.0 100 | com.apple.kpi.unsupported 101 | 12.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/misc/.empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/banner.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/bg.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/font.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/cd_lin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/cd_lin.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/cd_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/cd_mac.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/cd_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/cd_win.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_about.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_clover.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_help.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_options.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_reset.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/func_shutdown.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_arch.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_clover.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_cougar.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_freebsd.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_legacy.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_leo.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_linux.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_lion.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_mac.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_recovery.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_snow.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_tiger.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_unknow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_unknow.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_vista.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_win.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/os_win8.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/pointer.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/pointer.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/tool_shell.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/tool_shell.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_clover.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_external.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_firewire.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_optical.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/icons/vol_recovery.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/options_anim/options_anim_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/options_anim/options_anim_000.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/options_anim/options_anim_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/options_anim/options_anim_001.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/screenshot.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/selection_big.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/selection_small.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Dell-RedPoint/sound.wav -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Dell-RedPoint/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | ClaudesTech 7 | Description 8 | Asus 9 | Theme 10 | 11 | Anime 12 | 13 | 14 | FrameTime 15 | 200 16 | Frames 17 | 2 18 | ID 19 | 4 20 | Path 21 | options_anim 22 | 23 | 24 | Background 25 | 26 | Path 27 | bg.png 28 | Type 29 | Scale 30 | 31 | Badges 32 | 33 | Inline 34 | 35 | Show 36 | 37 | Swap 38 | 39 | 40 | Banner 41 | banner.png 42 | Font 43 | 44 | CharWidth 45 | 10 46 | Path 47 | font.png 48 | Proportional 49 | 50 | Type 51 | Load 52 | 53 | Layout 54 | 55 | TextOffset 56 | -20 57 | 58 | Selection 59 | 60 | Big 61 | selection_big.png 62 | Color 63 | 0xFFFFFF80 64 | Small 65 | selection_small.png 66 | 67 | 68 | Year 69 | 2017 70 | 71 | 72 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/banner.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/banner.psd -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/bg.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/font.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/cd_lin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/cd_lin.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/cd_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/cd_mac.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/cd_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/cd_win.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/func_about.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/func_clover.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/func_help.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/func_options.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/func_reset.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/func_shutdown.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_arch.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_clover.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_cougar.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_freebsd.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_legacy.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_leo.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_linux.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_lion.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_mac.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_recovery.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_snow.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_tiger.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_unknow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_unknow.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_vista.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_win.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/os_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/os_win8.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/pointer.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/pointer.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/tool_shell.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/tool_shell.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_clover.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_external.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_firewire.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_optical.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/icons/vol_recovery.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/options_anim/options_anim_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/options_anim/options_anim_000.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/options_anim/options_anim_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/options_anim/options_anim_001.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/screenshot.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/selection_big.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/selection_small.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Lenovo/sound.wav -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Lenovo/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | ClaudesTech 7 | Description 8 | Asus 9 | Theme 10 | 11 | Anime 12 | 13 | 14 | FrameTime 15 | 200 16 | Frames 17 | 2 18 | ID 19 | 4 20 | Path 21 | options_anim 22 | 23 | 24 | Background 25 | 26 | Path 27 | bg.png 28 | Type 29 | Scale 30 | 31 | Badges 32 | 33 | Inline 34 | 35 | Show 36 | 37 | Swap 38 | 39 | 40 | Banner 41 | banner.png 42 | Font 43 | 44 | CharWidth 45 | 10 46 | Path 47 | font.png 48 | Proportional 49 | 50 | Type 51 | Load 52 | 53 | Layout 54 | 55 | TextOffset 56 | -20 57 | 58 | Selection 59 | 60 | Big 61 | selection_big.png 62 | Color 63 | 0xFFFFFF80 64 | Small 65 | selection_small.png 66 | 67 | 68 | Year 69 | 2017 70 | 71 | 72 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/banner.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/banner.psd -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/bg.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/font.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/cd_lin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/cd_lin.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/cd_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/cd_mac.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/cd_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/cd_win.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/func_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/func_about.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/func_clover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/func_clover.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/func_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/func_help.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/func_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/func_options.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/func_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/func_reset.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/func_shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/func_shutdown.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_arch.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_clover.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_cougar.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_cougar.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_freebsd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_freebsd.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_legacy.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_leo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_leo.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_linux.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_lion.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_lion.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_mac.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_recovery.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_snow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_snow.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_tiger.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_tiger.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_ubuntu.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_unknow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_unknow.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_vista.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_vista.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_win.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_win.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/os_win8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/os_win8.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/pointer.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/pointer.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/pointer.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/tool_shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/tool_shell.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/tool_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/tool_shell.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_clover.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_clover.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_external.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_external.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_firewire.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_firewire.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal_ext3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal_ext3.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal_hfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal_hfs.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal_ntfs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_internal_ntfs.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_optical.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_optical.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_recovery.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/icons/vol_recovery.icns -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/options_anim/options_anim_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/options_anim/options_anim_000.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/options_anim/options_anim_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/options_anim/options_anim_001.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/screenshot.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/selection_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/selection_big.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/selection_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/selection_small.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/Thinkpad/sound.wav -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/Thinkpad/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | ClaudesTech 7 | Description 8 | Asus 9 | Theme 10 | 11 | Anime 12 | 13 | 14 | FrameTime 15 | 200 16 | Frames 17 | 2 18 | ID 19 | 4 20 | Path 21 | options_anim 22 | 23 | 24 | Background 25 | 26 | Path 27 | bg.png 28 | Type 29 | Scale 30 | 31 | Badges 32 | 33 | Inline 34 | 35 | Show 36 | 37 | Swap 38 | 39 | 40 | Banner 41 | banner.png 42 | Font 43 | 44 | CharWidth 45 | 10 46 | Path 47 | font.png 48 | Proportional 49 | 50 | Type 51 | Load 52 | 53 | Layout 54 | 55 | TextOffset 56 | -20 57 | 58 | Selection 59 | 60 | Big 61 | selection_big.png 62 | Color 63 | 0xFFFFFF80 64 | Small 65 | selection_small.png 66 | 67 | 68 | Year 69 | 2017 70 | 71 | 72 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/embedded/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/embedded/screenshot.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/embedded/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | blackosx, clovy 7 | Description 8 | Embedded Theme 9 | Year 10 | 2018 11 | 12 | 13 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/logo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/logo_main.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/pointer-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/themes/pointer-metal.png -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/themes/random/theme.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Author 6 | Slice 7 | Description 8 | random choose a theme from others 9 | Year 10 | 2014 11 | 12 | 13 | -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /EFI/EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/BCD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/BCD -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/BCD.LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/BCD.LOG -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/BCD.LOG1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/BCD.LOG1 -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/BCD.LOG2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/BCD.LOG2 -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TM.blf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TM.blf -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TMContainer00000000000000000001.regtrans-ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/BCD{21d22456-d081-11ea-915f-99b8df73ff9c}.TMContainer00000000000000000001.regtrans-ms -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/bootmgfw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/bootmgfw.efi -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/bootmgr.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/bootmgr.efi -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/cs-CZ/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/cs-CZ/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/cs-CZ/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/cs-CZ/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/da-DK/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/da-DK/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/da-DK/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/da-DK/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/de-DE/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/de-DE/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/de-DE/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/de-DE/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/el-GR/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/el-GR/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/el-GR/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/el-GR/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/en-US/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/en-US/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/en-US/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/en-US/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/en-US/memtest.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/en-US/memtest.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/es-ES/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/es-ES/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/es-ES/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/es-ES/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/fi-FI/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/fi-FI/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/fi-FI/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/fi-FI/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/fr-FR/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/fr-FR/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/fr-FR/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/fr-FR/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/hu-HU/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/hu-HU/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/hu-HU/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/hu-HU/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/it-IT/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/it-IT/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/it-IT/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/it-IT/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/ja-JP/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/ja-JP/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/ja-JP/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/ja-JP/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/ko-KR/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/ko-KR/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/ko-KR/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/ko-KR/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/memtest.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/memtest.efi -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/nb-NO/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/nb-NO/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/nb-NO/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/nb-NO/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/nl-NL/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/nl-NL/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/nl-NL/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/nl-NL/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/pl-PL/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/pl-PL/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/pl-PL/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/pl-PL/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/pt-BR/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/pt-BR/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/pt-BR/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/pt-BR/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/pt-PT/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/pt-PT/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/pt-PT/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/pt-PT/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/ru-RU/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/ru-RU/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/ru-RU/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/ru-RU/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/sv-SE/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/sv-SE/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/sv-SE/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/sv-SE/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/tr-TR/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/tr-TR/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/tr-TR/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/tr-TR/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/zh-CN/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/zh-CN/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/zh-CN/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/zh-CN/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/zh-HK/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/zh-HK/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/zh-HK/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/zh-HK/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/zh-TW/bootmgfw.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/zh-TW/bootmgfw.efi.mui -------------------------------------------------------------------------------- /EFI/EFI/Microsoft/Boot/zh-TW/bootmgr.efi.mui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/EFI/Microsoft/Boot/zh-TW/bootmgr.efi.mui -------------------------------------------------------------------------------- /EFI/Library/Preferences/com.projectosx.clover.installer.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CloverRevision 6 | 5122 7 | InstalledThemes 8 | 9 | Lenovo 10 | Thinkpad 11 | random 12 | Dell-RedPoint 13 | embedded 14 | 15 | org.clover.bootloader.boot0af 16 | 17 | org.clover.cloverefi.64.sata 18 | 19 | org.clover.drivers64.apfsdriverloader 20 | 21 | org.clover.drivers64.mandatory.audiodxe 22 | 23 | org.clover.drivers64.mandatory.fsinject 24 | 25 | org.clover.drivers64.mandatory.smchelper 26 | 27 | org.clover.drivers64.mandatory.xhcidxe 28 | 29 | org.clover.drivers64uefi.apfsdriverloader.uefi 30 | 31 | org.clover.drivers64uefi.mandatory.audiodxe.uefi 32 | 33 | org.clover.drivers64uefi.mandatory.datahubdxe.uefi 34 | 35 | org.clover.drivers64uefi.mandatory.fsinject.uefi 36 | 37 | org.clover.drivers64uefi.mandatory.smchelper.uefi 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.biosboot.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.biosboot.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.biosboot.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.biosboot.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.bootloader.boot0af.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.bootloader.boot0af.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.bootloader.boot0af.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.bootloader.boot0af.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.cloverefi.64.sata.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.cloverefi.64.sata.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.cloverefi.64.sata.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.cloverefi.64.sata.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.apfsdriverloader.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.apfsdriverloader.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.apfsdriverloader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.apfsdriverloader.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.audiodxe.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.audiodxe.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.audiodxe.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.audiodxe.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.fsinject.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.fsinject.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.fsinject.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.fsinject.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.smchelper.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.smchelper.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.smchelper.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.smchelper.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.xhcidxe.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.xhcidxe.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64.mandatory.xhcidxe.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64.mandatory.xhcidxe.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.apfsdriverloader.uefi.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.apfsdriverloader.uefi.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.apfsdriverloader.uefi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.apfsdriverloader.uefi.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.audiodxe.uefi.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.audiodxe.uefi.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.audiodxe.uefi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.audiodxe.uefi.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.datahubdxe.uefi.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.datahubdxe.uefi.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.datahubdxe.uefi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.datahubdxe.uefi.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.fsinject.uefi.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.fsinject.uefi.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.fsinject.uefi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.fsinject.uefi.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.smchelper.uefi.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.smchelper.uefi.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.smchelper.uefi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.drivers64uefi.mandatory.smchelper.uefi.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.efifolder.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.efifolder.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.efifolder.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.efifolder.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.post.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.post.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.post.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.post.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.pre.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.pre.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.pre.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.pre.plist -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.utils.bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.utils.bom -------------------------------------------------------------------------------- /EFI/Library/Receipts/org.clover.utils.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/Library/Receipts/org.clover.utils.plist -------------------------------------------------------------------------------- /EFI/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/boot -------------------------------------------------------------------------------- /EFI/usr/local/bin/bdmesg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/local/bin/bdmesg -------------------------------------------------------------------------------- /EFI/usr/local/bin/boot1-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/local/bin/boot1-install -------------------------------------------------------------------------------- /EFI/usr/local/bin/espfinder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/local/bin/espfinder -------------------------------------------------------------------------------- /EFI/usr/local/bin/partutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/local/bin/partutil -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/Description.txt: -------------------------------------------------------------------------------- 1 | BootSectors: 2 | boot0af 3 | boot0ss 4 | boot1altV3 5 | boot1f32 6 | boot1f32alt 7 | boot1h 8 | boot1h2 9 | boot1x 10 | 11 | boot0af (boot0 Active First) - MBR sector that search for active partition in MBR table (then GPT table). Origin from Apple's boot132 project. This version of boot0af implements hybrid GUID/MBR partition scheme support. Written by Tamás Kosárszky on 2008-03-10 12 | 13 | boot0ss (boot0 Signature Scanning) - MBR sector that search for partition with valid PBR signature regardless if it's active or not. Good for Windows that wants to have its partition active. It share the same code as boot0af. Only scanning is done in different order. Written by JrCs on 2013-05-08. 14 | 15 | boot1h - PBR sector for HFS+ formatted partition. Search for file "boot" in the root of the partiton. Origin from Apple's boot132 project. Written by Tamás Kosárszky on 2008-04-14. This is mod by Slice to support large boot file. Not 440kb as origin but 472k needed to boot Clover-64. 16 | 17 | boot1h2 - PBR sector for HFS+ formatted partition with alternative booting with choice of key pressed. File to boot = "boot{key}". Coded by dmazar based on boot1h. 18 | 19 | boot1f32 - PBR sector for FAT32 formatted partition. Search for file "boot" in the root of the partiton. Useful for EFI partition or USB stick. Written by mackerintel on 2009-01-26. 20 | 21 | boot1f32alt - PBR sector for FAT32 formatted partition with alternative booting with choice of key pressed. File to boot = "boot{key}". Modded by Slice based on 22 | boot1f32 and boot1h2. 23 | 24 | boot1x - PBR sector for exFat formatted partition. Search for file "boot" in the root of the partiton. Useful for EFI partition or USB stick. Written by Zenith432 on 2014-11-19. 25 | -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/Installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/Installation.txt -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot0af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot0af -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot0ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot0ss -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot1f32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot1f32 -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot1f32alt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot1f32alt -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot1h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot1h -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot1h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot1h2 -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot1x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot1x -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/boot1xalt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/boot1xalt -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/x64/boot6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/x64/boot6 -------------------------------------------------------------------------------- /EFI/usr/standalone/i386/x64/boot7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/EFI/usr/standalone/i386/x64/boot7 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Thinkpad-X201-Hackintosh-Catalina 2 | 3 | ![Thinkpad X201 i7 Catalina OS hackintosh](/Thinkpad-X201-i7-Catalina-OS-hackintosh.JPG) 4 | 5 | 6 | ======= 7 | ** Please note ** - This repo uses Clover and is for Catalina. I strongly suggest taking a look at [jtaczanowski](https://github.com/jtaczanowski)'s OpenCore EFI for the X201, capable of running Big Sur! [See the project here](https://github.com/jtaczanowski/ThinkPad-X201-Arrandale-macOS-OpenCore) 8 | 9 | I have successfully installed Catalina on my ThinkPad X201. Previously I was running High Sierra, Catalina was around the same amount of work to get running, but the Graphics are much better even without metal support. For High Sierra, I had to inject drivers for the graphics card to get things to render, but there would still be artifacting and glitches. Catalina graphics runs perfect on the X201 with full QE/CI acceleration thanks to ASentientBot's kext patches and dosdude1 Catalina patcher. 10 | 11 | I have my machine set to dual boot with Windows 7 on a partitioned SSD. The X201 does not have UEFI support, so the SMB partitions are all handled by clover installed to the main drive. 12 | 13 | ## Spec ## 14 | 15 | - Intel® Core™ I7 processor I7-640LM (2.13 GHz) with dual-core 16 | - High Definition (HD) Audio 17 | - Conexant 20585 codec 18 | - Volume up, down, and mute buttons 19 | - Microphone input jack 20 | - Headphone jack 21 | 22 | ## Wifi ## 23 | 24 | You can use built in Intel Wifi card with AirportItlwm.kext (included) 25 | 26 | The OEM wifi card will not work in Windows 7. I first upgraded to an Atheros AR9285 which worked natively in both Windows and OS, but it was noticably slower and lack of 5ghz support. I then upgraded to a BroadCom BCM94360HMB which is lighting fast! For Windows, you need to install the Asus AW-CMB160H drivers for it to work, it is not plug and play in Windows. For the antenna connectors, this card uses the new IPEX 4 smaller connectors. If you want to use the built in Thinkpad X201 antennas, you can fit IPEX-4 Female to IPEX-1 adaptors. There's a third antenna too which I fitted a simple IPEX 4 aerial although this is not necessary. I highly recommend the BroadCom AW-CB160 BCM94360HMB it's a very impressive wifi card, and with the SSD installed it's now a very quick machine. 27 | 28 | To install this wireless card, we need to inject a new BIOS into X201. It's very easy! Please refer to the following blog: 29 | 30 | > https://li-aaron.github.io/2020/02/thinkpadx201i-refresh-2/ 31 | 32 | ## Working ## 33 | 34 | - Upgrades successfully to Catalina 10.15.7 35 | - Volume control buttons 36 | - Built in Bluetooth 37 | - Brightness controls & all keyboard shortcuts 38 | - Sound & Mic 39 | - Webcam 40 | - Bluetooth 41 | 42 | ## Not yet working: ## 43 | 44 | Sleep - working on this! It's very fast to just shut down and boot back up again with the SSD. I can either get it to sleep but the screen doesn't turn off. I have tried the darkwake options but I need to do further investigation. 45 | 46 | ## Screen resolution ## 47 | 48 | There are a couple of different screen resolutions for the thinkpads, mine is set to ~1440x900~ - update, I now have the 1280x800 resolution this is set in the config.plist (or edit with Clover Configurator). 49 | 50 | ## Instructions ## 51 | 52 | 1) Download the repo 53 | 2) Open config.plist in Clover Configurator. 54 | 3) Set your SMBIOS to MacbookPro 9,2 and generate new UUID/Motherboard ID/System ID/Serials etc. 55 | 56 | I will add more instructions to this repo if anyone finds this useful? Does anyone need dual boot instructions for Catalina and Windows 7 - that was quite tricky to get working! 57 | 58 | ## Installation ## 59 | 60 | 1) Use dosdude's Catalina Patcher app for creating bootable usb installer with post install patches (rolling back deprecated graphics kexts, OpenGL frameworks, platform patch, etc) 61 | 1) After the installation media is created, install clover (v5107 is recommended) into the installation media. Check the following in the installer: 62 | 1) `clover EFI 64-bits SATA` 63 | 2) `Boot Sectors -> Install boot0af in MBR` 64 | 2) After the installation is complete, add the kexts in `./EFI/CLOVER/kexts/Other` to the same path in installation media and replace `config.plist` by the file with same name in this repo, or you can simply replace the entire `EFI` folder with a folder of the same name in this repo. 65 | 3) (optional, but recommended) Use clover configurator to generate new SMBIOS content, such as serial number 66 | 4) Use a tool like clover configurator to check the `EFI` volume in installation media. It should be empty, we just need to confirm its existence, no need to do anything. 67 | 2) Install OS 68 | 1) It is normal for the words "Installation failed" to appear after the progress bar is completed. Please continue the installation according to the normal process. 69 | 70 | 71 | 72 | 73 | After the steps above, although there are still problems, we already have an x201 with macOS10.15 installed. After testing, these steps are also effective for 10.14. 74 | 75 | ## Enabling QE/CI graphics acceleration 76 | 77 | The following content is mainly used to solve the graphics driver problem. 78 | 79 | 1) After OS is installed, run usb installer to apply post install patches (kext, frameworks). 80 | * Select custom patches selection - for MacBookPro6,1 (which similar to x201 has arrandale CPU/GPU) 81 | * Select only "Legacy Video Card Patch" and "SIP Disabler Patch" 82 | 2) After patches installation (but before reboot), select "Force Cache Rebuild". 83 | * Important note: If you don't select "Force Cache Rebuild", system will reboot automatically after 10s. 84 | 3) Remove entry Devices->FakeID->IntelGfx 0x12345678 85 | 4) Boot MacOS, full QE/CI acceleration should working. 86 | 87 | Inspired by Badruzeus post on [insanelymac](https://www.insanelymac.com/forum/topic/286092-guide-1st-generation-intel-hd-graphics-qeci/?do=findComment&comment=2732732) 88 | 89 | Thinkpad-X201-i7-Catalina-OS-Arrandale-Acceleration 90 | 91 | ## Important ## 92 | 93 | Kexts can be updated, but don't update VooDooPS2Controller. If you update this, the central red ThinkPad mouse button is no longer supported. Touch features all work, two finger scrolling etc. 94 | 95 | ## Thanks ## 96 | 97 | Big thanks to [jtaczanowski](https://github.com/jtaczanowski) for his graphic acceleration contributions! -------------------------------------------------------------------------------- /Thinkpad-X201-i7-Catalina-OS-Arrandale-Acceleration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/Thinkpad-X201-i7-Catalina-OS-Arrandale-Acceleration.jpg -------------------------------------------------------------------------------- /Thinkpad-X201-i7-Catalina-OS-hackintosh.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesfawcett/Thinkpad-X201-Hackintosh-Catalina/b27ae768133902194810f6da6d8f5c5df27e4662/Thinkpad-X201-i7-Catalina-OS-hackintosh.JPG --------------------------------------------------------------------------------