├── EFI ├── OC │ ├── Tools │ │ └── .tools │ ├── .contentFlavour │ ├── OpenCore.efi │ ├── ACPI │ │ ├── SSDT-EC.aml │ │ ├── SSDT-DMAR.aml │ │ ├── SSDT-GPRW.aml │ │ ├── SSDT-HPET.aml │ │ ├── SSDT-PLUG.aml │ │ ├── SSDT-UNC.aml │ │ ├── SSDT-USBW.aml │ │ ├── SSDT-RTC0-RANGE.aml │ │ └── SSDT-SBUS-MCHC.aml │ ├── Drivers │ │ ├── HfsPlus.efi │ │ ├── AudioDxe.efi │ │ ├── OpenCanopy.efi │ │ ├── OpenRuntime.efi │ │ └── ResetNvramEntry.efi │ ├── Resources │ │ ├── Label │ │ │ ├── Tool.l2x │ │ │ ├── Tool.lbl │ │ │ ├── Apple.l2x │ │ │ ├── Apple.lbl │ │ │ ├── Other.l2x │ │ │ ├── Other.lbl │ │ │ ├── Shell.l2x │ │ │ ├── Shell.lbl │ │ │ ├── AppleRecv.l2x │ │ │ ├── AppleRecv.lbl │ │ │ ├── AppleTM.l2x │ │ │ ├── AppleTM.lbl │ │ │ ├── EFIBoot.l2x │ │ │ ├── EFIBoot.lbl │ │ │ ├── Windows.l2x │ │ │ ├── Windows.lbl │ │ │ ├── ResetNVRAM.l2x │ │ │ ├── ResetNVRAM.lbl │ │ │ ├── SIPDisabled.l2x │ │ │ ├── SIPDisabled.lbl │ │ │ ├── SIPEnabled.l2x │ │ │ └── SIPEnabled.lbl │ │ ├── Font │ │ │ ├── Font_1x.bin │ │ │ ├── Font_1x.png │ │ │ ├── Font_2x.bin │ │ │ └── Font_2x.png │ │ ├── Image │ │ │ └── Acidanthera │ │ │ │ ├── Syrah │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── Left.icns │ │ │ │ ├── Lock.icns │ │ │ │ ├── Right.icns │ │ │ │ ├── Shell.icns │ │ │ │ ├── Tool.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Restart.icns │ │ │ │ ├── Windows.icns │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── HardDrive.icns │ │ │ │ ├── Password.icns │ │ │ │ ├── Selected.icns │ │ │ │ ├── Selector.icns │ │ │ │ ├── SetDefault.icns │ │ │ │ ├── ShutDown.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ └── ExtHardDrive.icns │ │ │ │ ├── Chardonnay │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── Left.icns │ │ │ │ ├── Lock.icns │ │ │ │ ├── Right.icns │ │ │ │ ├── Shell.icns │ │ │ │ ├── Tool.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Restart.icns │ │ │ │ ├── Windows.icns │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── HardDrive.icns │ │ │ │ ├── Password.icns │ │ │ │ ├── Selected.icns │ │ │ │ ├── Selector.icns │ │ │ │ ├── SetDefault.icns │ │ │ │ ├── ShutDown.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ └── ExtHardDrive.icns │ │ │ │ └── GoldenGate │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── Left.icns │ │ │ │ ├── Lock.icns │ │ │ │ ├── Right.icns │ │ │ │ ├── Shell.icns │ │ │ │ ├── Tool.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Restart.icns │ │ │ │ ├── Windows.icns │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── HardDrive.icns │ │ │ │ ├── Password.icns │ │ │ │ ├── Selected.icns │ │ │ │ ├── Selector.icns │ │ │ │ ├── SetDefault.icns │ │ │ │ ├── ShutDown.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ └── ExtHardDrive.icns │ │ └── Audio │ │ │ └── OCEFIAudio_VoiceOver_Boot.mp3 │ ├── Kexts │ │ ├── Lilu.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── Lilu │ │ │ │ └── Info.plist │ │ ├── AppleALC.kext │ │ │ └── Contents │ │ │ │ └── MacOS │ │ │ │ └── AppleALC │ │ ├── CpuTscSync.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── CpuTscSync │ │ │ │ └── Info.plist │ │ ├── SMCSuperIO.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── SMCSuperIO │ │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── VirtualSMC │ │ │ │ └── Info.plist │ │ ├── SMCProcessor.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── SMCProcessor │ │ │ │ └── Info.plist │ │ ├── USBWakeFixup.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── USBWakeFixup │ │ │ │ └── Info.plist │ │ ├── FeatureUnlock.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── FeatureUnlock │ │ │ │ └── Info.plist │ │ ├── WhateverGreen.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── WhateverGreen │ │ │ │ └── Info.plist │ │ ├── RealtekRTL8111.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── RealtekRTL8111 │ │ │ │ ├── Resources │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ ├── RestrictEvents.kext │ │ │ └── Contents │ │ │ │ ├── MacOS │ │ │ │ └── RestrictEvents │ │ │ │ └── Info.plist │ │ ├── XHCI-unsupported.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ └── USBMap.kext │ │ │ └── Contents │ │ │ └── Info.plist │ └── config.plist ├── BOOT │ ├── .contentFlavour │ ├── .contentVisibility │ └── BOOTx64.efi └── APPLE │ └── UPDATERS │ └── MULTIUPDATER │ ├── DpUtil.efi │ ├── MultiUpdater.efi │ ├── MCDP29xxIsp_V1.10.bin │ ├── MCDP29xxApp_V2.025.bin │ ├── DpUtil.efi.x86legacyap.im4m │ └── MultiUpdater.efi.x86legacyap.im4m ├── Images ├── 1.png ├── 2.png ├── rate1_w.png └── vncsmnl.gif ├── Benchmark ├── CPU_Benchmark_v5.png ├── CPU_Benchmark_v6.png ├── GPU_Benchmark_Metal_v5.png ├── GPU_Benchmark_Metal_v6.png ├── GPU_Benchmark_OpenCL_v5.png └── GPU_Benchmark_OpenCL_v6.png ├── BIOS └── BD4X99-UnlockTurbo-ResizeBar.rom ├── .gitignore ├── LICENSE ├── README.md └── CODE_OF_CONDUCT.md /EFI/OC/Tools/.tools: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EFI/BOOT/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/OC/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/BOOT/.contentVisibility: -------------------------------------------------------------------------------- 1 | Disabled -------------------------------------------------------------------------------- /Images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Images/1.png -------------------------------------------------------------------------------- /Images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Images/2.png -------------------------------------------------------------------------------- /Images/rate1_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Images/rate1_w.png -------------------------------------------------------------------------------- /Images/vncsmnl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Images/vncsmnl.gif -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-DMAR.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-DMAR.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-GPRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-GPRW.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-UNC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-UNC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-USBW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-USBW.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /Benchmark/CPU_Benchmark_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Benchmark/CPU_Benchmark_v5.png -------------------------------------------------------------------------------- /Benchmark/CPU_Benchmark_v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Benchmark/CPU_Benchmark_v6.png -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-RTC0-RANGE.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-RTC0-RANGE.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-SBUS-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/ACPI/SSDT-SBUS-MCHC.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /Benchmark/GPU_Benchmark_Metal_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Benchmark/GPU_Benchmark_Metal_v5.png -------------------------------------------------------------------------------- /Benchmark/GPU_Benchmark_Metal_v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Benchmark/GPU_Benchmark_Metal_v6.png -------------------------------------------------------------------------------- /EFI/OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /BIOS/BD4X99-UnlockTurbo-ResizeBar.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/BIOS/BD4X99-UnlockTurbo-ResizeBar.rom -------------------------------------------------------------------------------- /Benchmark/GPU_Benchmark_OpenCL_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Benchmark/GPU_Benchmark_OpenCL_v5.png -------------------------------------------------------------------------------- /Benchmark/GPU_Benchmark_OpenCL_v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/Benchmark/GPU_Benchmark_OpenCL_v6.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /EFI/APPLE/UPDATERS/MULTIUPDATER/DpUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/APPLE/UPDATERS/MULTIUPDATER/DpUtil.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/APPLE/UPDATERS/MULTIUPDATER/MultiUpdater.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/APPLE/UPDATERS/MULTIUPDATER/MultiUpdater.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns -------------------------------------------------------------------------------- /EFI/APPLE/UPDATERS/MULTIUPDATER/MCDP29xxIsp_V1.10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/APPLE/UPDATERS/MULTIUPDATER/MCDP29xxIsp_V1.10.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.mp3 -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns -------------------------------------------------------------------------------- /EFI/APPLE/UPDATERS/MULTIUPDATER/MCDP29xxApp_V2.025.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/APPLE/UPDATERS/MULTIUPDATER/MCDP29xxApp_V2.025.bin -------------------------------------------------------------------------------- /EFI/OC/Kexts/CpuTscSync.kext/Contents/MacOS/CpuTscSync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/CpuTscSync.kext/Contents/MacOS/CpuTscSync -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBWakeFixup.kext/Contents/MacOS/USBWakeFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/USBWakeFixup.kext/Contents/MacOS/USBWakeFixup -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/APPLE/UPDATERS/MULTIUPDATER/DpUtil.efi.x86legacyap.im4m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/APPLE/UPDATERS/MULTIUPDATER/DpUtil.efi.x86legacyap.im4m -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/MacOS/RealtekRTL8111 -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/APPLE/UPDATERS/MULTIUPDATER/MultiUpdater.efi.x86legacyap.im4m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/APPLE/UPDATERS/MULTIUPDATER/MultiUpdater.efi.x86legacyap.im4m -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH/HEAD/EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # General 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | 6 | # Icon must end with two \r 7 | Icon 8 | 9 | # Thumbnails 10 | ._* 11 | 12 | # Files that might appear in the root of a volume 13 | .DocumentRevisions-V100 14 | .fseventsd 15 | .Spotlight-V100 16 | .TemporaryItems 17 | .Trashes 18 | .VolumeIcon.icns 19 | .com.apple.timemachine.donotpresent 20 | 21 | # Directories potentially created on remote AFP share 22 | .AppleDB 23 | .AppleDesktop 24 | Network Trash Folder 25 | Temporary Items 26 | .apdisk 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Vinícius Manoel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBWakeFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18G95 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | USBWakeFixup 11 | CFBundleIdentifier 12 | com.osy86.USBWakeFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | USBWakeFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10G8 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18G74 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1030 39 | DTXcodeBuild 40 | 10G8 41 | IOKitPersonalities 42 | 43 | Fake XHCI 44 | 45 | CFBundleIdentifier 46 | com.osy86.USBWakeFixup 47 | IOClass 48 | USBWakeFixup 49 | IONameMatch 50 | PNP0D10 51 | IOPropertyMatch 52 | 53 | _UID 54 | WAKE 55 | 56 | IOProviderClass 57 | IOACPIPlatformDevice 58 | 59 | 60 | NSHumanReadableCopyright 61 | Copyright © 2019 osy86. All rights reserved. 62 | OSBundleLibraries 63 | 64 | com.apple.iokit.IOACPIFamily 65 | 1.0d1 66 | com.apple.kpi.iokit 67 | 7.0 68 | com.apple.kpi.libkern 69 | 8.0d0 70 | 71 | 72 | 73 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23G93 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FeatureUnlock 11 | CFBundleIdentifier 12 | com.khronokernel.FeatureUnlock 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FeatureUnlock 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 13.3 35 | DTSDKBuild 36 | 22E245 37 | DTSDKName 38 | macosx13.3 39 | DTXcode 40 | 1431 41 | DTXcodeBuild 42 | 14E300c 43 | IOKitPersonalities 44 | 45 | FeatureUnlock 46 | 47 | CFBundleIdentifier 48 | com.khronokernel.FeatureUnlock 49 | IOClass 50 | FeatureUnlock 51 | IOMatchCategory 52 | FeatureUnlock 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2021 Khronokernel. All rights reserved. 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.4.7 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.unsupported 78 | 12.0.0 79 | 80 | OSBundleRequired 81 | Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21H1320 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.3.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21H1320 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.3.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23G93 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.6.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 13.3 37 | DTSDKBuild 38 | 22E245 39 | DTSDKName 40 | macosx13.3 41 | DTXcode 42 | 1431 43 | DTXcodeBuild 44 | 14E300c 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 | IOBSD 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.kernel.6.0 70 | 7.9.9 71 | com.apple.kpi.bsd 72 | 8.0.0 73 | com.apple.kpi.iokit 74 | 8.0.0 75 | com.apple.kpi.libkern 76 | 8.0.0 77 | com.apple.kpi.mach 78 | 8.0.0 79 | com.apple.kpi.unsupported 80 | 8.0.0 81 | 82 | OSBundleLibraries_x86_64 83 | 84 | com.apple.kpi.bsd 85 | 10.0.0 86 | com.apple.kpi.dsep 87 | 10.0.0 88 | com.apple.kpi.iokit 89 | 10.0.0 90 | com.apple.kpi.libkern 91 | 10.0.0 92 | com.apple.kpi.mach 93 | 10.0.0 94 | com.apple.kpi.unsupported 95 | 10.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/CpuTscSync.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23H124 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CpuTscSync 11 | CFBundleIdentifier 12 | org.lvs1974.driver.CpuTscSync 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CpuTscSync 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 13.3 37 | DTSDKBuild 38 | 22E245 39 | DTSDKName 40 | macosx13.3 41 | DTXcode 42 | 1431 43 | DTXcodeBuild 44 | 14E300c 45 | IOKitPersonalities 46 | 47 | CpuTscSync 48 | 49 | CFBundleIdentifier 50 | org.lvs1974.driver.CpuTscSync 51 | IOClass 52 | CpuTscSync 53 | IOMatchCategory 54 | CpuTscSync 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | VoodooTSCSync 61 | 62 | CFBundleIdentifier 63 | org.lvs1974.driver.CpuTscSync 64 | IOClass 65 | VoodooTSCSync 66 | IOMatchCategory 67 | VoodooTSCSync 68 | IOProviderClass 69 | AppleACPICPU 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.8 74 | NSHumanReadableCopyright 75 | Copyright © 2020 lvs1974. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | com.apple.iokit.IOACPIFamily 83 | 1.0.0d1 84 | com.apple.kpi.bsd 85 | 12.0.0 86 | com.apple.kpi.dsep 87 | 12.0.0 88 | com.apple.kpi.iokit 89 | 12.0.0 90 | com.apple.kpi.libkern 91 | 12.0.0 92 | com.apple.kpi.mach 93 | 12.0.0 94 | com.apple.kpi.unsupported 95 | 12.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/RealtekRTL8111.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1030 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | RealtekRTL8111 11 | CFBundleIdentifier 12 | com.insanelymac.RealtekRTL8111 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RealtekRTL8111 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.4.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.4.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10G8 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18G74 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1030 41 | DTXcodeBuild 42 | 10G8 43 | IOKitPersonalities 44 | 45 | RTL8111 PCIe Adapter 46 | 47 | CFBundleIdentifier 48 | com.insanelymac.RealtekRTL8111 49 | Driver Parameters 50 | 51 | disableASPM 52 | 53 | enableCSO6 54 | 55 | enableTSO4 56 | 57 | enableTSO6 58 | 59 | fallbackMAC 60 | 61 | intrMitigate 62 | 53080 63 | rxPolling 64 | 65 | 66 | Driver_Version 67 | 2.4.2 68 | IOClass 69 | RTL8111 70 | IOPCIMatch 71 | 0x816810ec 0x81681186 0x250210ec 0x260010ec 72 | IOProbeScore 73 | 1000 74 | IOProviderClass 75 | IOPCIDevice 76 | Model 77 | RTL8111 78 | Vendor 79 | Realtek 80 | 81 | 82 | LSMinimumSystemVersion 83 | 10.14 84 | NSHumanReadableCopyright 85 | Copyright © 2013 Laura Müller. All rights reserved. 86 | OSBundleLibraries 87 | 88 | com.apple.iokit.IONetworkingFamily 89 | 1.5.0 90 | com.apple.iokit.IOPCIFamily 91 | 1.7 92 | com.apple.kpi.bsd 93 | 8.10.0 94 | com.apple.kpi.iokit 95 | 8.10.0 96 | com.apple.kpi.libkern 97 | 8.10.0 98 | com.apple.kpi.mach 99 | 8.10.0 100 | 101 | OSBundleRequired 102 | Network-Root 103 | 104 | 105 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23G93 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.6.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 13.3 37 | DTSDKBuild 38 | 22E245 39 | DTSDKName 40 | macosx13.3 41 | DTXcode 42 | 1431 43 | DTXcodeBuild 44 | 14E300c 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.6 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 | 10.0.0 92 | com.apple.kpi.dsep 93 | 10.0.0 94 | com.apple.kpi.iokit 95 | 10.0.0 96 | com.apple.kpi.libkern 97 | 10.0.0 98 | com.apple.kpi.mach 99 | 10.0.0 100 | com.apple.kpi.unsupported 101 | 10.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/XHCI-unsupported.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Version 0.9.2, Copyright 2018, RehabMan (GPLv2) 7 | CFBundleIdentifier 8 | org.rehabman.injector.XHCI.unsupported 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | XHCI-unsupported 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 0.9.2 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 0.9.2 21 | IOKitPersonalities 22 | 23 | AppleUSBXHCILPTH 9-series 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.usb.AppleUSBXHCIPCI 27 | IOClass 28 | AppleUSBXHCILPTH 29 | IOPCIPauseCompatible 30 | 31 | IOPCIPrimaryMatch 32 | 0x8cb18086 33 | IOPCITunnelCompatible 34 | 35 | IOProbeScore 36 | 900 37 | IOProviderClass 38 | IOPCIDevice 39 | 40 | AppleUSBXHCILPTH X99 41 | 42 | CFBundleIdentifier 43 | com.apple.driver.usb.AppleUSBXHCIPCI 44 | IOClass 45 | AppleUSBXHCILPTH 46 | IOPCIPauseCompatible 47 | 48 | IOPCIPrimaryMatch 49 | 0x8d318086 50 | IOPCITunnelCompatible 51 | 52 | IOProbeScore 53 | 900 54 | IOProviderClass 55 | IOPCIDevice 56 | alternate:IOClass 57 | AppleUSBXHCILPTHB 58 | 59 | AppleUSBXHCISPT 200-X299 60 | 61 | CFBundleIdentifier 62 | com.apple.driver.usb.AppleUSBXHCIPCI 63 | IOClass 64 | AppleUSBXHCISPT 65 | IOPCIPauseCompatible 66 | 67 | IOPCIPrimaryMatch 68 | 0xa2af8086 69 | IOPCITunnelCompatible 70 | 71 | IOProbeScore 72 | 900 73 | IOProviderClass 74 | IOPCIDevice 75 | 76 | AppleUSBXHCISPT 300 77 | 78 | CFBundleIdentifier 79 | com.apple.driver.usb.AppleUSBXHCIPCI 80 | IOClass 81 | AppleUSBXHCISPT 82 | IOPCIPauseCompatible 83 | 84 | IOPCIPrimaryMatch 85 | 0x9ded8086 0xa36d8086 0x02ed8086 86 | IOPCITunnelCompatible 87 | 88 | IOProbeScore 89 | 900 90 | IOProviderClass 91 | IOPCIDevice 92 | 93 | AppleUSBXHCISPT 400 94 | 95 | CFBundleIdentifier 96 | com.apple.driver.usb.AppleUSBXHCIPCI 97 | IOClass 98 | AppleUSBXHCISPT 99 | IOPCIPauseCompatible 100 | 101 | IOPCIPrimaryMatch 102 | 0x34ed8086 0x06ed8086 0xa3af8086 103 | IOPCITunnelCompatible 104 | 105 | IOProbeScore 106 | 900 107 | IOProviderClass 108 | IOPCIDevice 109 | 110 | AppleUSBXHCISPT 500 111 | 112 | CFBundleIdentifier 113 | com.apple.driver.usb.AppleUSBXHCIPCI 114 | IOClass 115 | AppleUSBXHCISPT 116 | IOPCIPauseCompatible 117 | 118 | IOPCIPrimaryMatch 119 | 0x43ed8086 120 | IOPCITunnelCompatible 121 | 122 | IOProbeScore 123 | 900 124 | IOProviderClass 125 | IOPCIDevice 126 | 127 | 128 | OSBundleRequired 129 | Root 130 | 131 | 132 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HUANANZHI X99 BD4 + Intel® Xeon® E5-2670 v3 + AMD Radeon™ RX 6600 + Fenvi T919 2 | 3 | ![Image alt text](/Images/1.png) 4 | 5 |
6 | 7 |
8 | 9 | [![Apple Badge](https://img.shields.io/badge/Apple-000?logo=apple&logoColor=fff&style=flat)](https://www.apple.com/) 10 | [![macOS Badge](https://img.shields.io/badge/macOS-000?logo=macos&logoColor=fff&style=flat)](https://www.apple.com/macos/ventura/) 11 | [![Intel Badge](https://img.shields.io/badge/Intel-0071C5?logo=intel&logoColor=fff&style=flat)](https://www.intel.com.br/content/www/br/pt/products/sku/81709/intel-xeon-processor-e52670-v3-30m-cache-2-30-ghz/specifications.html) 12 | [![AMD Badge](https://img.shields.io/badge/AMD-ED1C24?logo=amd&logoColor=fff&style=flat)](https://www.amd.com/pt/graphics/amd-radeon-rx-6600-series) 13 | [![Bluetooth Badge](https://img.shields.io/badge/Bluetooth-0082FC?logo=bluetooth&logoColor=fff&style=flat)](https://fenvi.com/product_detail_16.html) 14 | 15 | **Latest working macOS**: 15.0.1 16 |
17 | **Current OpenCore**: 1.0.2 18 | 19 | --- 20 | 21 | ## Complete hardware specs 22 | 23 | - Motherboard Name: Huananzhi X99-BD4 | Motherboard Chipset: Intel Lynx Point - B85, Intel Haswell-EP 24 | - CPU Type: 12-Core Intel® Xeon® E5-2670 v3, 2266 MHz (23 x 99) 25 | - Memory: 2 X 16 GB DDR4-3200 Reg. ECC DDR4 SDRAM - Atermiter 26 | - Video Adapter: AMD Radeon™ RX 6600 (8176 MB) 27 | - Audio Adapter: Realtek ALC887 @ Intel Lynx Point PCH - High Definition Audio Controller 28 | - Ethernet Adapter: Realtek PCIe GbE Family Controller 29 | - Network Adapter: Broadcom 802.11ac Network Adapter 30 | - Disk Drive: XrayDisk 1TB SSD (953 GB) 31 | 32 | ## What works 33 | 34 | - macOS Sequoia, Sonoma, Ventura, Big Sur, Catalina and macOS Monterey 35 | - Audio 36 | - HDMI/DP (in dGPU - Works OOB) 37 | - All USB ports 38 | - Everything iCloud related (Drive, iMessage, Facetime, unlock with Apple Watch, etc) 39 | - Temperature monitoring for everything 40 | - DRM content (Netflix, ATV+, Airplay 2 mirroring etc) 41 | - Shutdown/Reboot/Update to newer macOS builds over time 42 | - Resizable Bar ON (ResizeUsePciRbIo = true) 43 | - Wi-fi/Bluetooth/AirDrop - OpenCore Legacy Patcher 44 | 45 | ## Kexts used: 46 | 47 | - [x] AppleALC.kext 48 | - [x] CpuTscSync.kext 49 | - [x] FeatureUnlock.kext 50 | - [x] Lilu.kext 51 | - [x] RealtekRTL8111.kext 52 | - [x] RestrictEvents.kext 53 | - [x] SMCSuperIO.kext 54 | - [x] SMCProcessor.kext 55 | - [x] USBMap.kext 56 | - [x] VirtualSMC.kext 57 | - [x] WhateverGreen.kext 58 | - [x] XHCI-unsupported.kext 59 | 60 | ## How does it works (if you have the same hardware): @ThalesM1 61 | 0. Config the BIOS, expecs bellow 62 | 1. Get the EFI 63 | 2. Config the SMBIOS, generating one with genSMBIOS, then edit it using properTree: ROM, SystemUUID, MLB, system serial number 64 | 3. Download **macOs Catalina** from macrecovery 65 | 4. Create the bootable pen drive, install Catalina from Open Core 66 | 5. Update from oficial Apple 67 | 68 | 69 | ## BIOS Settings: @ThalesM1 70 | Access the bios, using DEL key during start 71 | ## Disable 72 | 1. Go to advanded -> ACPI settings -> ACPI sleep state -> disable 73 | 2. Go to advanded -> NCT55320 Super IO configuration -> Serial Port 1 -> serial port -> disable 74 | 3. Go to advanded -> CSM Configuration -> video -> change to UEFI -> disable 75 | 4. Reboot the machine 76 | 5. Go to advanded -> CSM Configuration -> CSM Support -> disable 77 | 6. IntelRCSetup -> Processor Configuration -> MSR Lock Control -> disable 78 | 7. IntelRCSetup -> Processor Configuration -> Execute Disable Bit -> disable 79 | 80 | ## Enable 81 | 1. Go to advanded -> USB Configuration -> XHCI Hand-off -> enable 82 | 2. Go to advanded -> USB Configuration -> EHCI Hand-off -> enable 83 | 3. InterRCSetup -> Processor Configuration -> Hyper Threading -> enable 84 | 85 | 86 | ## Benchmark Results: 87 | 88 | Geekbench v5 | Geekbench v6 89 | :-------------------------:|:-------------------------: 90 | [CPU Benchmark](/Benchmark/CPU_Benchmark_v5.png) | [CPU Benchmark](/Benchmark/CPU_Benchmark_v6.png) 91 | [GPU Metal](/Benchmark/GPU_Benchmark_Metal_v5.png) | [GPU Metal](/Benchmark/GPU_Benchmark_Metal_v6.png) 92 | [GPU OpenCL](/Benchmark/GPU_Benchmark_OpenCL_v5.png) | [GPU OpenCL](/Benchmark/GPU_Benchmark_OpenCL_v6.png) 93 | 94 | ## Thanks/Credits 95 | 96 | - [Opencore Team](https://dortania.github.io/getting-started/) 97 | - [BASE-EFI-INTEL-HEDT-4THGEN-X99-HASWELL-E](https://github.com/luchina-gabriel/BASE-EFI-INTEL-HEDT-4THGEN-X99-HASWELL-E) 98 | - [Gabriel Luchina](https://github.com/luchina-gabriel) 99 | 100 | ## Discord - Universo Hackintosh 101 | 102 | - [Access Discord](https://discord.universohackintosh.com.br) 103 | 104 |
signature
105 |
like
106 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | vncsmnl. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 23G93 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | RestrictEvents 11 | CFBundleIdentifier 12 | as.vit9696.RestrictEvents 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RestrictEvents 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.5 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.5 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 13.3 35 | DTSDKBuild 36 | 22E245 37 | DTSDKName 38 | macosx13.3 39 | DTXcode 40 | 1431 41 | DTXcodeBuild 42 | 14E300c 43 | IOKitPersonalities 44 | 45 | as.vit9696.RestrictEfiCheck 46 | 47 | CFBundleIdentifier 48 | as.vit9696.RestrictEvents 49 | IOClass 50 | IOService 51 | IOMatchCategory 52 | com_apple_driver_eficheck 53 | IONameMatch 54 | 55 | pci8086,1c41 56 | pci8086,1c42 57 | pci8086,1c43 58 | pci8086,1c44 59 | pci8086,1c46 60 | pci8086,1c47 61 | pci8086,1c49 62 | pci8086,1c4a 63 | pci8086,1c4b 64 | pci8086,1c4c 65 | pci8086,1c4d 66 | pci8086,1c4e 67 | pci8086,1c4f 68 | pci8086,1c50 69 | pci8086,1c52 70 | pci8086,1c5c 71 | pci8086,1d41 72 | pci8086,1e42 73 | pci8086,1e44 74 | pci8086,1e46 75 | pci8086,1e47 76 | pci8086,1e48 77 | pci8086,1e49 78 | pci8086,1e4a 79 | pci8086,1e53 80 | pci8086,1e55 81 | pci8086,1e56 82 | pci8086,1e57 83 | pci8086,1e58 84 | pci8086,1e59 85 | pci8086,1e5d 86 | pci8086,1e5e 87 | pci8086,1e5f 88 | pci8086,3b02 89 | pci8086,3b03 90 | pci8086,3b06 91 | pci8086,3b07 92 | pci8086,3b08 93 | pci8086,3b09 94 | pci8086,3b0a 95 | pci8086,3b0b 96 | pci8086,3b0f 97 | pci8086,3b12 98 | pci8086,3b14 99 | pci8086,3b16 100 | pci8086,8c44 101 | pci8086,8c4b 102 | pci8086,8cc1 103 | pci8086,8cc2 104 | pci8086,8cc3 105 | pci8086,8cc4 106 | pci8086,8cc6 107 | pci8086,8c41 108 | pci8086,8c42 109 | pci8086,8c44 110 | pci8086,8c46 111 | pci8086,8c49 112 | pci8086,8c4a 113 | pci8086,8c4b 114 | pci8086,8c4c 115 | pci8086,8c4e 116 | pci8086,8c4f 117 | pci8086,8c50 118 | pci8086,8c52 119 | pci8086,8c54 120 | pci8086,8c56 121 | pci8086,8c5c 122 | pci8086,8d44 123 | pci8086,8d47 124 | pci8086,9cc1 125 | pci8086,9cc2 126 | pci8086,9cc3 127 | pci8086,9cc5 128 | pci8086,9cc6 129 | pci8086,9cc7 130 | pci8086,9cc9 131 | pci8086,9c41 132 | pci8086,9c43 133 | pci8086,9c45 134 | pci8086,9d41 135 | pci8086,9d43 136 | pci8086,9d46 137 | pci8086,9d48 138 | pci8086,9d4b 139 | pci8086,9d4e 140 | pci8086,a145 141 | pci8086,a151 142 | pci8086,a306 143 | 144 | IOProbeScore 145 | 5000 146 | IOProviderClass 147 | IOPCIDevice 148 | 149 | as.vit9696.RestrictEvents 150 | 151 | CFBundleIdentifier 152 | as.vit9696.RestrictEvents 153 | IOClass 154 | RestrictEvents 155 | IOMatchCategory 156 | RestrictEvents 157 | IOProviderClass 158 | IOResources 159 | IOResourceMatch 160 | IOKit 161 | 162 | 163 | LSMinimumSystemVersion 164 | 10.8 165 | NSHumanReadableCopyright 166 | Copyright © 2020 vit9696. All rights reserved. 167 | OSBundleCompatibleVersion 168 | 1.0 169 | OSBundleLibraries 170 | 171 | as.vit9696.Lilu 172 | 1.2.0 173 | com.apple.kpi.bsd 174 | 12.0.0 175 | com.apple.kpi.dsep 176 | 12.0.0 177 | com.apple.kpi.iokit 178 | 12.0.0 179 | com.apple.kpi.libkern 180 | 12.0.0 181 | com.apple.kpi.mach 182 | 12.0.0 183 | com.apple.kpi.unsupported 184 | 12.0.0 185 | 186 | OSBundleRequired 187 | Root 188 | 189 | 190 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21H1320 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.3.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 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.kernel.6.0 399 | 7.9.9 400 | com.apple.kpi.bsd 401 | 8.0.0 402 | com.apple.kpi.iokit 403 | 8.0.0 404 | com.apple.kpi.libkern 405 | 8.0.0 406 | com.apple.kpi.mach 407 | 8.0.0 408 | com.apple.kpi.unsupported 409 | 8.0.0 410 | 411 | OSBundleLibraries_x86_64 412 | 413 | as.vit9696.Lilu 414 | 1.2.0 415 | com.apple.iokit.IOACPIFamily 416 | 1.0.0d1 417 | com.apple.kpi.bsd 418 | 10.0.0 419 | com.apple.kpi.iokit 420 | 10.0.0 421 | com.apple.kpi.libkern 422 | 10.0.0 423 | com.apple.kpi.mach 424 | 10.0.0 425 | com.apple.kpi.unsupported 426 | 10.0.0 427 | 428 | OSBundleRequired 429 | Root 430 | 431 | 432 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | v1.0 9 | CFBundleIdentifier 10 | com.corpnewt.USBMap 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBMap 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | MacPro7,1-XHCI 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBHostMergeProperties 29 | IOClass 30 | AppleUSBHostMergeProperties 31 | IOParentMatch 32 | 33 | IOPropertyMatch 34 | 35 | pcidebug 36 | 0:20:0 37 | 38 | 39 | IOProviderClass 40 | AppleUSBXHCILPTH 41 | IOProviderMergeProperties 42 | 43 | kUSBMuxEnabled 44 | 45 | port-count 46 | 47 | EgAAAA== 48 | 49 | ports 50 | 51 | HS01 52 | 53 | UsbConnector 54 | 0 55 | port 56 | 57 | AQAAAA== 58 | 59 | 60 | HS02 61 | 62 | UsbConnector 63 | 0 64 | port 65 | 66 | AgAAAA== 67 | 68 | 69 | HS03 70 | 71 | UsbConnector 72 | 0 73 | port 74 | 75 | AwAAAA== 76 | 77 | 78 | HS04 79 | 80 | UsbConnector 81 | 0 82 | port 83 | 84 | BAAAAA== 85 | 86 | 87 | HS05 88 | 89 | UsbConnector 90 | 255 91 | port 92 | 93 | BQAAAA== 94 | 95 | 96 | HS06 97 | 98 | UsbConnector 99 | 0 100 | #port 101 | 102 | BgAAAA== 103 | 104 | 105 | HS07 106 | 107 | UsbConnector 108 | 0 109 | port 110 | 111 | BwAAAA== 112 | 113 | 114 | HS08 115 | 116 | UsbConnector 117 | 0 118 | port 119 | 120 | CAAAAA== 121 | 122 | 123 | HS09 124 | 125 | UsbConnector 126 | 0 127 | #port 128 | 129 | CQAAAA== 130 | 131 | 132 | HS10 133 | 134 | UsbConnector 135 | 0 136 | port 137 | 138 | CgAAAA== 139 | 140 | 141 | HS11 142 | 143 | UsbConnector 144 | 0 145 | port 146 | 147 | CwAAAA== 148 | 149 | 150 | HS12 151 | 152 | UsbConnector 153 | 0 154 | port 155 | 156 | DAAAAA== 157 | 158 | 159 | SS01 160 | 161 | UsbConnector 162 | 3 163 | port 164 | 165 | EAAAAA== 166 | 167 | 168 | SS02 169 | 170 | UsbConnector 171 | 3 172 | port 173 | 174 | EQAAAA== 175 | 176 | 177 | SS03 178 | 179 | UsbConnector 180 | 3 181 | port 182 | 183 | EgAAAA== 184 | 185 | 186 | 187 | 188 | model 189 | MacPro7,1 190 | 191 | MacPro7,1-EH02 192 | 193 | CFBundleIdentifier 194 | com.apple.driver.AppleUSBHostMergeProperties 195 | IOClass 196 | AppleUSBHostMergeProperties 197 | IOParentMatch 198 | 199 | IOPropertyMatch 200 | 201 | pcidebug 202 | 0:26:0 203 | 204 | 205 | IOProviderClass 206 | AppleUSBEHCIPCI 207 | IOProviderMergeProperties 208 | 209 | kUSBMuxEnabled 210 | 211 | port-count 212 | 213 | AAAAAA== 214 | 215 | ports 216 | 217 | PRT1 218 | 219 | UsbConnector 220 | 0 221 | #port 222 | 223 | AQAAAA== 224 | 225 | 226 | PRT2 227 | 228 | UsbConnector 229 | 255 230 | #port 231 | 232 | AgAAAA== 233 | 234 | 235 | 236 | 237 | model 238 | MacPro7,1 239 | 240 | MacPro7,1-HUB-1a100000 241 | 242 | CFBundleIdentifier 243 | com.apple.driver.AppleUSBHostMergeProperties 244 | IOClass 245 | AppleUSBHostMergeProperties 246 | IOProviderClass 247 | AppleUSB20InternalHub 248 | IOProviderMergeProperties 249 | 250 | kUSBMuxEnabled 251 | 252 | port-count 253 | 254 | AAAAAA== 255 | 256 | ports 257 | 258 | PRT1 259 | 260 | UsbConnector 261 | 0 262 | #port 263 | 264 | AQAAAA== 265 | 266 | 267 | PRT2 268 | 269 | UsbConnector 270 | 0 271 | #port 272 | 273 | AgAAAA== 274 | 275 | 276 | PRT3 277 | 278 | UsbConnector 279 | 0 280 | #port 281 | 282 | AwAAAA== 283 | 284 | 285 | PRT4 286 | 287 | UsbConnector 288 | 0 289 | #port 290 | 291 | BAAAAA== 292 | 293 | 294 | PRT5 295 | 296 | UsbConnector 297 | 0 298 | #port 299 | 300 | BQAAAA== 301 | 302 | 303 | PRT6 304 | 305 | UsbConnector 306 | 0 307 | #port 308 | 309 | BgAAAA== 310 | 311 | 312 | 313 | 314 | model 315 | MacPro7,1 316 | locationID 317 | 437256192 318 | IOProbeScore 319 | 5000 320 | 321 | MacPro7,1-EH01 322 | 323 | CFBundleIdentifier 324 | com.apple.driver.AppleUSBHostMergeProperties 325 | IOClass 326 | AppleUSBHostMergeProperties 327 | IOParentMatch 328 | 329 | IOPropertyMatch 330 | 331 | pcidebug 332 | 0:29:0 333 | 334 | 335 | IOProviderClass 336 | AppleUSBEHCIPCI 337 | IOProviderMergeProperties 338 | 339 | kUSBMuxEnabled 340 | 341 | port-count 342 | 343 | AAAAAA== 344 | 345 | ports 346 | 347 | PRT1 348 | 349 | UsbConnector 350 | 0 351 | #port 352 | 353 | AQAAAA== 354 | 355 | 356 | PRT2 357 | 358 | UsbConnector 359 | 255 360 | #port 361 | 362 | AgAAAA== 363 | 364 | 365 | 366 | 367 | model 368 | MacPro7,1 369 | 370 | MacPro7,1-HUB-1d100000 371 | 372 | CFBundleIdentifier 373 | com.apple.driver.AppleUSBHostMergeProperties 374 | IOClass 375 | AppleUSBHostMergeProperties 376 | IOProviderClass 377 | AppleUSB20InternalHub 378 | IOProviderMergeProperties 379 | 380 | kUSBMuxEnabled 381 | 382 | port-count 383 | 384 | AAAAAA== 385 | 386 | ports 387 | 388 | PRT1 389 | 390 | UsbConnector 391 | 0 392 | #port 393 | 394 | AQAAAA== 395 | 396 | 397 | PRT2 398 | 399 | UsbConnector 400 | 0 401 | #port 402 | 403 | AgAAAA== 404 | 405 | 406 | PRT3 407 | 408 | UsbConnector 409 | 0 410 | #port 411 | 412 | AwAAAA== 413 | 414 | 415 | PRT4 416 | 417 | UsbConnector 418 | 0 419 | #port 420 | 421 | BAAAAA== 422 | 423 | 424 | PRT5 425 | 426 | UsbConnector 427 | 0 428 | #port 429 | 430 | BQAAAA== 431 | 432 | 433 | PRT6 434 | 435 | UsbConnector 436 | 0 437 | #port 438 | 439 | BgAAAA== 440 | 441 | 442 | 443 | 444 | model 445 | MacPro7,1 446 | locationID 447 | 487587840 448 | IOProbeScore 449 | 5000 450 | 451 | 452 | OSBundleRequired 453 | Root 454 | 455 | 456 | -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | # BASE EFI-HUANANZHI-X99-BD4-HACKINTOSH 6 | 7 | 8 | # BY: https://github.com/vncsmnl/EFI-HUANANZHI-X99-BD4-HACKINTOSH 9 | 10 | # BY: https://luchina.com.br 11 | 12 | # DISCORD: https://discord.universohackintosh.com 13 | 14 | ACPI 15 | 16 | Add 17 | 18 | 19 | Comment 20 | SSDT-DMAR.aml 21 | Enabled 22 | 23 | Path 24 | SSDT-DMAR.aml 25 | 26 | 27 | Comment 28 | SSDT-EC.aml 29 | Enabled 30 | 31 | Path 32 | SSDT-EC.aml 33 | 34 | 35 | Comment 36 | SSDT-GPRW.aml 37 | Enabled 38 | 39 | Path 40 | SSDT-GPRW.aml 41 | 42 | 43 | Comment 44 | SSDT-HPET.aml 45 | Enabled 46 | 47 | Path 48 | SSDT-HPET.aml 49 | 50 | 51 | Comment 52 | SSDT-PLUG.aml 53 | Enabled 54 | 55 | Path 56 | SSDT-PLUG.aml 57 | 58 | 59 | Comment 60 | SSDT-RTC0-RANGE.aml 61 | Enabled 62 | 63 | Path 64 | SSDT-RTC0-RANGE.aml 65 | 66 | 67 | Comment 68 | SSDT-SBUS-MCHC.aml 69 | Enabled 70 | 71 | Path 72 | SSDT-SBUS-MCHC.aml 73 | 74 | 75 | Comment 76 | SSDT-UNC.aml 77 | Enabled 78 | 79 | Path 80 | SSDT-UNC.aml 81 | 82 | 83 | Comment 84 | SSDT-USBW.aml 85 | Enabled 86 | 87 | Path 88 | SSDT-USBW.aml 89 | 90 | 91 | Delete 92 | 93 | 94 | All 95 | 96 | Comment 97 | Drop DMAR Table 98 | Enabled 99 | 100 | OemTableId 101 | AAAAAA== 102 | TableLength 103 | 0 104 | TableSignature 105 | RE1BUg== 106 | 107 | 108 | Patch 109 | 110 | 111 | Base 112 | 113 | BaseSkip 114 | 0 115 | Comment 116 | HPET _CRS to XCRS Rename 117 | Count 118 | 0 119 | Enabled 120 | 121 | Find 122 | Bl9DUlM= 123 | Limit 124 | 0 125 | Mask 126 | 127 | OemTableId 128 | AAAAAA== 129 | Replace 130 | BlhDUlM= 131 | ReplaceMask 132 | 133 | Skip 134 | 0 135 | TableLength 136 | 0 137 | TableSignature 138 | AAAAAA== 139 | 140 | 141 | Base 142 | 143 | BaseSkip 144 | 0 145 | Comment 146 | RTC IRQ 8 Patch 147 | Count 148 | 0 149 | Enabled 150 | 151 | Find 152 | IgABeQA= 153 | Limit 154 | 0 155 | Mask 156 | 157 | OemTableId 158 | AAAAAA== 159 | Replace 160 | IgAAeQA= 161 | ReplaceMask 162 | 163 | Skip 164 | 0 165 | TableLength 166 | 0 167 | TableSignature 168 | AAAAAA== 169 | 170 | 171 | Base 172 | 173 | BaseSkip 174 | 0 175 | Comment 176 | TMR IRQ 0 Patch 177 | Count 178 | 0 179 | Enabled 180 | 181 | Find 182 | IgEAeQA= 183 | Limit 184 | 0 185 | Mask 186 | 187 | OemTableId 188 | AAAAAA== 189 | Replace 190 | IgAAeQA= 191 | ReplaceMask 192 | 193 | Skip 194 | 0 195 | TableLength 196 | 0 197 | TableSignature 198 | AAAAAA== 199 | 200 | 201 | Base 202 | 203 | BaseSkip 204 | 0 205 | Comment 206 | EHC1 to EH01 207 | Count 208 | 0 209 | Enabled 210 | 211 | Find 212 | RUhDMQ== 213 | Limit 214 | 0 215 | Mask 216 | 217 | OemTableId 218 | 219 | Replace 220 | RUgwMQ== 221 | ReplaceMask 222 | 223 | Skip 224 | 0 225 | TableLength 226 | 0 227 | TableSignature 228 | 229 | 230 | 231 | Base 232 | 233 | BaseSkip 234 | 0 235 | Comment 236 | EHC2 to EH02 237 | Count 238 | 0 239 | Enabled 240 | 241 | Find 242 | RUhDMg== 243 | Limit 244 | 0 245 | Mask 246 | 247 | OemTableId 248 | 249 | Replace 250 | RUgwMg== 251 | ReplaceMask 252 | 253 | Skip 254 | 0 255 | TableLength 256 | 0 257 | TableSignature 258 | 259 | 260 | 261 | Base 262 | 263 | BaseSkip 264 | 0 265 | Comment 266 | change Method(GPRW,2,N) to XPRW, pair with SSDT-GPRW.aml 267 | Count 268 | 0 269 | Enabled 270 | 271 | Find 272 | R1BSVw== 273 | Limit 274 | 0 275 | Mask 276 | 277 | OemTableId 278 | 279 | Replace 280 | WFBSVw== 281 | ReplaceMask 282 | 283 | Skip 284 | 0 285 | TableLength 286 | 0 287 | TableSignature 288 | 289 | 290 | 291 | Quirks 292 | 293 | FadtEnableReset 294 | 295 | NormalizeHeaders 296 | 297 | RebaseRegions 298 | 299 | ResetHwSig 300 | 301 | ResetLogoStatus 302 | 303 | SyncTableIds 304 | 305 | 306 | 307 | Booter 308 | 309 | MmioWhitelist 310 | 311 | Patch 312 | 313 | Quirks 314 | 315 | AllowRelocationBlock 316 | 317 | AvoidRuntimeDefrag 318 | 319 | DevirtualiseMmio 320 | 321 | DisableSingleUser 322 | 323 | DisableVariableWrite 324 | 325 | DiscardHibernateMap 326 | 327 | EnableSafeModeSlide 328 | 329 | EnableWriteUnprotector 330 | 331 | FixupAppleEfiImages 332 | 333 | ForceBooterSignature 334 | 335 | ForceExitBootServices 336 | 337 | ProtectMemoryRegions 338 | 339 | ProtectSecureBoot 340 | 341 | ProtectUefiServices 342 | 343 | ProvideCustomSlide 344 | 345 | ProvideMaxSlide 346 | 0 347 | RebuildAppleMemoryMap 348 | 349 | ResizeAppleGpuBars 350 | 0 351 | SetupVirtualMap 352 | 353 | SignalAppleOS 354 | 355 | SyncRuntimePermissions 356 | 357 | 358 | 359 | DeviceProperties 360 | 361 | Add 362 | 363 | PciRoot(0x0)/Pci(0x1,0x1)/Pci(0x0,0x0) 364 | 365 | # SSD 366 | 367 | built-in 368 | AQAAAA== 369 | 370 | PciRoot(0x0)/Pci(0x1B,0x0) 371 | 372 | layout-id 373 | 1 374 | 375 | PciRoot(0x0)/Pci(0x1C,0x3)/Pci(0x0,0x0) 376 | 377 | # Ethernet 378 | 379 | built-in 380 | AQAAAA== 381 | 382 | PciRoot(0x0)/Pci(0x1C,0x4)/Pci(0x0,0x0) 383 | 384 | # Fenvi 385 | 386 | built-in 387 | AQAAAA== 388 | 389 | 390 | Delete 391 | 392 | 393 | Kernel 394 | 395 | Add 396 | 397 | 398 | Arch 399 | Any 400 | BundlePath 401 | Lilu.kext 402 | Comment 403 | Lilu.kext 404 | Enabled 405 | 406 | ExecutablePath 407 | Contents/MacOS/Lilu 408 | MaxKernel 409 | 410 | MinKernel 411 | 412 | PlistPath 413 | Contents/Info.plist 414 | 415 | 416 | Arch 417 | Any 418 | BundlePath 419 | RealtekRTL8111.kext 420 | Comment 421 | RealtekRTL8111.kext 422 | Enabled 423 | 424 | ExecutablePath 425 | Contents/MacOS/RealtekRTL8111 426 | MaxKernel 427 | 428 | MinKernel 429 | 430 | PlistPath 431 | Contents/Info.plist 432 | 433 | 434 | Arch 435 | Any 436 | BundlePath 437 | RestrictEvents.kext 438 | Comment 439 | RestrictEvents.kext 440 | Enabled 441 | 442 | ExecutablePath 443 | Contents/MacOS/RestrictEvents 444 | MaxKernel 445 | 446 | MinKernel 447 | 448 | PlistPath 449 | Contents/Info.plist 450 | 451 | 452 | Arch 453 | Any 454 | BundlePath 455 | USBMap.kext 456 | Comment 457 | USBMap.kext 458 | Enabled 459 | 460 | ExecutablePath 461 | 462 | MaxKernel 463 | 464 | MinKernel 465 | 466 | PlistPath 467 | Contents/Info.plist 468 | 469 | 470 | Arch 471 | Any 472 | BundlePath 473 | USBWakeFixup.kext 474 | Comment 475 | USBWakeFixup.kext 476 | Enabled 477 | 478 | ExecutablePath 479 | Contents/MacOS/USBWakeFixup 480 | MaxKernel 481 | 482 | MinKernel 483 | 484 | PlistPath 485 | Contents/Info.plist 486 | 487 | 488 | Arch 489 | Any 490 | BundlePath 491 | VirtualSMC.kext 492 | Comment 493 | VirtualSMC.kext 494 | Enabled 495 | 496 | ExecutablePath 497 | Contents/MacOS/VirtualSMC 498 | MaxKernel 499 | 500 | MinKernel 501 | 502 | PlistPath 503 | Contents/Info.plist 504 | 505 | 506 | Arch 507 | Any 508 | BundlePath 509 | WhateverGreen.kext 510 | Comment 511 | WhateverGreen.kext 512 | Enabled 513 | 514 | ExecutablePath 515 | Contents/MacOS/WhateverGreen 516 | MaxKernel 517 | 518 | MinKernel 519 | 520 | PlistPath 521 | Contents/Info.plist 522 | 523 | 524 | Arch 525 | Any 526 | BundlePath 527 | XHCI-unsupported.kext 528 | Comment 529 | XHCI-unsupported.kext 530 | Enabled 531 | 532 | ExecutablePath 533 | 534 | MaxKernel 535 | 536 | MinKernel 537 | 538 | PlistPath 539 | Contents/Info.plist 540 | 541 | 542 | Arch 543 | Any 544 | BundlePath 545 | AppleALC.kext 546 | Comment 547 | AppleALC.kext 548 | Enabled 549 | 550 | ExecutablePath 551 | Contents/MacOS/AppleALC 552 | MaxKernel 553 | 554 | MinKernel 555 | 556 | PlistPath 557 | Contents/Info.plist 558 | 559 | 560 | Arch 561 | Any 562 | BundlePath 563 | CpuTscSync.kext 564 | Comment 565 | CpuTscSync.kext 566 | Enabled 567 | 568 | ExecutablePath 569 | Contents/MacOS/CpuTscSync 570 | MaxKernel 571 | 572 | MinKernel 573 | 574 | PlistPath 575 | Contents/Info.plist 576 | 577 | 578 | Arch 579 | Any 580 | BundlePath 581 | FeatureUnlock.kext 582 | Comment 583 | FeatureUnlock.kext 584 | Enabled 585 | 586 | ExecutablePath 587 | Contents/MacOS/FeatureUnlock 588 | MaxKernel 589 | 590 | MinKernel 591 | 592 | PlistPath 593 | Contents/Info.plist 594 | 595 | 596 | Arch 597 | Any 598 | BundlePath 599 | SMCProcessor.kext 600 | Comment 601 | SMCProcessor.kext 602 | Enabled 603 | 604 | ExecutablePath 605 | Contents/MacOS/SMCProcessor 606 | MaxKernel 607 | 608 | MinKernel 609 | 610 | PlistPath 611 | Contents/Info.plist 612 | 613 | 614 | Arch 615 | Any 616 | BundlePath 617 | SMCSuperIO.kext 618 | Comment 619 | SMCSuperIO.kext 620 | Enabled 621 | 622 | ExecutablePath 623 | Contents/MacOS/SMCSuperIO 624 | MaxKernel 625 | 626 | MinKernel 627 | 628 | PlistPath 629 | Contents/Info.plist 630 | 631 | 632 | Block 633 | 634 | Emulate 635 | 636 | Cpuid1Data 637 | wwYDAAAAAAAAAAAAAAAAAA== 638 | Cpuid1Mask 639 | /////wAAAAAAAAAAAAAAAA== 640 | DummyPowerManagement 641 | 642 | MaxKernel 643 | 644 | MinKernel 645 | 646 | 647 | Force 648 | 649 | Patch 650 | 651 | Quirks 652 | 653 | AppleCpuPmCfgLock 654 | 655 | AppleXcpmCfgLock 656 | 657 | AppleXcpmExtraMsrs 658 | 659 | AppleXcpmForceBoost 660 | 661 | CustomPciSerialDevice 662 | 663 | CustomSMBIOSGuid 664 | 665 | DisableIoMapper 666 | 667 | DisableIoMapperMapping 668 | 669 | DisableLinkeditJettison 670 | 671 | DisableRtcChecksum 672 | 673 | ExtendBTFeatureFlags 674 | 675 | ExternalDiskIcons 676 | 677 | ForceAquantiaEthernet 678 | 679 | ForceSecureBootScheme 680 | 681 | IncreasePciBarSize 682 | 683 | LapicKernelPanic 684 | 685 | LegacyCommpage 686 | 687 | PanicNoKextDump 688 | 689 | PowerTimeoutKernelPanic 690 | 691 | ProvideCurrentCpuInfo 692 | 693 | SetApfsTrimTimeout 694 | -1 695 | ThirdPartyDrives 696 | 697 | XhciPortLimit 698 | 699 | 700 | Scheme 701 | 702 | CustomKernel 703 | 704 | FuzzyMatch 705 | 706 | KernelArch 707 | x86_64 708 | KernelCache 709 | Auto 710 | 711 | 712 | Misc 713 | 714 | BlessOverride 715 | 716 | Boot 717 | 718 | ConsoleAttributes 719 | 0 720 | HibernateMode 721 | None 722 | HibernateSkipsPicker 723 | 724 | HideAuxiliary 725 | 726 | InstanceIdentifier 727 | 728 | LauncherOption 729 | Full 730 | LauncherPath 731 | Default 732 | PickerAttributes 733 | 17 734 | PickerAudioAssist 735 | 736 | PickerMode 737 | External 738 | PickerVariant 739 | Auto 740 | PollAppleHotKeys 741 | 742 | ShowPicker 743 | 744 | TakeoffDelay 745 | 0 746 | Timeout 747 | 3 748 | 749 | Debug 750 | 751 | AppleDebug 752 | 753 | ApplePanic 754 | 755 | DisableWatchDog 756 | 757 | DisplayDelay 758 | 0 759 | DisplayLevel 760 | 2147483650 761 | LogModules 762 | * 763 | SysReport 764 | 765 | Target 766 | 3 767 | 768 | Entries 769 | 770 | Security 771 | 772 | AllowSetDefault 773 | 774 | ApECID 775 | 0 776 | AuthRestart 777 | 778 | BlacklistAppleUpdate 779 | 780 | DmgLoading 781 | Signed 782 | EnablePassword 783 | 784 | ExposeSensitiveData 785 | 15 786 | HaltLevel 787 | 2147483648 788 | PasswordHash 789 | 790 | PasswordSalt 791 | 792 | ScanPolicy 793 | 2687747 794 | SecureBootModel 795 | Disabled 796 | Vault 797 | Optional 798 | 799 | Serial 800 | 801 | Init 802 | 803 | Override 804 | 805 | 806 | Tools 807 | 808 | 809 | NVRAM 810 | 811 | Add 812 | 813 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 814 | 815 | DefaultBackgroundColor 816 | AAAAAA== 817 | 818 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 819 | 820 | revcpu 821 | 1 822 | revcpuname 823 | Intel(R) Xeon(R) CPU E5-2670 v3 @ 2.30GHz 824 | revpatch 825 | sbvmm,cpuname 826 | rtc-blacklist 827 | 828 | 829 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 830 | 831 | ForceDisplayRotationInEFI 832 | 0 833 | SystemAudioVolume 834 | Rg== 835 | boot-args 836 | keepsyms=1 debug=0x100 agdpmod=pikera npci=0x2000 837 | csr-active-config 838 | AAAAAA== 839 | prev-lang:kbd 840 | en-US:0 841 | run-efi-updater 842 | No 843 | 844 | 845 | Delete 846 | 847 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 848 | 849 | DefaultBackgroundColor 850 | 851 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 852 | 853 | rtc-blacklist 854 | opencore-version 855 | revcpu 856 | revcpuname 857 | revpatch 858 | 859 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 860 | 861 | boot-args 862 | ForceDisplayRotationInEFI 863 | prev-lang:kbd 864 | 865 | 866 | LegacyOverwrite 867 | 868 | LegacySchema 869 | 870 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 871 | 872 | EFILoginHiDPI 873 | EFIBluetoothDelay 874 | LocationServicesEnabled 875 | SystemAudioVolume 876 | SystemAudioVolumeDB 877 | SystemAudioVolumeSaved 878 | bluetoothActiveControllerInfo 879 | bluetoothInternalControllerInfo 880 | flagstate 881 | fmm-computer-name 882 | fmm-mobileme-token-FMM 883 | fmm-mobileme-token-FMM-BridgeHasAccount 884 | nvda_drv 885 | prev-lang:kbd 886 | 887 | 8BE4DF61-93CA-11D2-AA0D-00E098032B8C 888 | 889 | Boot0080 890 | Boot0081 891 | Boot0082 892 | BootNext 893 | BootOrder 894 | 895 | 896 | WriteFlash 897 | 898 | 899 | PlatformInfo 900 | 901 | Automatic 902 | 903 | CustomMemory 904 | 905 | Generic 906 | 907 | AdviseFeatures 908 | 909 | MLB 910 | XXXXXXXXXXXXXXXXX 911 | MaxBIOSVersion 912 | 913 | ProcessorType 914 | 3841 915 | ROM 916 | AAAAAAAA 917 | SpoofVendor 918 | 919 | SystemMemoryStatus 920 | Auto 921 | SystemProductName 922 | SMBIOS-PRODUCT-NAME 923 | SystemSerialNumber 924 | XXXXXXXXXXXX 925 | SystemUUID 926 | XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX 927 | 928 | UpdateDataHub 929 | 930 | UpdateNVRAM 931 | 932 | UpdateSMBIOS 933 | 934 | UpdateSMBIOSMode 935 | Create 936 | UseRawUuidEncoding 937 | 938 | 939 | UEFI 940 | 941 | APFS 942 | 943 | EnableJumpstart 944 | 945 | GlobalConnect 946 | 947 | HideVerbose 948 | 949 | JumpstartHotPlug 950 | 951 | MinDate 952 | 0 953 | MinVersion 954 | 0 955 | 956 | AppleInput 957 | 958 | AppleEvent 959 | Builtin 960 | CustomDelays 961 | 962 | GraphicsInputMirroring 963 | 964 | KeyInitialDelay 965 | 50 966 | KeySubsequentDelay 967 | 5 968 | PointerDwellClickTimeout 969 | 0 970 | PointerDwellDoubleClickTimeout 971 | 0 972 | PointerDwellRadius 973 | 0 974 | PointerPollMask 975 | -1 976 | PointerPollMax 977 | 80 978 | PointerPollMin 979 | 10 980 | PointerSpeedDiv 981 | 1 982 | PointerSpeedMul 983 | 1 984 | 985 | Audio 986 | 987 | AudioCodec 988 | 0 989 | AudioDevice 990 | PciRoot(0x0)/Pci(0x1B,0x0) 991 | AudioOutMask 992 | -1 993 | AudioSupport 994 | 995 | DisconnectHda 996 | 997 | MaximumGain 998 | -15 999 | MinimumAssistGain 1000 | -30 1001 | MinimumAudibleGain 1002 | -55 1003 | PlayChime 1004 | Auto 1005 | ResetTrafficClass 1006 | 1007 | SetupDelay 1008 | 0 1009 | 1010 | ConnectDrivers 1011 | 1012 | Drivers 1013 | 1014 | 1015 | Arguments 1016 | 1017 | Comment 1018 | AudioDxe.efi 1019 | Enabled 1020 | 1021 | LoadEarly 1022 | 1023 | Path 1024 | AudioDxe.efi 1025 | 1026 | 1027 | Arguments 1028 | 1029 | Comment 1030 | HfsPlus.efi 1031 | Enabled 1032 | 1033 | LoadEarly 1034 | 1035 | Path 1036 | HfsPlus.efi 1037 | 1038 | 1039 | Arguments 1040 | 1041 | Comment 1042 | OpenCanopy.efi 1043 | Enabled 1044 | 1045 | LoadEarly 1046 | 1047 | Path 1048 | OpenCanopy.efi 1049 | 1050 | 1051 | Arguments 1052 | 1053 | Comment 1054 | OpenRuntime.efi 1055 | Enabled 1056 | 1057 | LoadEarly 1058 | 1059 | Path 1060 | OpenRuntime.efi 1061 | 1062 | 1063 | Arguments 1064 | 1065 | Comment 1066 | ResetNvramEntry.efi 1067 | Enabled 1068 | 1069 | LoadEarly 1070 | 1071 | Path 1072 | ResetNvramEntry.efi 1073 | 1074 | 1075 | Input 1076 | 1077 | KeyFiltering 1078 | 1079 | KeyForgetThreshold 1080 | 5 1081 | KeySupport 1082 | 1083 | KeySupportMode 1084 | Auto 1085 | KeySwap 1086 | 1087 | PointerSupport 1088 | 1089 | PointerSupportMode 1090 | ASUS 1091 | TimerResolution 1092 | 50000 1093 | 1094 | Output 1095 | 1096 | ClearScreenOnModeSwitch 1097 | 1098 | ConsoleFont 1099 | 1100 | ConsoleMode 1101 | 1102 | DirectGopRendering 1103 | 1104 | ForceResolution 1105 | 1106 | GopBurstMode 1107 | 1108 | GopPassThrough 1109 | Disabled 1110 | IgnoreTextInGraphics 1111 | 1112 | InitialMode 1113 | Auto 1114 | ProvideConsoleGop 1115 | 1116 | ReconnectGraphicsOnConnect 1117 | 1118 | ReconnectOnResChange 1119 | 1120 | ReplaceTabWithSpace 1121 | 1122 | Resolution 1123 | Max 1124 | SanitiseClearScreen 1125 | 1126 | TextRenderer 1127 | BuiltinGraphics 1128 | UIScale 1129 | 0 1130 | UgaPassThrough 1131 | 1132 | 1133 | ProtocolOverrides 1134 | 1135 | #JoinInsertglyt 1136 | 1137 | AppleAudio 1138 | 1139 | AppleBootPolicy 1140 | 1141 | AppleDebugLog 1142 | 1143 | AppleEg2Info 1144 | 1145 | AppleFramebufferInfo 1146 | 1147 | AppleImageConversion 1148 | 1149 | AppleImg4Verification 1150 | 1151 | AppleKeyMap 1152 | 1153 | AppleRtcRam 1154 | 1155 | AppleSecureBoot 1156 | 1157 | AppleSmcIo 1158 | 1159 | AppleUserInterfaceTheme 1160 | 1161 | DataHub 1162 | 1163 | DeviceProperties 1164 | 1165 | FirmwareVolume 1166 | 1167 | HashServices 1168 | 1169 | OSInfo 1170 | 1171 | PciIo 1172 | 1173 | UnicodeCollation 1174 | 1175 | 1176 | Quirks 1177 | 1178 | ActivateHpetSupport 1179 | 1180 | DisableSecurityPolicy 1181 | 1182 | EnableVectorAcceleration 1183 | 1184 | EnableVmx 1185 | 1186 | ExitBootServicesDelay 1187 | 0 1188 | ForceOcWriteFlash 1189 | 1190 | ForgeUefiSupport 1191 | 1192 | IgnoreInvalidFlexRatio 1193 | 1194 | ReleaseUsbOwnership 1195 | 1196 | ReloadOptionRoms 1197 | 1198 | RequestBootVarRouting 1199 | 1200 | ResizeGpuBars 1201 | 0 1202 | ResizeUsePciRbIo 1203 | 1204 | ShimRetainProtocol 1205 | 1206 | TscSyncTimeout 1207 | 0 1208 | UnblockFsConnect 1209 | 1210 | 1211 | ReservedMemory 1212 | 1213 | Unload 1214 | 1215 | 1216 | 1217 | 1218 | --------------------------------------------------------------------------------