gitextract_ra76dg_k/ ├── .gitignore ├── EFI/ │ ├── BOOT/ │ │ ├── .contentFlavour │ │ ├── .contentVisibility │ │ └── BOOTX64.efi │ └── OC/ │ ├── .contentFlavour │ ├── .contentVisibility │ ├── ACPI/ │ │ ├── SSDT-EC-USBX.aml │ │ ├── SSDT-PLUG.aml │ │ ├── SSDT-PMC.aml │ │ └── SSDT-RTCAWAC.aml │ ├── Drivers/ │ │ ├── OpenCanopy.efi │ │ ├── OpenHfsPlus.efi │ │ ├── OpenRuntime.efi │ │ ├── ResetNvramEntry.efi │ │ └── ToggleSipEntry.efi │ ├── Kexts/ │ │ ├── AMFIPass.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── AMFIPass │ │ │ └── _CodeSignature/ │ │ │ └── CodeResources │ │ ├── AppleALC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── AppleALC │ │ ├── IO80211FamilyLegacy.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── IO80211FamilyLegacy │ │ │ └── PlugIns/ │ │ │ └── AirPortBrcmNIC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── AirPortBrcmNIC │ │ │ ├── _CodeSignature/ │ │ │ │ └── CodeResources │ │ │ └── version.plist │ │ ├── IOSkywalkFamily.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── IOSkywalkFamily │ │ │ └── _CodeSignature/ │ │ │ └── CodeResources │ │ ├── IntelMausi.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── IntelMausi │ │ ├── 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 │ │ ├── NVMeFix.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── NVMeFix │ │ ├── RestrictEvents.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── RestrictEvents │ │ ├── SMCProcessor.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── SMCProcessor │ │ ├── SMCSuperIO.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── SMCSuperIO │ │ ├── USBInjectAll.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature/ │ │ │ └── CodeResources │ │ ├── VirtualSMC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── VirtualSMC │ │ │ └── Resources/ │ │ │ └── VirtualSMCSDK/ │ │ │ ├── AppleSmc.h │ │ │ ├── AppleSmcBridge.hpp │ │ │ ├── kern_keyvalue.hpp │ │ │ ├── kern_smcinfo.hpp │ │ │ ├── kern_value.hpp │ │ │ └── kern_vsmcapi.hpp │ │ └── WhateverGreen.kext/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── MacOS/ │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources/ │ │ ├── Audio/ │ │ │ └── .gitkeep │ │ ├── Font/ │ │ │ └── .gitkeep │ │ ├── Image/ │ │ │ └── .gitkeep │ │ └── Label/ │ │ └── .gitkeep │ ├── Tools/ │ │ ├── BootKicker.efi │ │ ├── ChipTune.efi │ │ ├── CleanNvram.efi │ │ ├── ControlMsrE2.efi │ │ ├── CsrUtil.efi │ │ ├── FontTester.efi │ │ ├── GopStop.efi │ │ ├── KeyTester.efi │ │ ├── ListPartitions.efi │ │ ├── MmapDump.efi │ │ ├── OpenControl.efi │ │ ├── OpenShell.efi │ │ ├── ResetSystem.efi │ │ ├── RtcRw.efi │ │ ├── TpmInfo.efi │ │ └── VerifyMsrE2.efi │ └── config.plist ├── LICENSE └── README.md