gitextract_g_muam2g/ ├── .gitignore ├── EFI/ │ ├── BOOT/ │ │ ├── .contentFlavour │ │ ├── .contentVisibility │ │ └── BOOTx64.efi │ └── OC/ │ ├── .contentFlavour │ ├── .contentVisibility │ ├── ACPI/ │ │ ├── SSDT-AWAC.aml │ │ ├── SSDT-EC-USBX.aml │ │ ├── SSDT-GPRW.aml │ │ ├── SSDT-PLUG.aml │ │ ├── SSDT-RHUB.aml │ │ └── SSDT-SBUS-MCHC.aml │ ├── Drivers/ │ │ ├── ArpDxe.efi │ │ ├── AudioDxe.efi │ │ ├── BiosVideo.efi │ │ ├── CrScreenshotDxe.efi │ │ ├── Dhcp4Dxe.efi │ │ ├── DnsDxe.efi │ │ ├── DpcDxe.efi │ │ ├── Ext4Dxe.efi │ │ ├── HfsPlus.efi │ │ ├── HiiDatabase.efi │ │ ├── HttpBootDxe.efi │ │ ├── HttpDxe.efi │ │ ├── HttpUtilitiesDxe.efi │ │ ├── Ip4Dxe.efi │ │ ├── MnpDxe.efi │ │ ├── NvmExpressDxe.efi │ │ ├── OpenCanopy.efi │ │ ├── OpenHfsPlus.efi │ │ ├── OpenLinuxBoot.efi │ │ ├── OpenNtfsDxe.efi │ │ ├── OpenPartitionDxe.efi │ │ ├── OpenRuntime.efi │ │ ├── OpenUsbKbDxe.efi │ │ ├── OpenVariableRuntimeDxe.efi │ │ ├── Ps2KeyboardDxe.efi │ │ ├── Ps2MouseDxe.efi │ │ ├── ResetNvramEntry.efi │ │ ├── SnpDxe.efi │ │ ├── TcpDxe.efi │ │ ├── ToggleSipEntry.efi │ │ ├── Udp4Dxe.efi │ │ ├── UsbMouseDxe.efi │ │ ├── XhciDxe.efi │ │ └── ext4_x64.efi │ ├── Kexts/ │ │ ├── AppleALC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── AppleALC │ │ ├── AppleIntelI210Ethernet.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── AppleIntelI210Ethernet │ │ │ ├── _CodeSignature/ │ │ │ │ └── CodeResources │ │ │ └── version.plist │ │ ├── Lilu.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── Lilu │ │ ├── NVMeFix.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── NVMeFix │ │ ├── SMCProcessor.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── SMCProcessor │ │ ├── SMCSuperIO.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── SMCSuperIO │ │ ├── USBPorts-All.kext/ │ │ │ └── Contents/ │ │ │ └── Info.plist │ │ ├── USBPorts.kext/ │ │ │ └── Contents/ │ │ │ └── Info.plist │ │ ├── VirtualSMC.kext/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ └── MacOS/ │ │ │ └── VirtualSMC │ │ └── WhateverGreen.kext/ │ │ └── Contents/ │ │ ├── Info.plist │ │ └── MacOS/ │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources/ │ │ ├── Image/ │ │ │ └── Acidanthera/ │ │ │ ├── Chardonnay/ │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── ExtHardDrive.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 │ │ │ ├── GoldenGate/ │ │ │ │ ├── AppleRecv.icns │ │ │ │ ├── AppleTM.icns │ │ │ │ ├── BtnFocus.icns │ │ │ │ ├── Cursor.icns │ │ │ │ ├── Dot.icns │ │ │ │ ├── Enter.icns │ │ │ │ ├── ExtAppleRecv.icns │ │ │ │ ├── ExtAppleTM.icns │ │ │ │ ├── ExtHardDrive.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 │ │ │ └── Syrah/ │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.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 │ │ ├── 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 │ │ ├── MmapDump.efi │ │ ├── OpenControl.efi │ │ ├── OpenShell.efi │ │ ├── ResetSystem.efi │ │ ├── RtcRw.efi │ │ └── TpmInfo.efi │ └── config.plist ├── LICENSE ├── README.md ├── SSDTS/ │ ├── SSDT-AWAC.dsl │ ├── SSDT-EC-USBX.dsl │ ├── SSDT-PLUG.dsl │ ├── SSDT-RHUB.dsl │ └── SSDT-SBUS-MCHC.dsl └── kexts/ ├── AppleALC.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── AppleALC ├── AppleIntelI210Ethernet.kext/ │ └── Contents/ │ ├── Info.plist │ ├── MacOS/ │ │ └── AppleIntelI210Ethernet │ ├── _CodeSignature/ │ │ └── CodeResources │ └── version.plist ├── FakePCIID.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── FakePCIID ├── FakePCIID_Intel_HDMI_Audio.kext/ │ └── Contents/ │ └── Info.plist ├── FakePCIID_Intel_I225-V.kext/ │ └── Contents/ │ └── Info.plist ├── IntelMausi.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── IntelMausi ├── Lilu.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── Lilu ├── NVMeFix.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── NVMeFix ├── RadeonBoost.kext/ │ └── Contents/ │ └── Info.plist ├── SMCProcessor.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── SMCProcessor ├── SMCSuperIO.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── SMCSuperIO ├── USBInjectAll.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── USBInjectAll ├── USBPorts-All.kext/ │ └── Contents/ │ └── Info.plist ├── USBPorts.kext/ │ └── Contents/ │ └── Info.plist ├── VirtualSMC.kext/ │ └── Contents/ │ ├── Info.plist │ └── MacOS/ │ └── VirtualSMC └── WhateverGreen.kext/ └── Contents/ ├── Info.plist └── MacOS/ └── WhateverGreen