├── 2020 ├── Codec │ ├── codec#0 │ ├── codec#0.svg │ ├── codec_dump.txt │ └── codec_dump_副本.txt ├── DSDT.aml └── EFI │ ├── BOOT │ └── BOOTx64.efi │ └── OC │ ├── ACPI │ ├── SSDT-ALS0.aml │ ├── SSDT-EC.aml │ ├── SSDT-HPET.aml │ ├── SSDT-NoHybGfx.aml │ ├── SSDT-PLUG-ALT.aml │ ├── SSDT-PNLF.aml │ ├── SSDT-USB-Reset.aml │ ├── SSDT-USBX.aml │ └── SSDT-XOSI.aml │ ├── Drivers │ ├── AudioDxe.efi │ ├── CrScreenshotDxe.efi │ ├── Ext4Dxe.efi │ ├── OpenCanopy.efi │ ├── OpenHfsPlus.efi │ ├── OpenLinuxBoot.efi │ ├── OpenRuntime.efi │ ├── ResetNvramEntry.efi │ └── ToggleSipEntry.efi │ ├── Kexts │ ├── AMFIPass.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AMFIPass │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── AirportItlwm.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── AppleMCEReporterDisabler.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── BrightnessKeys.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrightnessKeys │ ├── ECEnabler.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ECEnabler │ ├── FeatureUnlock.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FeatureUnlock │ ├── ForgedInvariant.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ForgedInvariant │ ├── HoRNDIS.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── HoRNDIS │ ├── IntelBTPatcher.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBTPatcher │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── NootedRed.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── NootedRed │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── RestrictEvents.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── RestrictEvents │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ └── Resources │ │ │ └── SSDT-BATC.dsl │ ├── SMCLightSensor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCLightSensor │ ├── SMCProcessorAMD.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessorAMD │ ├── SMCRadeonSensors.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCRadeonSensors │ ├── USBToolBox.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── USBToolBox │ ├── UTBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ ├── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooGPIO │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── VoodooI2CServices.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooI2CServices │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── VoodooInput.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooInput │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── VoodooI2CHID.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooI2CHID │ │ └── _CodeSignature │ │ └── CodeResources │ ├── OpenCore.efi │ ├── Resources │ ├── Audio │ │ └── OCEFIAudio_VoiceOver_Boot.wav │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ ├── Font_2x.png │ │ ├── Terminus.hex │ │ └── TerminusCore.hex │ ├── Image │ │ └── Acidanthera │ │ │ └── GoldenGate │ │ │ ├── Apple10_13.icns │ │ │ ├── Apple10_14.icns │ │ │ ├── Apple10_15.icns │ │ │ ├── Apple11.icns │ │ │ ├── Apple12.icns │ │ │ ├── Apple13.icns │ │ │ ├── Apple14.icns │ │ │ ├── Apple15.icns │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── FirmwareSettings.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ ├── Ubuntu.icns │ │ │ ├── Windows.icns │ │ │ ├── Windows10.icns │ │ │ ├── Windows11.icns │ │ │ ├── Windows7.icns │ │ │ └── Windows8.icns │ └── Label │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── FirmwareSettings.l2x │ │ ├── FirmwareSettings.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── SIPDisabled.l2x │ │ ├── SIPDisabled.lbl │ │ ├── SIPEnabled.l2x │ │ ├── SIPEnabled.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ ├── Tools │ ├── BootKicker.efi │ ├── ChipTune.efi │ ├── CleanNvram.efi │ ├── ControlMsrE2.efi │ ├── CsrUtil.efi │ ├── GopStop.efi │ ├── KeyTester.efi │ ├── ListPartitions.efi │ ├── MmapDump.efi │ ├── OpenControl.efi │ ├── OpenShell.efi │ ├── ResetSystem.efi │ ├── RtcRw.efi │ └── TpmInfo.efi │ └── config.plist ├── 2021 ├── Codec │ ├── codec#0.txt │ ├── codec#0.txt.svg │ └── codec_dump.txt ├── DSDT.aml └── EFI │ ├── BOOT │ └── BOOTx64.efi │ └── OC │ ├── ACPI │ ├── SSDT-ALS0.aml │ ├── SSDT-EC.aml │ ├── SSDT-HPET.aml │ ├── SSDT-PLUG-ALT.aml │ ├── SSDT-PNLF.aml │ ├── SSDT-USB-Reset.aml │ ├── SSDT-USBX.aml │ └── SSDT-XOSI.aml │ ├── Drivers │ ├── AudioDxe.efi │ ├── CrScreenshotDxe.efi │ ├── Ext4Dxe.efi │ ├── OpenCanopy.efi │ ├── OpenHfsPlus.efi │ ├── OpenLinuxBoot.efi │ ├── OpenRuntime.efi │ ├── ResetNvramEntry.efi │ └── ToggleSipEntry.efi │ ├── Kexts │ ├── AMDRyzenCPUPowerManagement.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AMDRyzenCPUPowerManagement │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── AMFIPass.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AMFIPass │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── AirportItlwm.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── AppleMCEReporterDisabler.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── BrightnessKeys.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrightnessKeys │ ├── ECEnabler.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ECEnabler │ ├── FeatureUnlock.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FeatureUnlock │ ├── ForgedInvariant.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ForgedInvariant │ ├── HoRNDIS.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── HoRNDIS │ ├── IntelBTPatcher.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBTPatcher │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── NootedRed.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NootedRed │ ├── RestrictEvents.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── RestrictEvents │ ├── SMCAMDProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCAMDProcessor │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ └── Resources │ │ │ └── SSDT-BATC.dsl │ ├── SMCLightSensor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCLightSensor │ ├── SMCProcessorAMD.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessorAMD │ ├── SMCRadeonSensors.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCRadeonSensors │ ├── USBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ ├── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooGPIO │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── VoodooI2CServices.kext │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── VoodooI2CServices │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── VoodooInput.kext │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── VoodooInput │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── VoodooI2CHID.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooI2CHID │ │ └── _CodeSignature │ │ └── CodeResources │ ├── OpenCore.efi │ ├── Resources │ ├── Audio │ │ └── OCEFIAudio_VoiceOver_Boot.wav │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ ├── Font_2x.png │ │ ├── Terminus.hex │ │ └── TerminusCore.hex │ ├── Image │ │ └── Acidanthera │ │ │ └── GoldenGate │ │ │ ├── Apple10_14.icns │ │ │ ├── Apple10_15.icns │ │ │ ├── Apple11.icns │ │ │ ├── Apple12.icns │ │ │ ├── Apple13.icns │ │ │ ├── Apple14.icns │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── FirmwareSettings.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ └── Label │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── FirmwareSettings.l2x │ │ ├── FirmwareSettings.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── SIPDisabled.l2x │ │ ├── SIPDisabled.lbl │ │ ├── SIPEnabled.l2x │ │ ├── SIPEnabled.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ ├── Tools │ ├── BootKicker.efi │ ├── ChipTune.efi │ ├── CleanNvram.efi │ ├── ControlMsrE2.efi │ ├── CsrUtil.efi │ ├── GopStop.efi │ ├── KeyTester.efi │ ├── ListPartitions.efi │ ├── MmapDump.efi │ ├── OpenControl.efi │ ├── OpenShell.efi │ ├── ResetSystem.efi │ ├── RtcRw.efi │ └── TpmInfo.efi │ └── config.plist ├── Changelog.md ├── README.md └── README_cn.md /2020/Codec/codec#0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/Codec/codec#0 -------------------------------------------------------------------------------- /2020/Codec/codec#0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/Codec/codec#0.svg -------------------------------------------------------------------------------- /2020/Codec/codec_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/Codec/codec_dump.txt -------------------------------------------------------------------------------- /2020/Codec/codec_dump_副本.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/Codec/codec_dump_副本.txt -------------------------------------------------------------------------------- /2020/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/DSDT.aml -------------------------------------------------------------------------------- /2020/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-ALS0.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-NoHybGfx.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-NoHybGfx.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-PLUG-ALT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-PLUG-ALT.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-USB-Reset.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-USB-Reset.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /2020/EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/CrScreenshotDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/CrScreenshotDxe.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/Ext4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/Ext4Dxe.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/OpenHfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/OpenHfsPlus.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/OpenLinuxBoot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/OpenLinuxBoot.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Drivers/ToggleSipEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Drivers/ToggleSipEntry.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AMFIPass.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AMFIPass.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AMFIPass.kext/Contents/MacOS/AMFIPass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AMFIPass.kext/Contents/MacOS/AMFIPass -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AMFIPass.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AMFIPass.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/AppleMCEReporterDisabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/AppleMCEReporterDisabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/ForgedInvariant.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/ForgedInvariant.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/ForgedInvariant.kext/Contents/MacOS/ForgedInvariant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/ForgedInvariant.kext/Contents/MacOS/ForgedInvariant -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/NootedRed.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/NootedRed.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/NootedRed.kext/Contents/MacOS/NootedRed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/NootedRed.kext/Contents/MacOS/NootedRed -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/NootedRed.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/NootedRed.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/MacOS/SMCProcessorAMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/MacOS/SMCProcessorAMD -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/MacOS/SMCRadeonSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/MacOS/SMCRadeonSensors -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/USBToolBox.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/USBToolBox.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/USBToolBox.kext/Contents/MacOS/USBToolBox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/USBToolBox.kext/Contents/MacOS/USBToolBox -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/UTBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/UTBMap.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2C.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /2020/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2020/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Font/Terminus.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Font/Terminus.hex -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Font/TerminusCore.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Font/TerminusCore.hex -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_13.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_14.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_15.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple11.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple12.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple13.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple14.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple15.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/FirmwareSettings.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/FirmwareSettings.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Ubuntu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Ubuntu.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows10.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows10.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows11.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows7.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows7.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows8.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows8.icns -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/FirmwareSettings.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/FirmwareSettings.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/FirmwareSettings.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/FirmwareSettings.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /2020/EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/BootKicker.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/BootKicker.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/ChipTune.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/ChipTune.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/ControlMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/ControlMsrE2.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/CsrUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/CsrUtil.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/GopStop.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/GopStop.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/ListPartitions.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/ListPartitions.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/MmapDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/MmapDump.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /2020/EFI/OC/Tools/TpmInfo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/Tools/TpmInfo.efi -------------------------------------------------------------------------------- /2020/EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2020/EFI/OC/config.plist -------------------------------------------------------------------------------- /2021/Codec/codec#0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/Codec/codec#0.txt -------------------------------------------------------------------------------- /2021/Codec/codec#0.txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/Codec/codec#0.txt.svg -------------------------------------------------------------------------------- /2021/Codec/codec_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/Codec/codec_dump.txt -------------------------------------------------------------------------------- /2021/DSDT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/DSDT.aml -------------------------------------------------------------------------------- /2021/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-ALS0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-ALS0.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-HPET.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-HPET.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-PLUG-ALT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-PLUG-ALT.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-USB-Reset.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-USB-Reset.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /2021/EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/CrScreenshotDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/CrScreenshotDxe.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/Ext4Dxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/Ext4Dxe.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/OpenHfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/OpenHfsPlus.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/OpenLinuxBoot.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/OpenLinuxBoot.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Drivers/ToggleSipEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Drivers/ToggleSipEntry.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/MacOS/AMDRyzenCPUPowerManagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/MacOS/AMDRyzenCPUPowerManagement -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AMDRyzenCPUPowerManagement.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AMFIPass.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AMFIPass.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AMFIPass.kext/Contents/MacOS/AMFIPass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AMFIPass.kext/Contents/MacOS/AMFIPass -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AMFIPass.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AMFIPass.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/AppleMCEReporterDisabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/AppleMCEReporterDisabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/ForgedInvariant.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/ForgedInvariant.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/ForgedInvariant.kext/Contents/MacOS/ForgedInvariant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/ForgedInvariant.kext/Contents/MacOS/ForgedInvariant -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/HoRNDIS.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/HoRNDIS.kext/Contents/MacOS/HoRNDIS -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/NootedRed.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/NootedRed.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/NootedRed.kext/Contents/MacOS/NootedRed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/NootedRed.kext/Contents/MacOS/NootedRed -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/MacOS/SMCAMDProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/MacOS/SMCAMDProcessor -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCAMDProcessor.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/MacOS/SMCProcessorAMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCProcessorAMD.kext/Contents/MacOS/SMCProcessorAMD -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/MacOS/SMCRadeonSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/SMCRadeonSensors.kext/Contents/MacOS/SMCRadeonSensors -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/USBMap.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2C.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /2021/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /2021/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Font/Terminus.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Font/Terminus.hex -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Font/TerminusCore.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Font/TerminusCore.hex -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_14.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_15.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple10_15.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple11.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple11.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple12.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple12.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple13.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple13.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple14.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple14.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/FirmwareSettings.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/FirmwareSettings.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/FirmwareSettings.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/FirmwareSettings.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/FirmwareSettings.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/FirmwareSettings.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /2021/EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/BootKicker.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/BootKicker.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/ChipTune.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/ChipTune.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/ControlMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/ControlMsrE2.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/CsrUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/CsrUtil.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/GopStop.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/GopStop.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/ListPartitions.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/ListPartitions.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/MmapDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/MmapDump.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /2021/EFI/OC/Tools/TpmInfo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/Tools/TpmInfo.efi -------------------------------------------------------------------------------- /2021/EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/2021/EFI/OC/config.plist -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/Changelog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIut02/ROG-Zephyrus-G14-GA401-Hackintosh/HEAD/README_cn.md --------------------------------------------------------------------------------