├── .gitignore ├── EFI ├── BOOT │ └── BOOTX64.efi └── CLOVER │ ├── ACPI │ └── patched │ │ └── ssdt.aml │ ├── CLOVERX64.efi │ ├── config.plist │ ├── drivers64UEFI │ ├── ApfsDriverLoader.efi │ ├── AptioMemoryFix.efi │ ├── EmuVariableUefi.efi │ ├── FSInject.efi │ └── HFSPlus.efi │ ├── kexts │ └── Other │ │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportBrcmFixup │ │ ├── BT4LEContiunityFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BT4LEContiunityFixup │ │ ├── BrcmFirmwareData.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrcmFirmwareData │ │ ├── BrcmPatchRAM2.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM2 │ │ ├── CodecCommander.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── CodecCommander │ │ │ └── Resources │ │ │ ├── SSDT-ALC1220.dsl │ │ │ ├── SSDT-ALC256-insanelydeepak.dsl │ │ │ ├── SSDT-ALC256-vbourachot.dsl │ │ │ ├── SSDT-AppleALC.dsl │ │ │ └── SSDT-CX20752.dsl │ │ ├── FakeSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FakeSMC │ │ ├── IntelMausiEthernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausiEthernet │ │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── USBInjectAll │ │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooHDA │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── themes │ └── Clovy │ │ ├── sound.wav │ │ └── theme.svg │ └── tools │ ├── Shell32.efi │ ├── Shell64.efi │ ├── Shell64U.efi │ └── bdmesg.efi └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/.gitignore -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/ACPI/patched/ssdt.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/ACPI/patched/ssdt.aml -------------------------------------------------------------------------------- /EFI/CLOVER/CLOVERX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/CLOVERX64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/config.plist -------------------------------------------------------------------------------- /EFI/CLOVER/drivers64UEFI/ApfsDriverLoader.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/drivers64UEFI/ApfsDriverLoader.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers64UEFI/AptioMemoryFix.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/drivers64UEFI/AptioMemoryFix.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers64UEFI/EmuVariableUefi.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/drivers64UEFI/EmuVariableUefi.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers64UEFI/FSInject.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/drivers64UEFI/FSInject.efi -------------------------------------------------------------------------------- /EFI/CLOVER/drivers64UEFI/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/drivers64UEFI/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BT4LEContiunityFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/BT4LEContiunityFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BT4LEContiunityFixup.kext/Contents/MacOS/BT4LEContiunityFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/BT4LEContiunityFixup.kext/Contents/MacOS/BT4LEContiunityFixup -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/MacOS/BrcmPatchRAM2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/BrcmPatchRAM2.kext/Contents/MacOS/BrcmPatchRAM2 -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/MacOS/CodecCommander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/MacOS/CodecCommander -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-ALC1220.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-ALC1220.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-ALC256-insanelydeepak.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-ALC256-insanelydeepak.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-ALC256-vbourachot.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-ALC256-vbourachot.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-AppleALC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-AppleALC.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-CX20752.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/CodecCommander.kext/Contents/Resources/SSDT-CX20752.dsl -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/FakeSMC.kext/Contents/MacOS/FakeSMC -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/IntelMausiEthernet.kext/Contents/MacOS/IntelMausiEthernet -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/VoodooHDA.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/kexts/Other/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Clovy/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/themes/Clovy/sound.wav -------------------------------------------------------------------------------- /EFI/CLOVER/themes/Clovy/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/themes/Clovy/theme.svg -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/tools/Shell32.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/tools/Shell64.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/Shell64U.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/tools/Shell64U.efi -------------------------------------------------------------------------------- /EFI/CLOVER/tools/bdmesg.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/EFI/CLOVER/tools/bdmesg.efi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bydavy/EFI-ASRock-Z390-Phantom-Gaming/HEAD/README.md --------------------------------------------------------------------------------