gitextract_js30dfts/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── help_support.yml │ └── workflows/ │ ├── build-iso.yml │ └── stale.yml ├── .gitignore ├── BOOT.img ├── Create_Recovery_ISO.command ├── Create_macOS_ISO.command ├── Disable_GateKeeper.command ├── EFI_DEBUG/ │ └── EFI/ │ ├── BOOT/ │ │ ├── .contentFlavour │ │ ├── .contentVisibility │ │ └── BOOTx64.efi │ └── OC/ │ ├── .contentFlavour │ ├── .contentVisibility │ ├── ACPI/ │ │ ├── SSDT-EC.aml │ │ └── SSDT-USBX.aml │ ├── Drivers/ │ │ ├── OpenCanopy.efi │ │ ├── OpenHfsPlus.efi │ │ ├── OpenRuntime.efi │ │ ├── ResetNvramEntry.efi │ │ └── ToggleSipEntry.efi │ ├── Kexts/ │ │ ├── AppleMCEReporterDisabler.kext/ │ │ │ └── Contents/ │ │ │ └── Info.plist │ │ ├── Lilu.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── Lilu │ │ │ └── Resources/ │ │ │ ├── Headers/ │ │ │ │ ├── capstone/ │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── arm64.h │ │ │ │ │ ├── capstone.h │ │ │ │ │ ├── mips.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── sparc.h │ │ │ │ │ ├── systemz.h │ │ │ │ │ ├── x86.h │ │ │ │ │ └── xcore.h │ │ │ │ ├── hde32.h │ │ │ │ ├── hde64.h │ │ │ │ ├── kern_api.hpp │ │ │ │ ├── kern_compat.hpp │ │ │ │ ├── kern_compression.hpp │ │ │ │ ├── kern_config.hpp │ │ │ │ ├── kern_cpu.hpp │ │ │ │ ├── kern_crypto.hpp │ │ │ │ ├── kern_devinfo.hpp │ │ │ │ ├── kern_disasm.hpp │ │ │ │ ├── kern_efi.hpp │ │ │ │ ├── kern_file.hpp │ │ │ │ ├── kern_iokit.hpp │ │ │ │ ├── kern_mach.hpp │ │ │ │ ├── kern_nvram.hpp │ │ │ │ ├── kern_patcher.hpp │ │ │ │ ├── kern_policy.hpp │ │ │ │ ├── kern_rtc.hpp │ │ │ │ ├── kern_time.hpp │ │ │ │ ├── kern_user.hpp │ │ │ │ ├── kern_util.hpp │ │ │ │ ├── kern_version.hpp │ │ │ │ └── plugin_start.hpp │ │ │ └── Library/ │ │ │ ├── plugin_start.cpp │ │ │ └── wrappers/ │ │ │ ├── build.tool │ │ │ ├── entry32.S │ │ │ ├── entry64.S │ │ │ └── wrappers.inc │ │ ├── VirtualSMC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── VirtualSMC │ │ ├── VoodooPS2Controller.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns/ │ │ │ └── VoodooPS2Keyboard.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── VoodooPS2Keyboard │ │ └── WhateverGreen.kext/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── MacOS/ │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources/ │ │ ├── Font/ │ │ │ ├── Terminus.hex │ │ │ └── TerminusCore.hex │ │ ├── Image/ │ │ │ └── Acidanthera/ │ │ │ └── GoldenGate/ │ │ │ ├── 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 │ │ │ ├── NetworkBoot.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 │ │ ├── NetworkBoot.l2x │ │ ├── NetworkBoot.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/ │ │ └── OpenShell.efi │ └── config.plist ├── EFI_RELEASE/ │ └── EFI/ │ ├── BOOT/ │ │ ├── .contentFlavour │ │ ├── .contentVisibility │ │ └── BOOTx64.efi │ └── OC/ │ ├── .contentFlavour │ ├── .contentVisibility │ ├── ACPI/ │ │ ├── SSDT-EC.aml │ │ └── SSDT-USBX.aml │ ├── Drivers/ │ │ ├── OpenCanopy.efi │ │ ├── OpenHfsPlus.efi │ │ ├── OpenRuntime.efi │ │ ├── ResetNvramEntry.efi │ │ └── ToggleSipEntry.efi │ ├── Kexts/ │ │ ├── AppleMCEReporterDisabler.kext/ │ │ │ └── Contents/ │ │ │ └── Info.plist │ │ ├── Lilu.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── Lilu │ │ ├── VirtualSMC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── VirtualSMC │ │ ├── VoodooPS2Controller.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns/ │ │ │ └── VoodooPS2Keyboard.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── VoodooPS2Keyboard │ │ └── WhateverGreen.kext/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── MacOS/ │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources/ │ │ ├── Font/ │ │ │ ├── Terminus.hex │ │ │ └── TerminusCore.hex │ │ ├── Image/ │ │ │ └── Acidanthera/ │ │ │ └── GoldenGate/ │ │ │ ├── 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 │ │ │ ├── NetworkBoot.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 │ │ ├── NetworkBoot.l2x │ │ ├── NetworkBoot.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 │ └── config.plist ├── Install_Python3.command ├── LICENSE ├── LICENSE-OpenCore.txt ├── Make_ISO.command ├── Mount_EFI.command ├── README.md ├── README.rtf └── cpu-models.conf