├── Docs ├── ss1.png ├── ss2.png ├── ss3.png ├── ss4.png ├── ss5.png ├── ss6.png ├── usb-port-map.png └── internal-usb-port-map.png ├── SSDT ├── DSDT.aml ├── SSDT-EC.aml ├── SSDT-HPET.aml ├── SSDT-PLUG.aml ├── SSDT-UIAC.aml ├── SSDT-EC-USBX.aml ├── BENİ OKU ÖNEMLİ.rtf ├── SSDT-EC-USBX.dsl ├── SSDT-UIAC.dsl └── USBPorts.kext │ └── Contents │ └── Info.plist ├── EFI ├── BOOT │ └── BOOTx64.efi ├── OC │ ├── OpenCore.efi │ ├── Tools │ │ ├── RtcRw.efi │ │ ├── ChipTune.efi │ │ ├── GopStop.efi │ │ ├── MmapDump.efi │ │ ├── BootKicker.efi │ │ ├── CleanNvram.efi │ │ ├── KeyTester.efi │ │ ├── OpenShell.efi │ │ ├── HdaCodecDump.efi │ │ ├── OpenControl.efi │ │ ├── ResetSystem.efi │ │ └── VerifyMsrE2.efi │ ├── ACPI │ │ ├── SSDT-AWAC.aml │ │ ├── SSDT-EC.aml │ │ ├── SSDT-HPET.aml │ │ ├── SSDT-PLUG.aml │ │ ├── SSDT-PMC.aml │ │ ├── SSDT-UIAC.aml │ │ ├── SSDT-EC-USBX.aml │ │ ├── SSDT-PLUG-XCPM.aml │ │ └── SSDT-PLUG-DRTNIA.aml │ ├── Drivers │ │ ├── AudioDxe.efi │ │ ├── HfsPlus.efi │ │ ├── XhciDxe.efi │ │ ├── HiiDatabase.efi │ │ ├── OpenCanopy.efi │ │ ├── OpenRuntime.efi │ │ ├── Ps2MouseDxe.efi │ │ ├── UsbMouseDxe.efi │ │ ├── NvmExpressDxe.efi │ │ ├── OpenUsbKbDxe.efi │ │ ├── CrScreenshotDxe.efi │ │ └── Ps2KeyboardDxe.efi │ ├── Bootstrap │ │ └── Bootstrap.efi │ ├── Kexts │ │ ├── Lilu.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── Lilu │ │ │ │ └── Info.plist │ │ ├── AppleALC.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── AppleALC │ │ ├── NVMeFix.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── NVMeFix │ │ │ │ └── Info.plist │ │ ├── FakePCIID.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── FakePCIID │ │ │ │ └── Info.plist │ │ ├── SMCSuperIO.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── SMCSuperIO │ │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VirtualSMC │ │ │ │ └── Info.plist │ │ ├── SMCProcessor.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── SMCProcessor │ │ │ │ └── Info.plist │ │ ├── USBInjectAll.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── USBInjectAll │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── WhateverGreen.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── WhateverGreen │ │ │ │ └── Info.plist │ │ ├── kXAudioDriver.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── kXAudioDriver │ │ │ │ └── Info.plist │ │ ├── FakePCIID_Intel_I225-V.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ ├── FakePCIID_Intel_HDMI_Audio.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ └── USBPorts.kext │ │ │ └── Contents │ │ │ └── Info.plist │ └── config.plist └── APPLE │ └── FIRMWARE │ └── IM191.fd └── README.md /Docs/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/ss1.png -------------------------------------------------------------------------------- /Docs/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/ss2.png -------------------------------------------------------------------------------- /Docs/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/ss3.png -------------------------------------------------------------------------------- /Docs/ss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/ss4.png -------------------------------------------------------------------------------- /Docs/ss5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/ss5.png -------------------------------------------------------------------------------- /Docs/ss6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/ss6.png -------------------------------------------------------------------------------- /SSDT/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/SSDT/DSDT.aml -------------------------------------------------------------------------------- /SSDT/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/SSDT/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /SSDT/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/SSDT/SSDT-HPET.aml -------------------------------------------------------------------------------- /SSDT/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/SSDT/SSDT-PLUG.aml -------------------------------------------------------------------------------- /SSDT/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/SSDT/SSDT-UIAC.aml -------------------------------------------------------------------------------- /Docs/usb-port-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/usb-port-map.png -------------------------------------------------------------------------------- /EFI/OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /SSDT/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/SSDT/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-PMC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-UIAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-UIAC.aml -------------------------------------------------------------------------------- /EFI/OC/Tools/ChipTune.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/ChipTune.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/GopStop.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/GopStop.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/MmapDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/MmapDump.efi -------------------------------------------------------------------------------- /EFI/APPLE/FIRMWARE/IM191.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/APPLE/FIRMWARE/IM191.fd -------------------------------------------------------------------------------- /EFI/OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/XhciDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/XhciDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/BootKicker.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/BootKicker.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /Docs/internal-usb-port-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/Docs/internal-usb-port-map.png -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG-XCPM.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG-XCPM.aml -------------------------------------------------------------------------------- /EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HiiDatabase.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/HiiDatabase.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/Ps2MouseDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/Ps2MouseDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/UsbMouseDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/UsbMouseDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/HdaCodecDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/HdaCodecDump.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/VerifyMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Tools/VerifyMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG-DRTNIA.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG-DRTNIA.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/NvmExpressDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/NvmExpressDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenUsbKbDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/OpenUsbKbDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/CrScreenshotDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/CrScreenshotDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/Ps2KeyboardDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Drivers/Ps2KeyboardDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID.kext/Contents/MacOS/FakePCIID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/FakePCIID.kext/Contents/MacOS/FakePCIID -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/Kexts/kXAudioDriver.kext/Contents/MacOS/kXAudioDriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/HEAD/EFI/OC/Kexts/kXAudioDriver.kext/Contents/MacOS/kXAudioDriver -------------------------------------------------------------------------------- /SSDT/BENİ OKU ÖNEMLİ.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1254\cocoartf2513 2 | \cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;} 3 | {\colortbl;\red255\green255\blue255;} 4 | {\*\expandedcolortbl;;} 5 | \paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0 6 | \pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0 7 | 8 | \f0\fs24 \cf0 Sadece SMBIOS 19,2 de \'e7al\uc0\u305 \u351 \u305 r. - Only work with 19,2 SMBIOS\ 9 | \ 10 | \pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0 11 | 12 | \f1\b \cf0 Hackintool i\'e7erisinde USBMAP i\'e7in olu\uc0\u351 turulan dosyalar 13 | \f0\b0 \ 14 | SSDT-EC-USBX\ 15 | SSDT-UIAC\ 16 | USBPorts.kex\ 17 | \ 18 | 19 | \f1\b SSDTTime ile Windows t\'fcm s\'fcr\'fcc\'fcler y\'fckl\'fcyken olu\uc0\u351 turulan dosyalar.\ 20 | 21 | \f0\b0 DSDT.aml\ 22 | SSDT-EC.aml\ 23 | SSDT-HPET.aml\ 24 | SSDT-PLUG.aml} -------------------------------------------------------------------------------- /SSDT/SSDT-EC-USBX.dsl: -------------------------------------------------------------------------------- 1 | DefinitionBlock ("", "SSDT", 2, "ACDT", "SsdtEC", 0) 2 | { 3 | External (_SB_.PCI0.LPCB, DeviceObj) 4 | 5 | Scope (\_SB) 6 | { 7 | Device (USBX) 8 | { 9 | Name (_ADR, Zero) // _ADR: Address 10 | Method (_DSM, 4, NotSerialized) // _DSM: Device-Specific Method 11 | { 12 | If ((Arg2 == Zero)) 13 | { 14 | Return (Buffer (One) 15 | { 16 | 0x03 // . 17 | }) 18 | } 19 | 20 | Return (Package (0x08) 21 | { 22 | "kUSBSleepPowerSupply", 23 | 0x13EC, 24 | "kUSBSleepPortCurrentLimit", 25 | 0x0834, 26 | "kUSBWakePowerSupply", 27 | 0x13EC, 28 | "kUSBWakePortCurrentLimit", 29 | 0x0834 30 | }) 31 | } 32 | } 33 | 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID_Intel_I225-V.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleIdentifier 8 | org.rehabman.injector.FakePCIID_Intel_I225-V 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | FakePCIID_Intel_I225-V 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.3.15 17 | CFBundleSupportedPlatforms 18 | 19 | MacOSX 20 | 21 | CFBundleVersion 22 | 1.3.15 23 | DTCompiler 24 | com.apple.compilers.llvm.clang.1_0 25 | DTPlatformBuild 26 | 9F2000 27 | DTPlatformVersion 28 | GM 29 | DTSDKBuild 30 | 10M2518 31 | DTSDKName 32 | macosx10.6 33 | DTXcode 34 | 0941 35 | DTXcodeBuild 36 | 9F2000 37 | IOKitPersonalities 38 | 39 | Intel I225-V 40 | 41 | CFBundleIdentifier 42 | org.rehabman.driver.FakePCIID 43 | FakeProperties 44 | 45 | RM,device-id 46 | 8hUAAA== 47 | 48 | IOClass 49 | FakePCIID 50 | IOMatchCategory 51 | FakePCIID 52 | IOPCIPrimaryMatch 53 | 0x15f28086 54 | IOProviderClass 55 | IOPCIDevice 56 | 57 | 58 | OSBundleRequired 59 | Root 60 | Source Code 61 | https://github.com/RehabMan/FakePCIID 62 | 63 | 64 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FakePCIID 11 | CFBundleIdentifier 12 | org.rehabman.driver.FakePCIID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakePCIID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.15 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.15 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 10M2518 37 | DTSDKName 38 | macosx10.6 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | OSBundleCompatibleVersion 44 | 1.3.15 45 | OSBundleLibraries 46 | 47 | com.apple.iokit.IOPCIFamily 48 | 1.0.0b1 49 | com.apple.kpi.bsd 50 | 8.0.0 51 | com.apple.kpi.iokit 52 | 8.0.0 53 | com.apple.kpi.libkern 54 | 8.0.0 55 | com.apple.kpi.mach 56 | 8.0.0 57 | com.apple.kpi.unsupported 58 | 8.0.0 59 | 60 | OSBundleRequired 61 | Root 62 | Source Code 63 | https://github.com/RehabMan/FakePCIID 64 | 65 | 66 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/kXAudioDriver.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14C109 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | kXAudioDriver 11 | CFBundleIdentifier 12 | com.kXProject.driver.kXAudioDriver 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 2.00b0 21 | DTCompiler 22 | com.apple.compilers.llvm.clang.1_0 23 | DTPlatformBuild 24 | 6A2008a 25 | DTPlatformVersion 26 | GM 27 | DTSDKBuild 28 | 14A382 29 | DTSDKName 30 | macosx10.10 31 | DTXcode 32 | 0611 33 | DTXcodeBuild 34 | 6A2008a 35 | IOKitPersonalities 36 | 37 | kXAudioDriver 38 | 39 | CFBundleIdentifier 40 | com.kXProject.driver.kXAudioDriver 41 | IOClass 42 | com_kXProject_driver_kXAudioDriver 43 | IOPCIMatch 44 | 0x00021102 0x00041102 0x00081102 45 | IOProviderClass 46 | IOPCIDevice 47 | IOUserClientClass 48 | com_kXProject_driver_kXUserClient 49 | 50 | 51 | OSBundleLibraries 52 | 53 | com.apple.iokit.IOAudioFamily 54 | 1.5 55 | com.apple.iokit.IOPCIFamily 56 | 1.0.0b1 57 | com.apple.kpi.bsd 58 | 8.0 59 | com.apple.kpi.iokit 60 | 8.0 61 | com.apple.kpi.libkern 62 | 8.0 63 | com.apple.kpi.mach 64 | 8.0 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.5 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.5 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NVMeFix 11 | CFBundleIdentifier 12 | org.acidanthera.NVMeFix 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NVMeFix 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.2 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.2 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 41 | IOKitPersonalities 42 | 43 | org.acidanthera.NVMeFix 44 | 45 | CFBundleIdentifier 46 | org.acidanthera.NVMeFix 47 | IOClass 48 | NVMeFix 49 | IOMatchCategory 50 | NVMeFix 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | NSHumanReadableCopyright 58 | Copyright © 2019 acidanthera. All rights reserved. 59 | OSBundleCompatibleVersion 60 | 1.0 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.4.1 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ru.joedm.SMCSuperIO 46 | 47 | CFBundleIdentifier 48 | ru.joedm.SMCSuperIO 49 | IOClass 50 | SMCSuperIO 51 | IOMatchCategory 52 | SMCSuperIO 53 | IOPCIClassMatch 54 | 0x06010000&0xffff0000 55 | IOProviderClass 56 | IOPCIDevice 57 | IOResourceMatch 58 | ACPI 59 | 60 | 61 | NSHumanReadableCopyright 62 | Copyright © 2018 joedm. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 12.0.0 75 | com.apple.kpi.dsep 76 | 12.0.0 77 | com.apple.kpi.iokit 78 | 12.0.0 79 | com.apple.kpi.libkern 80 | 12.0.0 81 | com.apple.kpi.mach 82 | 12.0.0 83 | com.apple.kpi.unsupported 84 | 12.0.0 85 | 86 | OSBundleRequired 87 | Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.SMCProcessor 46 | 47 | CFBundleIdentifier 48 | as.vit9696.SMCProcessor 49 | IOClass 50 | SMCProcessor 51 | IOMatchCategory 52 | SMCProcessor 53 | IONameMatch 54 | processor 55 | IOPropertyMatch 56 | 57 | processor-index 58 | 0 59 | 60 | IOProviderClass 61 | IOACPIPlatformDevice 62 | IOResourceMatch 63 | ACPI 64 | 65 | 66 | NSHumanReadableCopyright 67 | Copyright © 2018 vit9696. All rights reserved. 68 | OSBundleCompatibleVersion 69 | 1.0 70 | OSBundleLibraries 71 | 72 | as.vit9696.Lilu 73 | 1.2.0 74 | as.vit9696.VirtualSMC 75 | 1.0.0 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.bsd 79 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /SSDT/SSDT-UIAC.dsl: -------------------------------------------------------------------------------- 1 | DefinitionBlock ("", "SSDT", 2, "ACDT", "_UIAC", 0) 2 | { 3 | Device(UIAC) 4 | { 5 | Name(_HID, "UIA00000") 6 | 7 | Name(RMCF, Package() 8 | { 9 | // XHC (8086_06ed) 10 | "XHC", Package() 11 | { 12 | "port-count", Buffer() { 0x1A, 0x00, 0x00, 0x00 }, 13 | "ports", Package() 14 | { 15 | "HS04", Package() 16 | { 17 | "name", Buffer() { "HS04" }, 18 | "UsbConnector", 9, 19 | "port", Buffer() { 0x04, 0x00, 0x00, 0x00 }, 20 | }, 21 | "HS07", Package() 22 | { 23 | "name", Buffer() { "HS07" }, 24 | "UsbConnector", 3, 25 | "port", Buffer() { 0x07, 0x00, 0x00, 0x00 }, 26 | }, 27 | "HS08", Package() 28 | { 29 | "name", Buffer() { "HS08" }, 30 | "UsbConnector", 3, 31 | "port", Buffer() { 0x08, 0x00, 0x00, 0x00 }, 32 | }, 33 | "HS09", Package() 34 | { 35 | "name", Buffer() { "HS09" }, 36 | "UsbConnector", 3, 37 | "port", Buffer() { 0x09, 0x00, 0x00, 0x00 }, 38 | }, 39 | "HS10", Package() 40 | { 41 | "name", Buffer() { "HS10" }, 42 | "UsbConnector", 3, 43 | "port", Buffer() { 0x0A, 0x00, 0x00, 0x00 }, 44 | }, 45 | "HS12", Package() 46 | { 47 | "name", Buffer() { "HS12" }, 48 | "UsbConnector", 0, 49 | "port", Buffer() { 0x0C, 0x00, 0x00, 0x00 }, 50 | }, 51 | "HS13", Package() 52 | { 53 | "name", Buffer() { "HS13" }, 54 | "UsbConnector", 0, 55 | "port", Buffer() { 0x0D, 0x00, 0x00, 0x00 }, 56 | }, 57 | "SS01", Package() 58 | { 59 | "name", Buffer() { "SS01" }, 60 | "UsbConnector", 3, 61 | "port", Buffer() { 0x11, 0x00, 0x00, 0x00 }, 62 | }, 63 | "SS02", Package() 64 | { 65 | "name", Buffer() { "SS02" }, 66 | "UsbConnector", 3, 67 | "port", Buffer() { 0x12, 0x00, 0x00, 0x00 }, 68 | }, 69 | "SS03", Package() 70 | { 71 | "name", Buffer() { "SS03" }, 72 | "UsbConnector", 3, 73 | "port", Buffer() { 0x13, 0x00, 0x00, 0x00 }, 74 | }, 75 | "SS04", Package() 76 | { 77 | "name", Buffer() { "SS04" }, 78 | "UsbConnector", 9, 79 | "port", Buffer() { 0x14, 0x00, 0x00, 0x00 }, 80 | }, 81 | "SS07", Package() 82 | { 83 | "name", Buffer() { "SS07" }, 84 | "UsbConnector", 3, 85 | "port", Buffer() { 0x17, 0x00, 0x00, 0x00 }, 86 | }, 87 | "SS09", Package() 88 | { 89 | "name", Buffer() { "SS09" }, 90 | "UsbConnector", 3, 91 | "port", Buffer() { 0x19, 0x00, 0x00, 0x00 }, 92 | }, 93 | "SS10", Package() 94 | { 95 | "name", Buffer() { "SS10" }, 96 | "UsbConnector", 3, 97 | "port", Buffer() { 0x1A, 0x00, 0x00, 0x00 }, 98 | }, 99 | }, 100 | }, 101 | }) 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID_Intel_HDMI_Audio.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleIdentifier 8 | org.rehabman.injector.FakePCIID-Intel-HDMI-Audio 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | FakePCIID_Intel_HDMI_Audio 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.3.15 17 | CFBundleSupportedPlatforms 18 | 19 | MacOSX 20 | 21 | CFBundleVersion 22 | 1.3.15 23 | DTCompiler 24 | com.apple.compilers.llvm.clang.1_0 25 | DTPlatformBuild 26 | 9F2000 27 | DTPlatformVersion 28 | GM 29 | DTSDKBuild 30 | 10M2518 31 | DTSDKName 32 | macosx10.6 33 | DTXcode 34 | 0941 35 | DTXcodeBuild 36 | 9F2000 37 | IOKitPersonalities 38 | 39 | Intel HDMI Audio - 100-series 0x9d74 0x9d71 0x9d70 0xa171 40 | 41 | CFBundleIdentifier 42 | org.rehabman.driver.FakePCIID 43 | FakeProperties 44 | 45 | RM,device-id 46 | cKEAAA== 47 | 48 | IOClass 49 | FakePCIID 50 | IOMatchCategory 51 | FakePCIID 52 | IOPCIPrimaryMatch 53 | 0x9d748086 0x9d718086 0x9d708086 0xa1718086 54 | IOProviderClass 55 | IOPCIDevice 56 | 57 | Intel HDMI Audio - 100-series 0xa170 58 | 59 | CFBundleIdentifier 60 | org.rehabman.driver.FakePCIID 61 | FakeProperties 62 | 63 | RM,device-id 64 | cJ0AAA== 65 | 66 | IOClass 67 | FakePCIID 68 | IOMatchCategory 69 | FakePCIID 70 | IOPCIPrimaryMatch 71 | 0xa1708086 72 | IOProviderClass 73 | IOPCIDevice 74 | 75 | Intel HDMI Audio - 200-series 0xa2f0 76 | 77 | CFBundleIdentifier 78 | org.rehabman.driver.FakePCIID 79 | FakeProperties 80 | 81 | RM,device-id 82 | cKEAAA== 83 | 84 | IOClass 85 | FakePCIID 86 | IOMatchCategory 87 | FakePCIID 88 | IOPCIPrimaryMatch 89 | 0xa2f08086 90 | IOProviderClass 91 | IOPCIDevice 92 | 93 | Intel HDMI Audio - 300-series 0xa348 0x9dc8 94 | 95 | CFBundleIdentifier 96 | org.rehabman.driver.FakePCIID 97 | FakeProperties 98 | 99 | RM,device-id 100 | cKEAAA== 101 | 102 | IOClass 103 | FakePCIID 104 | IOMatchCategory 105 | FakePCIID 106 | IOPCIPrimaryMatch 107 | 0xa3488086 0x9dc88086 108 | IOProviderClass 109 | IOPCIDevice 110 | 111 | Intel HDMI Audio - Haswell 112 | 113 | CFBundleIdentifier 114 | org.rehabman.driver.FakePCIID 115 | FakeProperties 116 | 117 | RM,device-id 118 | DAoAAA== 119 | 120 | IOClass 121 | FakePCIID 122 | IOMatchCategory 123 | FakePCIID 124 | IOPCIPrimaryMatch 125 | 0x0c0c8086 126 | IOProviderClass 127 | IOPCIDevice 128 | 129 | 130 | OSBundleRequired 131 | Root 132 | Source Code 133 | https://github.com/RehabMan/FakePCIID 134 | 135 | 136 | -------------------------------------------------------------------------------- /SSDT/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | 1.0 Copyright © 2018-2020 Headsoft. All rights reserved. 9 | CFBundleIdentifier 10 | com.Headsoft.USBPorts 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBPorts 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | iMac19,2-XHC 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | XHC 33 | IOPCIPrimaryMatch 34 | 0x06ed8086 35 | IOProbeScore 36 | 5000 37 | IOProviderClass 38 | AppleUSBXHCIPCI 39 | IOProviderMergeProperties 40 | 41 | kUSBSleepPortCurrentLimit 42 | 2100 43 | kUSBSleepPowerSupply 44 | 5100 45 | kUSBWakePortCurrentLimit 46 | 2100 47 | kUSBWakePowerSupply 48 | 5100 49 | port-count 50 | 51 | GgAAAA== 52 | 53 | ports 54 | 55 | HS04 56 | 57 | UsbConnector 58 | 9 59 | name 60 | HS04 61 | port 62 | 63 | BAAAAA== 64 | 65 | 66 | HS07 67 | 68 | UsbConnector 69 | 3 70 | name 71 | HS07 72 | port 73 | 74 | BwAAAA== 75 | 76 | 77 | HS08 78 | 79 | UsbConnector 80 | 3 81 | name 82 | HS08 83 | port 84 | 85 | CAAAAA== 86 | 87 | 88 | HS09 89 | 90 | UsbConnector 91 | 3 92 | name 93 | HS09 94 | port 95 | 96 | CQAAAA== 97 | 98 | 99 | HS10 100 | 101 | UsbConnector 102 | 3 103 | name 104 | HS10 105 | port 106 | 107 | CgAAAA== 108 | 109 | 110 | HS12 111 | 112 | UsbConnector 113 | 0 114 | name 115 | HS12 116 | port 117 | 118 | DAAAAA== 119 | 120 | 121 | HS13 122 | 123 | UsbConnector 124 | 0 125 | name 126 | HS13 127 | port 128 | 129 | DQAAAA== 130 | 131 | 132 | SS01 133 | 134 | UsbConnector 135 | 3 136 | name 137 | SS01 138 | port 139 | 140 | EQAAAA== 141 | 142 | 143 | SS02 144 | 145 | UsbConnector 146 | 3 147 | name 148 | SS02 149 | port 150 | 151 | EgAAAA== 152 | 153 | 154 | SS03 155 | 156 | UsbConnector 157 | 3 158 | name 159 | SS03 160 | port 161 | 162 | EwAAAA== 163 | 164 | 165 | SS04 166 | 167 | UsbConnector 168 | 9 169 | name 170 | SS04 171 | port 172 | 173 | FAAAAA== 174 | 175 | 176 | SS07 177 | 178 | UsbConnector 179 | 3 180 | name 181 | SS07 182 | port 183 | 184 | FwAAAA== 185 | 186 | 187 | SS09 188 | 189 | UsbConnector 190 | 3 191 | name 192 | SS09 193 | port 194 | 195 | GQAAAA== 196 | 197 | 198 | SS10 199 | 200 | UsbConnector 201 | 3 202 | name 203 | SS10 204 | port 205 | 206 | GgAAAA== 207 | 208 | 209 | 210 | 211 | model 212 | iMac19,2 213 | 214 | 215 | OSBundleRequired 216 | Root 217 | 218 | 219 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | 1.0 Copyright © 2018-2020 Headsoft. All rights reserved. 9 | CFBundleIdentifier 10 | com.Headsoft.USBPorts 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBPorts 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | iMac19,2-XHC 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | XHC 33 | IOPCIPrimaryMatch 34 | 0x06ed8086 35 | IOProbeScore 36 | 5000 37 | IOProviderClass 38 | AppleUSBXHCIPCI 39 | IOProviderMergeProperties 40 | 41 | kUSBSleepPortCurrentLimit 42 | 2100 43 | kUSBSleepPowerSupply 44 | 5100 45 | kUSBWakePortCurrentLimit 46 | 2100 47 | kUSBWakePowerSupply 48 | 5100 49 | port-count 50 | 51 | GgAAAA== 52 | 53 | ports 54 | 55 | HS04 56 | 57 | UsbConnector 58 | 9 59 | name 60 | HS04 61 | port 62 | 63 | BAAAAA== 64 | 65 | 66 | HS07 67 | 68 | UsbConnector 69 | 3 70 | name 71 | HS07 72 | port 73 | 74 | BwAAAA== 75 | 76 | 77 | HS08 78 | 79 | UsbConnector 80 | 3 81 | name 82 | HS08 83 | port 84 | 85 | CAAAAA== 86 | 87 | 88 | HS09 89 | 90 | UsbConnector 91 | 3 92 | name 93 | HS09 94 | port 95 | 96 | CQAAAA== 97 | 98 | 99 | HS10 100 | 101 | UsbConnector 102 | 3 103 | name 104 | HS10 105 | port 106 | 107 | CgAAAA== 108 | 109 | 110 | HS12 111 | 112 | UsbConnector 113 | 0 114 | name 115 | HS12 116 | port 117 | 118 | DAAAAA== 119 | 120 | 121 | HS13 122 | 123 | UsbConnector 124 | 0 125 | name 126 | HS13 127 | port 128 | 129 | DQAAAA== 130 | 131 | 132 | SS01 133 | 134 | UsbConnector 135 | 3 136 | name 137 | SS01 138 | port 139 | 140 | EQAAAA== 141 | 142 | 143 | SS02 144 | 145 | UsbConnector 146 | 3 147 | name 148 | SS02 149 | port 150 | 151 | EgAAAA== 152 | 153 | 154 | SS03 155 | 156 | UsbConnector 157 | 3 158 | name 159 | SS03 160 | port 161 | 162 | EwAAAA== 163 | 164 | 165 | SS04 166 | 167 | UsbConnector 168 | 9 169 | name 170 | SS04 171 | port 172 | 173 | FAAAAA== 174 | 175 | 176 | SS07 177 | 178 | UsbConnector 179 | 3 180 | name 181 | SS07 182 | port 183 | 184 | FwAAAA== 185 | 186 | 187 | SS09 188 | 189 | UsbConnector 190 | 3 191 | name 192 | SS09 193 | port 194 | 195 | GQAAAA== 196 | 197 | 198 | SS10 199 | 200 | UsbConnector 201 | 3 202 | name 203 | SS10 204 | port 205 | 206 | GgAAAA== 207 | 208 | 209 | 210 | 211 | model 212 | iMac19,2 213 | 214 | 215 | OSBundleRequired 216 | Root 217 | 218 | 219 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # intel-i9-10900K-Asus-prime-Z490A-hackintosh 2 | ### Firstly sorry my english not so good :) 3 | 4 | ![Asus Prime Z490-A i9-10900K Hackintosh MacOS installation](https://github.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/blob/master/Docs/ss1.png?raw=true) 5 | 6 | 7 | Hello everyone, 8 | 9 | I successfully installed the system on Macos (hackintosh) 10.15.5 and it is working correctly. 10 | 11 | **Please use my EFI folder in this repository.** 12 | 13 | I hope that will be useful :) 14 | 15 | 16 | ## Current Bootlader 17 | **Opencore 0.5.9** 18 | 19 | ## Hardware 20 | * Asus Prime Z490-A 21 | * Intel i9-10900K 22 | * 16GB DDR4 3000MHZ 23 | * SanDisk Extreme Pro 1TB M.2 NVMe 3D SSD 24 | * Intel UHD Graphics 630 (Primary) 25 | * Intel® I225-V 2.5Gb Ethernet 26 | * Tp-Link 3468 1Gbit Pcie Card 27 | * Realtek ALC S1220A 28 | * Creative Sound Blaster Audigy PCIe RX 7.1 29 | * SMBIOS: iMac19,2 30 | 31 | ## What's Working ? 32 | - [x] Intel UHD Graphics 630 (iGPU), Working correctly with **Metal Support** on DP (Display Port) 33 | - [x] Onboard Audio Realtek ALC S1220A (if you have different motherboard, you may need to change layout-id) 34 | - [x] SanDisk Extreme Pro 1TB M.2 NVMe 3D SSD, Test results below 35 | - [x] Intel® I225-V 2.5Gb Ethernet (Working with FakePCIID_Intel_I225-V.kext) 36 | - [x] Tp-Link 3468 [Working with correctly](https://github.com/Mieze/RTL8111_driver_for_OS_X/releases/tag/v2.2.2) - (This repository Have'nt this kext) 37 | - [x] Creative Sound Blaster Audigy PCIe (Working with kXAudioDriver.kext) 38 | - [x] Sleep/Wake 39 | - [x] Reboot and Shutdown 40 | 41 | ## Not Working 42 | - [ ] HDMI Port not working. 43 | 44 | What solutions did I try for HDMI Port? 45 | * Framebuffer Patching with BusID with/without WhateverGreen.kext. 46 | > If you have an idea, please let me know. 47 | 48 | ## Onboard Audio, HDMI Audio 49 | I needed the list to run the audio. 50 | * AppleALC.kext 51 | * FakeID.kext 52 | * FakePCIID_Intel_HDMI_Audio.kext 53 | * device-id=709D0000 54 | * layout-id=15000000 55 | 56 | I am using HDMI audio on DisplayPort(DP) with LG 34WK650 57 | 58 | ## USB Ports 59 | I used hackintool for USB Port Map. You will see screenshot below. If you are using another ASUS model motherboard, USB Ports may not working correctly. 60 | In similar cases, 61 | 1. Enable USBInjectAll.kext 62 | 2. Disable USBPorts.kext 63 | 3. Disable SSDT-UIAC.aml 64 | 4. Enable XhciPortLimit frm KERNEL tab. 65 | 5. Reboot (Now you have all USB Ports,you can't use it that way. You should not exceed the 15 port limit. This is absolutely essential for system stability.) 66 | 6. Open Hackintool app and REMAP according to you. Check this link for details [The New Beginner's Guide to USB Port Configuration](https://www.tonymacx86.com/threads/the-new-beginners-guide-to-usb-port-configuration.286553/) 67 | 68 | # Installation 69 | **Bios Settings** 70 | * Disable 71 | * Fast Boot 72 | * CSM 73 | * Thunderbolt 74 | * Intel SGX 75 | * CFG Lock (This motherboard directly closed "Bios version 0403") 76 | * Enable 77 | * VT-x 78 | * 4G Decoding 79 | * Hyper-Threading 80 | * XHCI Hand-off 81 | * Os Type: Windows (You must remove all secure keys from Secure boot menu) 82 | * if not working this, please select "Other Os" 83 | * **IMPORTANT:** You must set Onboard GPU Memory to 64MB for use the graphics card without any problems 84 | **Installation** 85 | * Create an Catalina 10.15.4 Installation Stick 86 | * Mount the EFI partition of the Installation USB (use Hackintool mount EFIs) 87 | * Copy my EFI folder to the root of the EFI partition 88 | * Go to EFI / OC and open the config.plist with Opencore Configurator (use latest version 2.5 buggy for 0.5.9 config files, use 2.6+) 89 | * Now navigate to PlatformInfo -> Generic "click up/down button" you must see Mac product list, Select iMac 19,2. Now You must generate a serial by using the GENERATE buttons. 90 | * Install MacOS Catalina 91 | 92 | ## General Troubleshooting 93 | **The system does not boot** 94 | Open config.plist with Opencore Configurator and change these values. 95 | **You have to try each one individually** 96 | 97 | * AppleCpuPmCfgLock : Enable - if CFG Lock is Enabled. 98 | * AppleXcpmCfgLock : Enable - if CFG Lock is Enabled. 99 | * SetupVirtualMap : Disable / Enable: - First Disable 100 | * RebuiltAppleMemoryMap : Enable / Disable: - First Enable 101 | * Cpuid1Data: "EB060800 00000000 00000000 00000000" without Quotes // May be required OS 10.15.4 or older then. 102 | * Cpuid1Mask: "FFFFFFFF 00000000 00000000 00000000" without Quotes // May be required OS 10.15.4 or older then. 103 | * DisabloIoMapper : Enable - If you need Virtualization you must enable VT-d options in Bios settings. 104 | 105 | **F1 Error after reboot** 106 | > This problem usually happens when NVRAM is not working correctly. 107 | 108 | Add this patch line to KERNEL -> PATCH tab 109 | >Identifier: com.apple.driver.AppleRTC 110 | > 111 | >Base: leave it blank 112 | > 113 | >Comment: F1 Patch fix 114 | > 115 | >Find: 75330FB7 116 | > 117 | >Replace: EB330FB7 118 | > 119 | >Count:1 120 | > 121 | >Enabled:true 122 | > 123 | >ReplaceMask: leave it blank 124 | > 125 | >MinKernel:leave it blank 126 | > 127 | >Limit:0 128 | > 129 | >Skip:0 130 | > 131 | 132 | ## Tested Softwares 133 | I use list in the real life and working correctly. 134 | * Adobe Series 135 | * Affinity Series 136 | * Cinebench 137 | * Geekbench 138 | * Heaven Benchmark 139 | * Intel Power Gadget 140 | 141 | ## Tools 142 | * [Hackintool](https://github.com/headkaze/Hackintool/releases/) - For every Job :) 143 | * [SSDTTime](https://github.com/corpnewt/SSDTTime) - Extract your right SSDT Files from ACPI. 144 | * Opencore Configurator - Config.plist editor great software. 145 | * IORegistryExplorer - show all system device details 146 | * macIASL - to edit all your ACPI files that you extracted from the SSDTTime 147 | 148 | That is all :) 149 | 150 | ## USB Port Map 151 | ![Hackintosh USB Port Map](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/ss3.png) 152 | ![Hackintosh USB Port Map Asus Z490](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/internal-usb-port-map.png) 153 | ![Hackintosh USB Port Map Asus Z490](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/usb-port-map.png) 154 | 155 | 156 | ## Screenshots 157 | ![Asus Prime Z490-A i9-10900K Hackintosh MacOS installation](https://github.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/blob/master/Docs/ss1.png?raw=true) 158 | ![Asus Prime Z490-A Video Proc](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/ss2.png) 159 | ![Intel UHD 630 Benchmark Test Heaven](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/ss4.png) 160 | ![Intel UHD 630 Benchmark Test Heaven](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/ss5.png) 161 | ![SanDisk Extreme Pro 1TB M.2 NVMe 3D SSD Disk Speed Test result](https://raw.githubusercontent.com/yilmazca/intel-i9-10900K-Asus-prime-Z490A-hackintosh/master/Docs/ss6.png) 162 | 163 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | as.vit9696.VirtualSMC 46 | 47 | CFBundleIdentifier 48 | as.vit9696.VirtualSMC 49 | IOClass 50 | VirtualSMC 51 | IODeviceMemory 52 | 53 | 54 | 55 | address 56 | 768 57 | length 58 | 32 59 | 60 | 61 | 62 | 63 | address 64 | 4277141504 65 | length 66 | 65536 67 | 68 | 69 | 70 | IOInterruptControllers 71 | 72 | io-apic-0 73 | 74 | IOInterruptSpecifiers 75 | 76 | 77 | BgAAAAAAAAA= 78 | 79 | 80 | IOMatchCategory 81 | IOACPIPlatformDevice 82 | IOName 83 | SMC 84 | IOProbeScore 85 | 60000 86 | IOProviderClass 87 | AppleACPIPlatformExpert 88 | Keystore 89 | 90 | Generic 91 | 92 | 93 | attr 94 | 95 | iA== 96 | 97 | comment 98 | Total fan number, this should be put to a plugin 99 | name 100 | 101 | Rk51bQ== 102 | 103 | type 104 | 105 | dWk4IA== 106 | 107 | value 108 | 109 | AA== 110 | 111 | 112 | 113 | attr 114 | 115 | gA== 116 | 117 | comment 118 | CPU plimit 119 | name 120 | 121 | TVNUYw== 122 | 123 | type 124 | 125 | dWk4IA== 126 | 127 | value 128 | 129 | AA== 130 | 131 | 132 | 133 | attr 134 | 135 | gA== 136 | 137 | comment 138 | FAN plimit (supposedly) 139 | name 140 | 141 | TVNUZg== 142 | 143 | type 144 | 145 | dWk4IA== 146 | 147 | value 148 | 149 | AA== 150 | 151 | 152 | 153 | attr 154 | 155 | gA== 156 | 157 | comment 158 | Memory plimit 159 | name 160 | 161 | TVNUbQ== 162 | 163 | type 164 | 165 | dWk4IA== 166 | 167 | value 168 | 169 | AA== 170 | 171 | 172 | 173 | attr 174 | 175 | gA== 176 | 177 | comment 178 | This should be 1 on laptops, and is overriden by sensors 179 | name 180 | 181 | QkFUUA== 182 | 183 | type 184 | 185 | ZmxhZw== 186 | 187 | value 188 | 189 | AA== 190 | 191 | 192 | 193 | attr 194 | 195 | gA== 196 | 197 | comment 198 | Only MacPros have custom illumination controllers 199 | name 200 | 201 | THNOTQ== 202 | 203 | type 204 | 205 | dWk4IA== 206 | 207 | value 208 | 209 | AA== 210 | 211 | 212 | 213 | GenericDesktopV1 214 | 215 | GenericDesktopV2 216 | 217 | GenericLaptopV1 218 | 219 | GenericLaptopV2 220 | 221 | GenericV1 222 | 223 | 224 | attr 225 | 226 | gA== 227 | 228 | comment 229 | GPU plimit 230 | name 231 | 232 | TVNUZw== 233 | 234 | type 235 | 236 | dWk4IA== 237 | 238 | value 239 | 240 | AA== 241 | 242 | 243 | 244 | GenericV2 245 | 246 | 247 | attr 248 | 249 | gA== 250 | 251 | comment 252 | E plimit (???) 253 | name 254 | 255 | TVNUZQ== 256 | 257 | type 258 | 259 | dWk4IA== 260 | 261 | value 262 | 263 | AA== 264 | 265 | 266 | 267 | attr 268 | 269 | gA== 270 | 271 | comment 272 | I plimit (???) 273 | name 274 | 275 | TVNUaQ== 276 | 277 | type 278 | 279 | dWk4IA== 280 | 281 | value 282 | 283 | AA== 284 | 285 | 286 | 287 | attr 288 | 289 | gA== 290 | 291 | comment 292 | J plimit (???) 293 | name 294 | 295 | TVNUag== 296 | 297 | type 298 | 299 | dWk4IA== 300 | 301 | value 302 | 303 | AA== 304 | 305 | 306 | 307 | 308 | ModelInfo 309 | 310 | GenericV1 311 | 312 | branch 313 | 314 | ajUyAAAAAAA= 315 | 316 | hwname 317 | 318 | c21jLXBpa2V0b24A 319 | 320 | platform 321 | 322 | ajUyAAAAAAA= 323 | 324 | rev 325 | 326 | AXQPAAAE 327 | 328 | revfb 329 | 330 | AXQPAAAE 331 | 332 | revfu 333 | 334 | AXQPAAAE 335 | 336 | 337 | GenericV2 338 | 339 | branch 340 | 341 | ajUyAAAAAAA= 342 | 343 | hwname 344 | 345 | c21jLWh1cm9ucml2ZXIA 346 | 347 | platform 348 | 349 | ajUyAAAAAAA= 350 | 351 | rev 352 | 353 | AigPAAAH 354 | 355 | revfb 356 | 357 | AigPAAAH 358 | 359 | revfu 360 | 361 | AigPAAAH 362 | 363 | 364 | GenericV3 365 | 366 | hwname 367 | 368 | c21jLWh1cm9ucml2ZXIA 369 | 370 | platform 371 | 372 | ajUyAAAAAAA= 373 | 374 | 375 | 376 | _STA 377 | 11 378 | name 379 | 380 | QVBQMDAwMQA= 381 | 382 | 383 | 384 | NSHumanReadableCopyright 385 | Copyright © 2017 vit9696. All rights reserved. 386 | OSBundleCompatibleVersion 387 | 1.0 388 | OSBundleLibraries 389 | 390 | as.vit9696.Lilu 391 | 1.2.0 392 | com.apple.iokit.IOACPIFamily 393 | 1.0.0d1 394 | com.apple.kpi.bsd 395 | 12.0.0 396 | com.apple.kpi.dsep 397 | 12.0.0 398 | com.apple.kpi.iokit 399 | 12.0.0 400 | com.apple.kpi.libkern 401 | 12.0.0 402 | com.apple.kpi.mach 403 | 12.0.0 404 | com.apple.kpi.unsupported 405 | 12.0.0 406 | 407 | OSBundleRequired 408 | Root 409 | 410 | 411 | -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ACPI 6 | 7 | Add 8 | 9 | 10 | Comment 11 | if stuck on PCI BEGIN Error, change this orginal SSDT-EC.aml from opencore 12 | Enabled 13 | 14 | Path 15 | SSDT-EC.aml 16 | 17 | 18 | Comment 19 | for USBMAP created on Hackintool 20 | Enabled 21 | 22 | Path 23 | SSDT-EC-USBX.aml 24 | 25 | 26 | Comment 27 | for USBMAP created on Hackintool 28 | Enabled 29 | 30 | Path 31 | SSDT-UIAC.aml 32 | 33 | 34 | Comment 35 | 36 | Enabled 37 | 38 | Path 39 | SSDT-AWAC.aml 40 | 41 | 42 | Comment 43 | 44 | Enabled 45 | 46 | Path 47 | SSDT-PLUG.aml 48 | 49 | 50 | Comment 51 | 52 | Enabled 53 | 54 | Path 55 | SSDT-HPET.aml 56 | 57 | 58 | Comment 59 | 60 | Enabled 61 | 62 | Path 63 | SSDT-PLUG-DRTNIA.aml 64 | 65 | 66 | Comment 67 | 68 | Enabled 69 | 70 | Path 71 | SSDT-PLUG-XCPM.aml 72 | 73 | 74 | Comment 75 | 76 | Enabled 77 | 78 | Path 79 | SSDT-PMC.aml 80 | 81 | 82 | Delete 83 | 84 | Patch 85 | 86 | Quirks 87 | 88 | FadtEnableReset 89 | 90 | NormalizeHeaders 91 | 92 | RebaseRegions 93 | 94 | ResetHwSig 95 | 96 | ResetLogoStatus 97 | 98 | 99 | 100 | Booter 101 | 102 | MmioWhitelist 103 | 104 | Quirks 105 | 106 | AvoidRuntimeDefrag 107 | 108 | DevirtualiseMmio 109 | 110 | DisableSingleUser 111 | 112 | DisableVariableWrite 113 | 114 | DiscardHibernateMap 115 | 116 | EnableSafeModeSlide 117 | 118 | EnableWriteUnprotector 119 | 120 | ForceExitBootServices 121 | 122 | ProtectMemoryRegions 123 | 124 | ProtectSecureBoot 125 | 126 | ProtectUefiServices 127 | 128 | ProvideCustomSlide 129 | 130 | RebuildAppleMemoryMap 131 | 132 | SetupVirtualMap 133 | 134 | SignalAppleOS 135 | 136 | SyncRuntimePermissions 137 | 138 | 139 | 140 | DeviceProperties 141 | 142 | Add 143 | 144 | PciRoot(0x0)/Pci(0x2,0x0) 145 | 146 | AAPL,ig-platform-id 147 | AACbPg== 148 | device-id 149 | mz4AAA== 150 | framebuffer-con0-busid 151 | AgAAAA== 152 | framebuffer-con0-enable 153 | AQAAAA== 154 | framebuffer-con0-flags 155 | xwMAAA== 156 | framebuffer-con0-index 157 | AgAAAA== 158 | framebuffer-con0-pipe 159 | CgAAAA== 160 | framebuffer-con0-type 161 | AAgAAA== 162 | framebuffer-con1-busid 163 | BAAAAA== 164 | framebuffer-con1-enable 165 | AQAAAA== 166 | framebuffer-con1-flags 167 | xwMAAA== 168 | framebuffer-con1-index 169 | AwAAAA== 170 | framebuffer-con1-pipe 171 | CAAAAA== 172 | framebuffer-con1-type 173 | AAgAAA== 174 | framebuffer-con2-busid 175 | AQAAAA== 176 | framebuffer-con2-enable 177 | AQAAAA== 178 | framebuffer-con2-flags 179 | xwMAAA== 180 | framebuffer-con2-index 181 | AQAAAA== 182 | framebuffer-con2-pipe 183 | CQAAAA== 184 | framebuffer-con2-type 185 | AAQAAA== 186 | framebuffer-patch-enable 187 | AQAAAA== 188 | framebuffer-stolenmem 189 | AAAwAQ== 190 | 191 | PciRoot(0x0)/Pci(0x1C,0x4)/Pci(0x0,0x0) 192 | 193 | device-id 194 | 8hUAAA== 195 | 196 | PciRoot(0x0)/Pci(0x1F,0x3) 197 | 198 | AAPL,slot-name 199 | Internal@0,31,3 200 | device-id 201 | cJ0AAA== 202 | device_type 203 | Audio device 204 | layout-id 205 | FQAAAA== 206 | model 207 | Sunrise Point-LP HD Audio 208 | 209 | 210 | Delete 211 | 212 | 213 | Kernel 214 | 215 | Add 216 | 217 | 218 | BundlePath 219 | Lilu.kext 220 | Comment 221 | 222 | Enabled 223 | 224 | ExecutablePath 225 | Contents/MacOS/Lilu 226 | MaxKernel 227 | 228 | MinKernel 229 | 230 | PlistPath 231 | Contents/Info.plist 232 | 233 | 234 | BundlePath 235 | kXAudioDriver.kext 236 | Comment 237 | for Creative Audigy Sound Card 238 | Enabled 239 | 240 | ExecutablePath 241 | Contents/MacOS/kXAudioDriver 242 | MaxKernel 243 | 244 | MinKernel 245 | 246 | PlistPath 247 | Contents/Info.plist 248 | 249 | 250 | BundlePath 251 | USBInjectAll.kext 252 | Comment 253 | Use if have'nt USB Map, force enable all ports 254 | Enabled 255 | 256 | ExecutablePath 257 | Contents/MacOS/USBInjectAll 258 | MaxKernel 259 | 260 | MinKernel 261 | 262 | PlistPath 263 | Contents/Info.plist 264 | 265 | 266 | BundlePath 267 | VirtualSMC.kext 268 | Comment 269 | 270 | Enabled 271 | 272 | ExecutablePath 273 | Contents/MacOS/VirtualSMC 274 | MaxKernel 275 | 276 | MinKernel 277 | 278 | PlistPath 279 | Contents/Info.plist 280 | 281 | 282 | BundlePath 283 | USBPorts.kext 284 | Comment 285 | USBMAP created on Hackintool 286 | Enabled 287 | 288 | ExecutablePath 289 | 290 | MaxKernel 291 | 292 | MinKernel 293 | 294 | PlistPath 295 | Contents/Info.plist 296 | 297 | 298 | BundlePath 299 | NVMeFix.kext 300 | Comment 301 | NVMe Device Power Management 302 | Enabled 303 | 304 | ExecutablePath 305 | Contents/MacOS/NVMeFix 306 | MaxKernel 307 | 308 | MinKernel 309 | 310 | PlistPath 311 | Contents/Info.plist 312 | 313 | 314 | BundlePath 315 | SMCSuperIO.kext 316 | Comment 317 | 318 | Enabled 319 | 320 | ExecutablePath 321 | Contents/MacOS/SMCSuperIO 322 | MaxKernel 323 | 324 | MinKernel 325 | 326 | PlistPath 327 | Contents/Info.plist 328 | 329 | 330 | BundlePath 331 | SMCProcessor.kext 332 | Comment 333 | 334 | Enabled 335 | 336 | ExecutablePath 337 | Contents/MacOS/SMCProcessor 338 | MaxKernel 339 | 340 | MinKernel 341 | 342 | PlistPath 343 | Contents/Info.plist 344 | 345 | 346 | BundlePath 347 | FakePCIID_Intel_HDMI_Audio.kext 348 | Comment 349 | 350 | Enabled 351 | 352 | ExecutablePath 353 | 354 | MaxKernel 355 | 356 | MinKernel 357 | 358 | PlistPath 359 | Contents/Info.plist 360 | 361 | 362 | BundlePath 363 | FakePCIID_Intel_I225-V.kext 364 | Comment 365 | for intel 2.5Gbit Ethernet inject 366 | Enabled 367 | 368 | ExecutablePath 369 | 370 | MaxKernel 371 | 372 | MinKernel 373 | 374 | PlistPath 375 | Contents/Info.plist 376 | 377 | 378 | BundlePath 379 | FakePCIID.kext 380 | Comment 381 | 382 | Enabled 383 | 384 | ExecutablePath 385 | Contents/MacOS/FakePCIID 386 | MaxKernel 387 | 388 | MinKernel 389 | 390 | PlistPath 391 | Contents/Info.plist 392 | 393 | 394 | BundlePath 395 | AppleALC.kext 396 | Comment 397 | 398 | Enabled 399 | 400 | ExecutablePath 401 | Contents/MacOS/AppleALC 402 | MaxKernel 403 | 404 | MinKernel 405 | 406 | PlistPath 407 | Contents/Info.plist 408 | 409 | 410 | BundlePath 411 | WhateverGreen.kext 412 | Comment 413 | 414 | Enabled 415 | 416 | ExecutablePath 417 | Contents/MacOS/WhateverGreen 418 | MaxKernel 419 | 420 | MinKernel 421 | 422 | PlistPath 423 | Contents/Info.plist 424 | 425 | 426 | Delete 427 | 428 | Emulate 429 | 430 | Cpuid1Data 431 | 432 | Cpuid1Mask 433 | 434 | 435 | Patch 436 | 437 | 438 | Base 439 | 440 | Comment 441 | USB Port limit patch #1/2 10.15.x (credit DalianSky) 442 | Count 443 | 0 444 | Enabled 445 | 446 | Find 447 | g/sPDw== 448 | Identifier 449 | com.apple.iokit.IOUSBHostFamily 450 | Limit 451 | 0 452 | Mask 453 | 454 | MaxKernel 455 | 456 | MinKernel 457 | 458 | Replace 459 | g/s/Dw== 460 | ReplaceMask 461 | 462 | Skip 463 | 0 464 | 465 | 466 | Base 467 | 468 | Comment 469 | USB Port limit patch #2/2 10.15.x (credit DalianSky) 470 | Count 471 | 0 472 | Enabled 473 | 474 | Find 475 | g/kPDw== 476 | Identifier 477 | com.apple.driver.usb.AppleUSBXHCI 478 | Limit 479 | 0 480 | Mask 481 | 482 | MaxKernel 483 | 484 | MinKernel 485 | 486 | Replace 487 | g/k/Dw== 488 | ReplaceMask 489 | 490 | Skip 491 | 0 492 | 493 | 494 | Base 495 | 496 | Comment 497 | F1 Patch fix 498 | Count 499 | 1 500 | Enabled 501 | 502 | Find 503 | dTMPtw== 504 | Identifier 505 | com.apple.driver.AppleRTC 506 | Limit 507 | 0 508 | Mask 509 | 510 | MaxKernel 511 | 512 | MinKernel 513 | 514 | Replace 515 | 6zMPtw== 516 | ReplaceMask 517 | 518 | Skip 519 | 0 520 | 521 | 522 | Quirks 523 | 524 | AppleCpuPmCfgLock 525 | 526 | AppleXcpmCfgLock 527 | 528 | AppleXcpmExtraMsrs 529 | 530 | AppleXcpmForceBoost 531 | 532 | CustomSMBIOSGuid 533 | 534 | DisableIoMapper 535 | 536 | DisableRtcChecksum 537 | 538 | DummyPowerManagement 539 | 540 | ExternalDiskIcons 541 | 542 | IncreasePciBarSize 543 | 544 | LapicKernelPanic 545 | 546 | PanicNoKextDump 547 | 548 | PowerTimeoutKernelPanic 549 | 550 | ThirdPartyDrives 551 | 552 | XhciPortLimit 553 | 554 | 555 | 556 | Misc 557 | 558 | BlessOverride 559 | 560 | Boot 561 | 562 | ConsoleAttributes 563 | 0 564 | HibernateMode 565 | None 566 | HideAuxiliary 567 | 568 | PickerAttributes 569 | 1 570 | PickerAudioAssist 571 | 572 | PickerMode 573 | Builtin 574 | PollAppleHotKeys 575 | 576 | ShowPicker 577 | 578 | TakeoffDelay 579 | 0 580 | Timeout 581 | 5 582 | 583 | Debug 584 | 585 | AppleDebug 586 | 587 | ApplePanic 588 | 589 | DisableWatchDog 590 | 591 | DisplayDelay 592 | 0 593 | DisplayLevel 594 | 2151678018 595 | SysReport 596 | 597 | Target 598 | 0 599 | 600 | Entries 601 | 602 | Security 603 | 604 | AllowNvramReset 605 | 606 | AllowSetDefault 607 | 608 | AuthRestart 609 | 610 | BlacklistAppleUpdate 611 | 612 | BootProtect 613 | None 614 | ExposeSensitiveData 615 | 6 616 | HaltLevel 617 | 2147483648 618 | ScanPolicy 619 | 0 620 | Vault 621 | Optional 622 | 623 | Tools 624 | 625 | 626 | Arguments 627 | Shutdown 628 | Auxiliary 629 | 630 | Comment 631 | Perform shutdown 632 | Enabled 633 | 634 | Name 635 | Shutdown 636 | Path 637 | ResetSystem.efi 638 | 639 | 640 | 641 | NVRAM 642 | 643 | Add 644 | 645 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 646 | 647 | ExtendedFirmwareFeatures 648 | 9Y/9AAAAAA== 649 | ExtendedFirmwareFeaturesMask 650 | f//f/wAAAAA= 651 | FirmwareFeatures 652 | 9Y/9 653 | FirmwareFeaturesMask 654 | f//f/w== 655 | HW_BID 656 | Mac-AA95B1DDAB278B95 657 | HW_MLB 658 | C02932310GULNV9UE 659 | HW_ROM 660 | CKGq9w== 661 | MLB 662 | C02932310GULNV9UE 663 | ROM 664 | CKGq9w== 665 | UIScale 666 | AQ== 667 | 668 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 669 | 670 | rtc-blacklist 671 | 672 | 673 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 674 | 675 | SystemAudioVolume 676 | Rg== 677 | boot-args 678 | -v 679 | csr-active-config 680 | AAAAAA== 681 | fmm-computer-name 682 | aU1hYw== 683 | prev-lang:kbd 684 | DgAA 685 | 686 | 687 | Delete 688 | 689 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 690 | 691 | UIScale 692 | DefaultBackgroundColor 693 | 694 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 695 | 696 | rtc-blacklist 697 | 698 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 699 | 700 | boot-args 701 | 702 | 703 | LegacyEnable 704 | 705 | LegacyOverwrite 706 | 707 | LegacySchema 708 | 709 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 710 | 711 | bluetoothActiveControllerInfo 712 | fmm-computer-name 713 | nvda_drv 714 | EFIBluetoothDelay 715 | EFILoginHiDPI 716 | flagstate 717 | SystemAudioVolumeSaved 718 | prev-lang:kbd 719 | SystemAudioVolumeDB 720 | LocationServicesEnabled 721 | bluetoothInternalControllerInfo 722 | SystemAudioVolume 723 | 724 | 8BE4DF61-93CA-11D2-AA0D-00E098032B8C 725 | 726 | BootOrder 727 | Boot0081 728 | Boot0080 729 | BootNext 730 | Boot0082 731 | 732 | 733 | WriteFlash 734 | 735 | 736 | PlatformInfo 737 | 738 | Automatic 739 | 740 | Generic 741 | 742 | AdviseWindows 743 | 744 | MLB 745 | C02944102J9KGQGFB 746 | ROM 747 | BnA4xSnD 748 | SpoofVendor 749 | 750 | SystemProductName 751 | iMac19,2 752 | SystemSerialNumber 753 | C02ZM1YEJWDW 754 | SystemUUID 755 | 0BA9C2E0-73FA-45A0-816A-8856F7C529C3 756 | 757 | UpdateDataHub 758 | 759 | UpdateNVRAM 760 | 761 | UpdateSMBIOS 762 | 763 | UpdateSMBIOSMode 764 | Create 765 | 766 | UEFI 767 | 768 | APFS 769 | 770 | EnableJumpstart 771 | 772 | HideVerbose 773 | 774 | JumpstartHotPlug 775 | 776 | MinDate 777 | 0 778 | MinVersion 779 | 0 780 | 781 | Audio 782 | 783 | AudioCodec 784 | 0 785 | AudioDevice 786 | 787 | AudioOut 788 | 0 789 | AudioSupport 790 | 791 | MinimumVolume 792 | 20 793 | PlayChime 794 | 795 | VolumeAmplifier 796 | 0 797 | 798 | ConnectDrivers 799 | 800 | Drivers 801 | 802 | HfsPlus.efi 803 | OpenRuntime.efi 804 | 805 | Input 806 | 807 | KeyFiltering 808 | 809 | KeyForgetThreshold 810 | 5 811 | KeyMergeThreshold 812 | 2 813 | KeySupport 814 | 815 | KeySupportMode 816 | Auto 817 | KeySwap 818 | 819 | PointerSupport 820 | 821 | PointerSupportMode 822 | ASUS 823 | TimerResolution 824 | 50000 825 | 826 | Output 827 | 828 | ClearScreenOnModeSwitch 829 | 830 | ConsoleMode 831 | 832 | DirectGopRendering 833 | 834 | IgnoreTextInGraphics 835 | 836 | ProvideConsoleGop 837 | 838 | ReconnectOnResChange 839 | 840 | ReplaceTabWithSpace 841 | 842 | Resolution 843 | Max 844 | SanitiseClearScreen 845 | 846 | TextRenderer 847 | BuiltinGraphics 848 | 849 | ProtocolOverrides 850 | 851 | AppleAudio 852 | 853 | AppleBootPolicy 854 | 855 | AppleDebugLog 856 | 857 | AppleEvent 858 | 859 | AppleImageConversion 860 | 861 | AppleKeyMap 862 | 863 | AppleRtcRam 864 | 865 | AppleSmcIo 866 | 867 | AppleUserInterfaceTheme 868 | 869 | DataHub 870 | 871 | DeviceProperties 872 | 873 | FirmwareVolume 874 | 875 | HashServices 876 | 877 | OSInfo 878 | 879 | UnicodeCollation 880 | 881 | 882 | Quirks 883 | 884 | DeduplicateBootOrder 885 | 886 | ExitBootServicesDelay 887 | 0 888 | IgnoreInvalidFlexRatio 889 | 890 | ReleaseUsbOwnership 891 | 892 | RequestBootVarRouting 893 | 894 | TscSyncTimeout 895 | 0 896 | UnblockFsConnect 897 | 898 | 899 | ReservedMemory 900 | 901 | 902 | 903 | --------------------------------------------------------------------------------