├── .gitignore ├── EFI ├── BOOT │ └── BOOTx64.efi └── OC │ ├── ACPI │ ├── SSDT-AWAC.aml │ ├── SSDT-DTPG.aml │ ├── SSDT-EC-USBX.aml │ ├── SSDT-GPRW.aml │ ├── SSDT-PLUG.aml │ ├── SSDT-PMC.aml │ └── SSDT-TbtOnPch_PINI.aml │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HFSPlus.efi │ ├── OpenCanopy.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── IntelMausi.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausi │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBPorts.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ ├── Android.icns │ │ ├── Apple.icns │ │ ├── AppleRecv.icns │ │ ├── AppleTM.icns │ │ ├── Arch.icns │ │ ├── Cursor.icns │ │ ├── Debian.icns │ │ ├── Deepin.icns │ │ ├── ElementaryOS.icns │ │ ├── Endless.icns │ │ ├── ExtAppleRecv.icns │ │ ├── ExtAppleTM.icns │ │ ├── ExtHardDrive.icns │ │ ├── Fedora.icns │ │ ├── HardDrive.icns │ │ ├── KDEneon.icns │ │ ├── Kali.icns │ │ ├── Linux.icns │ │ ├── MX.icns │ │ ├── Manjaro.icns │ │ ├── Microsoft.icns │ │ ├── Mint.icns │ │ ├── PopOS.icns │ │ ├── ReactOS.icns │ │ ├── Selected.icns │ │ ├── Selector.icns │ │ ├── Shell.icns │ │ ├── Solus.icns │ │ ├── Tool.icns │ │ ├── Ubuntu.icns │ │ ├── Windows.icns │ │ ├── Zorin.icns │ │ └── openSUSE.icns │ └── Label │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ ├── Tools │ ├── OpenShell.efi │ ├── ResetSystem.efi │ └── RtcRw.efi │ └── config.plist ├── README-zh.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-DTPG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-DTPG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-GPRW.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-GPRW.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-PMC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-TbtOnPch_PINI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/ACPI/SSDT-TbtOnPch_PINI.aml -------------------------------------------------------------------------------- /EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Drivers/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Android.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Android.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Apple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Apple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Arch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Arch.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Debian.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Debian.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Deepin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Deepin.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ElementaryOS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/ElementaryOS.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Endless.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Endless.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Fedora.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Fedora.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/KDEneon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/KDEneon.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Kali.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Kali.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Linux.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Linux.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/MX.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/MX.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Manjaro.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Manjaro.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Microsoft.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Microsoft.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Mint.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Mint.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/PopOS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/PopOS.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ReactOS.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/ReactOS.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Solus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Solus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Ubuntu.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Zorin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/Zorin.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/openSUSE.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Image/openSUSE.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/EFI/OC/config.plist -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangf2018/ASRock-Z390-Phantom-ITX-OpenCore-Hackintosh/HEAD/README.md --------------------------------------------------------------------------------