├── EFI ├── .DS_Store ├── BOOT │ ├── .contentFlavour │ └── BOOTx64.efi └── OC │ ├── .DS_Store │ ├── ACPI │ ├── .DS_Store │ ├── SSDT-AWAC.aml │ ├── SSDT-EC-USBX.aml │ ├── SSDT-EC.aml │ ├── SSDT-NoHybGfx.aml │ ├── SSDT-PNLF.aml │ ├── SSDT-PNLFCFL.aml │ ├── SSDT-RHUB.aml │ ├── SSDT-XOSI.aml │ └── SSDT-dGPU-Off.aml │ ├── Drivers │ ├── .DS_Store │ ├── AudioDxe.efi │ ├── HfsPlus.efi │ ├── OpenCanopy.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── .DS_Store │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AirportBrcmFixup │ │ │ └── PlugIns │ │ │ ├── AirPortBrcm4360_Injector.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ │ └── AirPortBrcmNIC_Injector.kext │ │ │ └── Contents │ │ │ └── Info.plist │ ├── AirportItlwm-Ventura.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── BrightnessKeys.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrightnessKeys │ ├── CPUFriend.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── CPUFriend │ ├── CPUFriendDataProvider.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── DebugEnhancer.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── DebugEnhancer │ ├── ECEnabler.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── ECEnabler │ ├── FeatureUnlock.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FeatureUnlock │ ├── HibernationFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── HibernationFixup │ ├── IntelBTPatcher.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBTPatcher │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── 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 │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ └── Resources │ │ │ └── SSDT-BATC.dsl │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── USBInjectAll │ ├── USBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VerbStub.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VerbStub │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ └── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooGPIO │ │ │ ├── VoodooI2CServices.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooI2CServices │ │ │ └── VoodooInput.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VoodooI2CHID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooI2CHID │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns │ │ │ └── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Keyboard │ ├── WhateverGreen.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── WhateverGreen │ └── itlwm.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── itlwm │ ├── OpenCore.efi │ ├── Resources │ ├── Audio │ │ ├── OCEFIAudio_VoiceOver_Boot.wav │ │ ├── OCEFIAudio_VoiceOver_Boot1.wav │ │ ├── OCEFIAudio_en_1.wav │ │ ├── OCEFIAudio_en_2.wav │ │ ├── OCEFIAudio_en_3.wav │ │ ├── OCEFIAudio_en_4.wav │ │ ├── OCEFIAudio_en_5.wav │ │ ├── OCEFIAudio_en_6.wav │ │ ├── OCEFIAudio_en_7.wav │ │ ├── OCEFIAudio_en_8.wav │ │ ├── OCEFIAudio_en_9.wav │ │ ├── OCEFIAudio_en_AbortTimeout.wav │ │ ├── OCEFIAudio_en_ChooseOS.wav │ │ ├── OCEFIAudio_en_Default.wav │ │ ├── OCEFIAudio_en_DiskImage.mp3 │ │ ├── OCEFIAudio_en_DiskImage.wav │ │ ├── OCEFIAudio_en_EnterPassword.wav │ │ ├── OCEFIAudio_en_ExecutionFailure.wav │ │ ├── OCEFIAudio_en_ExecutionSuccessful.wav │ │ ├── OCEFIAudio_en_External.wav │ │ ├── OCEFIAudio_en_ExternalOption.wav │ │ ├── OCEFIAudio_en_LetterA.wav │ │ ├── OCEFIAudio_en_LetterB.wav │ │ ├── OCEFIAudio_en_LetterC.wav │ │ ├── OCEFIAudio_en_LetterD.wav │ │ ├── OCEFIAudio_en_LetterE.wav │ │ ├── OCEFIAudio_en_LetterF.wav │ │ ├── OCEFIAudio_en_LetterG.wav │ │ ├── OCEFIAudio_en_LetterH.wav │ │ ├── OCEFIAudio_en_LetterI.wav │ │ ├── OCEFIAudio_en_LetterJ.wav │ │ ├── OCEFIAudio_en_LetterK.wav │ │ ├── OCEFIAudio_en_LetterL.wav │ │ ├── OCEFIAudio_en_LetterM.wav │ │ ├── OCEFIAudio_en_LetterN.wav │ │ ├── OCEFIAudio_en_LetterO.wav │ │ ├── OCEFIAudio_en_LetterP.wav │ │ ├── OCEFIAudio_en_LetterQ.wav │ │ ├── OCEFIAudio_en_LetterR.wav │ │ ├── OCEFIAudio_en_LetterS.wav │ │ ├── OCEFIAudio_en_LetterT.wav │ │ ├── OCEFIAudio_en_LetterU.wav │ │ ├── OCEFIAudio_en_LetterV.wav │ │ ├── OCEFIAudio_en_LetterW.wav │ │ ├── OCEFIAudio_en_LetterX.wav │ │ ├── OCEFIAudio_en_LetterY.wav │ │ ├── OCEFIAudio_en_LetterZ.wav │ │ ├── OCEFIAudio_en_Loading.wav │ │ ├── OCEFIAudio_en_OtherOS.wav │ │ ├── OCEFIAudio_en_PasswordAccepted.wav │ │ ├── OCEFIAudio_en_PasswordIncorrect.wav │ │ ├── OCEFIAudio_en_PasswordRetryLimit.wav │ │ ├── OCEFIAudio_en_Reloading.wav │ │ ├── OCEFIAudio_en_ResetNVRAM.wav │ │ ├── OCEFIAudio_en_Restart.mp3 │ │ ├── OCEFIAudio_en_Selected.wav │ │ ├── OCEFIAudio_en_ShowAuxiliary.wav │ │ ├── OCEFIAudio_en_Shutdown.mp3 │ │ ├── OCEFIAudio_en_Timeout.wav │ │ ├── OCEFIAudio_en_UEFI_Shell.wav │ │ ├── OCEFIAudio_en_Welcome.wav │ │ ├── OCEFIAudio_en_Windows.wav │ │ ├── OCEFIAudio_en_macOS.wav │ │ ├── OCEFIAudio_en_macOS_Recovery.wav │ │ └── OCEFIAudio_en_macOS_TimeMachine.wav │ ├── Font │ │ ├── Font.bin │ │ ├── Font.png │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── 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 │ │ │ ├── Apple.icns │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── Background.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtApple.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── ExtOther.icns │ │ │ ├── ExtResetNVRAM.icns │ │ │ ├── ExtShell.icns │ │ │ ├── ExtTool.icns │ │ │ ├── ExtWindows.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Other.icns │ │ │ ├── Password.icns │ │ │ ├── ResetNVRAM.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ │ │ ├── Modern │ │ │ ├── ModernBtnFocus.icns │ │ │ ├── ModernCursor.icns │ │ │ ├── ModernDot.icns │ │ │ ├── ModernEnter.icns │ │ │ ├── ModernLeft 2.icns │ │ │ ├── ModernLeft.icns │ │ │ ├── ModernLock.icns │ │ │ ├── ModernPassword.icns │ │ │ ├── ModernRestart.icns │ │ │ ├── ModernRight 2.icns │ │ │ ├── ModernRight.icns │ │ │ ├── ModernSelected 2.icns │ │ │ ├── ModernSelected.icns │ │ │ ├── ModernSelector.icns │ │ │ ├── ModernSetDefault.icns │ │ │ └── ModernShutDown.icns │ │ │ ├── Old │ │ │ ├── OldAppleRecv.icns │ │ │ ├── OldAppleTM.icns │ │ │ ├── OldBtnFocus.icns │ │ │ ├── OldCursor.icns │ │ │ ├── OldDot.icns │ │ │ ├── OldEnter.icns │ │ │ ├── OldExtAppleRecv.icns │ │ │ ├── OldExtAppleTM.icns │ │ │ ├── OldExtHardDrive.icns │ │ │ ├── OldExtWindows.icns │ │ │ ├── OldHardDrive.icns │ │ │ ├── OldLock.icns │ │ │ ├── OldPassword.icns │ │ │ ├── OldRestart.icns │ │ │ ├── OldSelected.icns │ │ │ ├── OldSelector.icns │ │ │ ├── OldSetDefault.icns │ │ │ ├── OldShell.icns │ │ │ ├── OldShutDown.icns │ │ │ ├── OldTool.icns │ │ │ └── OldWindows.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 └── README.md /EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/.DS_Store -------------------------------------------------------------------------------- /EFI/BOOT/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/ACPI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-NoHybGfx.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-NoHybGfx.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLFCFL.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-PNLFCFL.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-RHUB.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-RHUB.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-dGPU-Off.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/ACPI/SSDT-dGPU-Off.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Drivers/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/Drivers/AudioDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Drivers/AudioDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportBrcmFixup 11 | CFBundleIdentifier 12 | as.lvs1974.AirportBrcmFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportBrcmFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.lvs1974.AirportBrcmFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.AirportBrcmFixup 51 | IOClass 52 | AirportBrcmFixup 53 | IOMatchCategory 54 | AirportBrcmFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | as.lvs1974.FakeAirportBrcmFixup 61 | 62 | CFBundleIdentifier 63 | as.lvs1974.AirportBrcmFixup 64 | IOClass 65 | FakeBrcm 66 | IOMatchCategory 67 | IODefaultMatchCategory 68 | IONameMatch 69 | 70 | pci14e4,43ba 71 | pci14e4,43a3 72 | pci14e4,43a0 73 | pci14e4,4331 74 | pci14e4,4353 75 | pci14e4,43b1 76 | pci14e4,43b2 77 | pci14e4,4357 78 | pci14e4,432b 79 | pci14e4,4311 80 | pci14e4,4312 81 | pci14e4,4313 82 | pci14e4,4318 83 | pci14e4,4319 84 | pci14e4,431a 85 | pci14e4,4320 86 | pci14e4,4324 87 | pci14e4,4325 88 | pci14e4,4328 89 | pci14e4,432c 90 | pci14e4,432d 91 | 92 | IOProbeScore 93 | 6000 94 | IOProviderClass 95 | IOPCIDevice 96 | TruePowerOff 97 | 98 | 99 | 100 | LSMinimumSystemVersion 101 | 10.8 102 | NSHumanReadableCopyright 103 | Copyright © 2017 lvs1974. All rights reserved. 104 | OSBundleCompatibleVersion 105 | 1.0 106 | OSBundleLibraries 107 | 108 | as.vit9696.Lilu 109 | 1.2.6 110 | com.apple.iokit.IOPCIFamily 111 | 2.7 112 | com.apple.kpi.bsd 113 | 12.0.0 114 | com.apple.kpi.dsep 115 | 12.0.0 116 | com.apple.kpi.iokit 117 | 12.0.0 118 | com.apple.kpi.libkern 119 | 12.0.0 120 | com.apple.kpi.mach 121 | 12.0.0 122 | com.apple.kpi.unsupported 123 | 12.0.0 124 | 125 | OSBundleRequired 126 | Network-Root 127 | 128 | 129 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcm4360Injector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcm4360 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_Brcm4360 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.Brcm4360 27 | IOClass 28 | AirPort_Brcm4360 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43a3 37 | pci14e4,43b1 38 | pci14e4,43b2 39 | 40 | IOProbeScore 41 | 1110 42 | IOProviderClass 43 | IOPCIDevice 44 | TruePowerOff 45 | 46 | 47 | 48 | OSBundleRequired 49 | Network-Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcmNICInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcmNIC 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_BrcmNIC 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.BrcmNIC 27 | IOClass 28 | AirPort_BrcmNIC 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43ba 37 | pci14e4,43a3 38 | pci14e4,43a0 39 | pci14e4,43b1 40 | pci14e4,43b2 41 | 42 | IOProbeScore 43 | 2048 44 | IOProviderClass 45 | IOPCIDevice 46 | TruePowerOff 47 | 48 | 49 | 50 | OSBundleRequired 51 | Network-Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwm-Ventura.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G211 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportItlwm 11 | CFBundleIdentifier 12 | com.zxystd.AirportItlwm 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportItlwm 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.2.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 14B5024h 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 13.0 35 | DTSDKBuild 36 | 22A5342f 37 | DTSDKName 38 | macosx13.0 39 | DTXcode 40 | 1410 41 | DTXcodeBuild 42 | 14B5024h 43 | IOKitPersonalities 44 | 45 | itlwm 46 | 47 | CFBundleIdentifier 48 | com.zxystd.AirportItlwm 49 | IOClass 50 | AirportItlwm 51 | IOMatchCategory 52 | IODefaultMatchCategory 53 | IOPCIMatch 54 | 0x27238086 0x43F08086 0xA0F08086 0x34F08086 0x4DF08086 0x02F08086 0x3DF08086 0x06F08086 0x27208086 0x08b18086 0x08b28086 0x08b38086 0x08b48086 0x095a8086 0x095b8086 0x31658086 0x31668086 0x24f38086 0x24f48086 0x24f58086 0x24f68086 0x24fb8086 0x24fd8086 0x25268086 0x9df08086 0xa3708086 0x31DC8086 0x30DC8086 0x271C8086 0x271B8086 0x42a48086 0x00a08086 0x00a48086 0x02a08086 0x40a48086 0x00608086 0x00648086 0x02608086 0x02648086 0x42298086 0x422b8086 0x422c8086 0x42308086 0x42328086 0x42358086 0x42368086 0x42378086 0x42388086 0x42398086 0x423a8086 0x423b8086 0x423c8086 0x423d8086 0x00828086 0x00838086 0x00848086 0x00858086 0x00878086 0x00898086 0x008a8086 0x008b8086 0x00908086 0x00918086 0x08928086 0x08938086 0x08948086 0x08958086 0x08968086 0x08978086 0x08ae8086 0x08af8086 0x088e8086 0x088f8086 0x08908086 0x08918086 0x08878086 0x08888086 0x27258086 0x27268086 0x7A708086 0x7AF08086 0x51F08086 0x54F08086 0x27298086 0x7E408086 55 | IOProbeScore 56 | 2000 57 | IOProviderClass 58 | IOPCIDevice 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.15 63 | NSHumanReadableCopyright 64 | Copyright © 2020 钟先耀. All rights reserved. 65 | OSBundleLibraries 66 | 67 | com.apple.iokit.IO80211FamilyLegacy 68 | 600.0 69 | com.apple.iokit.IONetworkingFamily 70 | 3.2 71 | com.apple.iokit.IOPCIFamily 72 | 2.9 73 | com.apple.kpi.bsd 74 | 16.7 75 | com.apple.kpi.iokit 76 | 16.7 77 | com.apple.kpi.libkern 78 | 16.7 79 | com.apple.kpi.mach 80 | 16.7 81 | 82 | OSBundleRequired 83 | Network-Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwm-Ventura.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/AirportItlwm-Ventura.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G817 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | BlueToolFixup 11 | CFBundleIdentifier 12 | as.acidanthera.BlueToolFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | BlueToolFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.6.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | BlueToolFixup 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BlueToolFixup 49 | IOClass 50 | BlueToolFixup 51 | IOMatchCategory 52 | BlueToolFixup 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.8 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.4.7 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H2 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | BrightnessKeys 11 | CFBundleIdentifier 12 | as.acidanthera.BrightnessKeys 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | BrightnessKeys 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSupportedPlatforms 20 | 21 | MacOSX 22 | 23 | CFBundleVersion 24 | 1.0.1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 11E708 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 19G68 33 | DTSDKName 34 | macosx10.15 35 | DTXcode 36 | 1160 37 | DTXcodeBuild 38 | 11E708 39 | IOKitPersonalities 40 | 41 | BrightnessKeys 42 | 43 | CFBundleIdentifier 44 | as.acidanthera.BrightnessKeys 45 | IOClass 46 | BrightnessKeys 47 | IOMatchCategory 48 | BrightnessKeys 49 | IOProviderClass 50 | IOResources 51 | IOResourceMatch 52 | IOKit 53 | 54 | 55 | LSMinimumSystemVersion 56 | 10.11 57 | OSBundleLibraries 58 | 59 | as.vit9696.Lilu 60 | 1.2.0 61 | com.apple.iokit.IOACPIFamily 62 | 1.0.0d1 63 | com.apple.iokit.IOHIDFamily 64 | 1.0.0b1 65 | com.apple.kpi.bsd 66 | 8.0.0 67 | com.apple.kpi.iokit 68 | 8.0.0 69 | com.apple.kpi.libkern 70 | 8.0.0 71 | com.apple.kpi.mach 72 | 8.0.0 73 | com.apple.kpi.unsupported 74 | 8.0.0 75 | 76 | OSBundleRequired 77 | Console 78 | 79 | 80 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CPUFriend 11 | CFBundleIdentifier 12 | org.acidanthera.driver.CPUFriend 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CPUFriend 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | CPUFriend 48 | 49 | CFBundleIdentifier 50 | org.acidanthera.driver.CPUFriend 51 | IOClass 52 | CPUFriend 53 | IOMatchCategory 54 | CPUFriend 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | CPUFriendPlatform 61 | 62 | CFBundleIdentifier 63 | org.acidanthera.driver.CPUFriend 64 | IOClass 65 | CPUFriendData 66 | IOProbeScore 67 | 6000 68 | IOPropertyMatch 69 | 70 | IOCPUNumber 71 | 0 72 | 73 | IOProviderClass 74 | AppleACPICPU 75 | IOResourceMatch 76 | ACPI 77 | 78 | 79 | LSMinimumSystemVersion 80 | 10.8 81 | NSHumanReadableCopyright 82 | Copyright © 2017-2022 PMheart. All rights reserved. 83 | OSBundleCompatibleVersion 84 | 1.0 85 | OSBundleLibraries 86 | 87 | as.vit9696.Lilu 88 | 1.2.0 89 | com.apple.iokit.IOACPIFamily 90 | 1.0.0d1 91 | com.apple.kpi.bsd 92 | 10.0.0 93 | com.apple.kpi.dsep 94 | 10.0.0 95 | com.apple.kpi.iokit 96 | 10.0.0 97 | com.apple.kpi.libkern 98 | 10.0.0 99 | com.apple.kpi.mach 100 | 10.0.0 101 | com.apple.kpi.unsupported 102 | 10.0.0 103 | 104 | OSBundleRequired 105 | Root 106 | 107 | 108 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /EFI/OC/Kexts/DebugEnhancer.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | DebugEnhancer 11 | CFBundleIdentifier 12 | as.lvs1974.DebugEnhancer 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | DebugEnhancer 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.lvs1974.DebugEnhancer 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.DebugEnhancer 51 | IOClass 52 | DebugEnhancer 53 | IOMatchCategory 54 | DebugEnhancer 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.8 63 | NSHumanReadableCopyright 64 | Copyright © 2019 lvs1974. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.0 67 | OSBundleLibraries 68 | 69 | as.vit9696.Lilu 70 | 1.2.6 71 | com.apple.kpi.bsd 72 | 12.0.0 73 | com.apple.kpi.dsep 74 | 12.0.0 75 | com.apple.kpi.iokit 76 | 12.0.0 77 | com.apple.kpi.libkern 78 | 12.0.0 79 | com.apple.kpi.mach 80 | 12.0.0 81 | com.apple.kpi.unsupported 82 | 12.0.0 83 | 84 | OSBundleRequired 85 | Root 86 | 87 | 88 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/DebugEnhancer.kext/Contents/MacOS/DebugEnhancer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/DebugEnhancer.kext/Contents/MacOS/DebugEnhancer -------------------------------------------------------------------------------- /EFI/OC/Kexts/ECEnabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H524 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | ECEnabler 11 | CFBundleIdentifier 12 | com.1Revenger1.ECEnabler 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ECEnabler 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | com.1Revenger1.ECEnabler 46 | 47 | CFBundleIdentifier 48 | com.1Revenger1.ECEnabler 49 | IOClass 50 | ECEnabler 51 | IOClassCategory 52 | ECEnabler 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.7 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.4.9 65 | com.apple.kpi.bsd 66 | 11.0.0 67 | com.apple.kpi.dsep 68 | 11.0.0 69 | com.apple.kpi.iokit 70 | 11.0.0 71 | com.apple.kpi.libkern 72 | 11.0.0 73 | com.apple.kpi.mach 74 | 11.0.0 75 | com.apple.kpi.unsupported 76 | 11.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/ECEnabler.kext/Contents/MacOS/ECEnabler -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G918 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FeatureUnlock 11 | CFBundleIdentifier 12 | com.khronokernel.FeatureUnlock 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FeatureUnlock 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | FeatureUnlock 46 | 47 | CFBundleIdentifier 48 | com.khronokernel.FeatureUnlock 49 | IOClass 50 | FeatureUnlock 51 | IOMatchCategory 52 | FeatureUnlock 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2021 Khronokernel. All rights reserved. 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.4.7 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.unsupported 78 | 12.0.0 79 | 80 | OSBundleRequired 81 | Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock -------------------------------------------------------------------------------- /EFI/OC/Kexts/HibernationFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | HibernationFixup 11 | CFBundleIdentifier 12 | as.lvs1974.HibernationFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | HibernationFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.lvs1974.HibernationFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.HibernationFixup 51 | IOClass 52 | HibernationFixup 53 | IOMatchCategory 54 | HibernationFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.8 63 | NSHumanReadableCopyright 64 | Copyright © 2017 lvs1974. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.0 67 | OSBundleLibraries 68 | 69 | as.vit9696.Lilu 70 | 1.2.4 71 | com.apple.kpi.bsd 72 | 12.0.0 73 | com.apple.kpi.dsep 74 | 12.0.0 75 | com.apple.kpi.iokit 76 | 12.0.0 77 | com.apple.kpi.libkern 78 | 12.0.0 79 | com.apple.kpi.mach 80 | 12.0.0 81 | com.apple.kpi.unsupported 82 | 12.0.0 83 | 84 | OSBundleRequired 85 | Root 86 | 87 | 88 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/HibernationFixup.kext/Contents/MacOS/HibernationFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBTPatcher.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H2026 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | IntelBTPatcher 11 | CFBundleIdentifier 12 | com.zxystd.IntelBTPatcher 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IntelBTPatcher 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.2.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11A420a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19A547 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1100 39 | DTXcodeBuild 40 | 11A420a 41 | IOKitPersonalities 42 | 43 | IntelBTPatcher 44 | 45 | CFBundleIdentifier 46 | com.zxystd.IntelBTPatcher 47 | IOClass 48 | IntelBTPatcher 49 | IOMatchCategory 50 | IntelBTPatcher 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.12 59 | NSHumanReadableCopyright 60 | Copyright © 2022 zxystd. All rights reserved. 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.2.0 65 | com.apple.iokit.IOUSBHostFamily 66 | 1.2 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.unsupported 78 | 12.0.0 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/IntelBTPatcher.kext/Contents/MacOS/IntelBTPatcher -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G730 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.6.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOBSD 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kernel.6.0 70 | 7.9.9 71 | com.apple.kpi.bsd 72 | 8.0.0 73 | com.apple.kpi.iokit 74 | 8.0.0 75 | com.apple.kpi.libkern 76 | 8.0.0 77 | com.apple.kpi.mach 78 | 8.0.0 79 | com.apple.kpi.unsupported 80 | 8.0.0 81 | 82 | OSBundleLibraries_x86_64 83 | 84 | com.apple.kpi.bsd 85 | 10.0.0 86 | com.apple.kpi.dsep 87 | 10.0.0 88 | com.apple.kpi.iokit 89 | 10.0.0 90 | com.apple.kpi.libkern 91 | 10.0.0 92 | com.apple.kpi.mach 93 | 10.0.0 94 | com.apple.kpi.unsupported 95 | 10.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h: -------------------------------------------------------------------------------- 1 | /* Capstone Disassembly Engine */ 2 | /* By Axel Souchet & Nguyen Anh Quynh, 2014 */ 3 | 4 | #ifndef CAPSTONE_PLATFORM_H 5 | #define CAPSTONE_PLATFORM_H 6 | 7 | // handle C99 issue (for pre-2013 VisualStudio) 8 | #if !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__MINGW64__) && (defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64)) 9 | // MSVC 10 | 11 | // stdbool.h 12 | #if (_MSC_VER < 1800) || defined(_KERNEL_MODE) 13 | // this system does not have stdbool.h 14 | #ifndef __cplusplus 15 | typedef unsigned char bool; 16 | #define false 0 17 | #define true 1 18 | #endif 19 | 20 | #else 21 | // VisualStudio 2013+ -> C99 is supported 22 | #include 23 | #endif 24 | 25 | #else 26 | // not MSVC -> C99 is supported 27 | #include 28 | #endif 29 | 30 | 31 | // handle C99 issue (for pre-2013 VisualStudio) 32 | #if defined(CAPSTONE_HAS_OSXKERNEL) || (defined(_MSC_VER) && (_MSC_VER <= 1700 || defined(_KERNEL_MODE))) 33 | // this system does not have inttypes.h 34 | 35 | #if defined(_MSC_VER) && (_MSC_VER < 1600 || defined(_KERNEL_MODE)) 36 | // this system does not have stdint.h 37 | typedef signed char int8_t; 38 | typedef signed short int16_t; 39 | typedef signed int int32_t; 40 | typedef unsigned char uint8_t; 41 | typedef unsigned short uint16_t; 42 | typedef unsigned int uint32_t; 43 | typedef signed long long int64_t; 44 | typedef unsigned long long uint64_t; 45 | 46 | #define INT8_MIN (-127i8 - 1) 47 | #define INT16_MIN (-32767i16 - 1) 48 | #define INT32_MIN (-2147483647i32 - 1) 49 | #define INT64_MIN (-9223372036854775807i64 - 1) 50 | #define INT8_MAX 127i8 51 | #define INT16_MAX 32767i16 52 | #define INT32_MAX 2147483647i32 53 | #define INT64_MAX 9223372036854775807i64 54 | #define UINT8_MAX 0xffui8 55 | #define UINT16_MAX 0xffffui16 56 | #define UINT32_MAX 0xffffffffui32 57 | #define UINT64_MAX 0xffffffffffffffffui64 58 | #endif 59 | 60 | #define __PRI_8_LENGTH_MODIFIER__ "hh" 61 | #define __PRI_64_LENGTH_MODIFIER__ "ll" 62 | 63 | #define PRId8 __PRI_8_LENGTH_MODIFIER__ "d" 64 | #define PRIi8 __PRI_8_LENGTH_MODIFIER__ "i" 65 | #define PRIo8 __PRI_8_LENGTH_MODIFIER__ "o" 66 | #define PRIu8 __PRI_8_LENGTH_MODIFIER__ "u" 67 | #define PRIx8 __PRI_8_LENGTH_MODIFIER__ "x" 68 | #define PRIX8 __PRI_8_LENGTH_MODIFIER__ "X" 69 | 70 | #define PRId16 "hd" 71 | #define PRIi16 "hi" 72 | #define PRIo16 "ho" 73 | #define PRIu16 "hu" 74 | #define PRIx16 "hx" 75 | #define PRIX16 "hX" 76 | 77 | #if defined(_MSC_VER) && _MSC_VER <= 1700 78 | #define PRId32 "ld" 79 | #define PRIi32 "li" 80 | #define PRIo32 "lo" 81 | #define PRIu32 "lu" 82 | #define PRIx32 "lx" 83 | #define PRIX32 "lX" 84 | #else // OSX 85 | #define PRId32 "d" 86 | #define PRIi32 "i" 87 | #define PRIo32 "o" 88 | #define PRIu32 "u" 89 | #define PRIx32 "x" 90 | #define PRIX32 "X" 91 | #endif 92 | 93 | #if defined(_MSC_VER) && _MSC_VER <= 1700 94 | // redefine functions from inttypes.h used in cstool 95 | #define strtoull _strtoui64 96 | #endif 97 | 98 | #define PRId64 __PRI_64_LENGTH_MODIFIER__ "d" 99 | #define PRIi64 __PRI_64_LENGTH_MODIFIER__ "i" 100 | #define PRIo64 __PRI_64_LENGTH_MODIFIER__ "o" 101 | #define PRIu64 __PRI_64_LENGTH_MODIFIER__ "u" 102 | #define PRIx64 __PRI_64_LENGTH_MODIFIER__ "x" 103 | #define PRIX64 __PRI_64_LENGTH_MODIFIER__ "X" 104 | 105 | #else 106 | // this system has inttypes.h by default 107 | #include 108 | #endif 109 | 110 | #endif 111 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h: -------------------------------------------------------------------------------- 1 | #ifndef CAPSTONE_XCORE_H 2 | #define CAPSTONE_XCORE_H 3 | 4 | /* Capstone Disassembly Engine */ 5 | /* By Nguyen Anh Quynh , 2014 */ 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | #if !defined(_MSC_VER) || !defined(_KERNEL_MODE) 12 | #include 13 | #endif 14 | 15 | #include "platform.h" 16 | 17 | #ifdef _MSC_VER 18 | #pragma warning(disable:4201) 19 | #endif 20 | 21 | //> Operand type for instruction's operands 22 | typedef enum xcore_op_type { 23 | XCORE_OP_INVALID = 0, // = CS_OP_INVALID (Uninitialized). 24 | XCORE_OP_REG, // = CS_OP_REG (Register operand). 25 | XCORE_OP_IMM, // = CS_OP_IMM (Immediate operand). 26 | XCORE_OP_MEM, // = CS_OP_MEM (Memory operand). 27 | } xcore_op_type; 28 | 29 | // Instruction's operand referring to memory 30 | // This is associated with XCORE_OP_MEM operand type above 31 | typedef struct xcore_op_mem { 32 | uint8_t base; // base register 33 | uint8_t index; // index register 34 | int32_t disp; // displacement/offset value 35 | int direct; // +1: forward, -1: backward 36 | } xcore_op_mem; 37 | 38 | // Instruction operand 39 | typedef struct cs_xcore_op { 40 | xcore_op_type type; // operand type 41 | union { 42 | unsigned int reg; // register value for REG operand 43 | int32_t imm; // immediate value for IMM operand 44 | xcore_op_mem mem; // base/disp value for MEM operand 45 | }; 46 | } cs_xcore_op; 47 | 48 | // Instruction structure 49 | typedef struct cs_xcore { 50 | // Number of operands of this instruction, 51 | // or 0 when instruction has no operand. 52 | uint8_t op_count; 53 | cs_xcore_op operands[8]; // operands for this instruction. 54 | } cs_xcore; 55 | 56 | //> XCore registers 57 | typedef enum xcore_reg { 58 | XCORE_REG_INVALID = 0, 59 | 60 | XCORE_REG_CP, 61 | XCORE_REG_DP, 62 | XCORE_REG_LR, 63 | XCORE_REG_SP, 64 | XCORE_REG_R0, 65 | XCORE_REG_R1, 66 | XCORE_REG_R2, 67 | XCORE_REG_R3, 68 | XCORE_REG_R4, 69 | XCORE_REG_R5, 70 | XCORE_REG_R6, 71 | XCORE_REG_R7, 72 | XCORE_REG_R8, 73 | XCORE_REG_R9, 74 | XCORE_REG_R10, 75 | XCORE_REG_R11, 76 | 77 | //> pseudo registers 78 | XCORE_REG_PC, // pc 79 | 80 | // internal thread registers 81 | // see The-XMOS-XS1-Architecture(X7879A).pdf 82 | XCORE_REG_SCP, // save pc 83 | XCORE_REG_SSR, // save status 84 | XCORE_REG_ET, // exception type 85 | XCORE_REG_ED, // exception data 86 | XCORE_REG_SED, // save exception data 87 | XCORE_REG_KEP, // kernel entry pointer 88 | XCORE_REG_KSP, // kernel stack pointer 89 | XCORE_REG_ID, // thread ID 90 | 91 | XCORE_REG_ENDING, // <-- mark the end of the list of registers 92 | } xcore_reg; 93 | 94 | //> XCore instruction 95 | typedef enum xcore_insn { 96 | XCORE_INS_INVALID = 0, 97 | 98 | XCORE_INS_ADD, 99 | XCORE_INS_ANDNOT, 100 | XCORE_INS_AND, 101 | XCORE_INS_ASHR, 102 | XCORE_INS_BAU, 103 | XCORE_INS_BITREV, 104 | XCORE_INS_BLA, 105 | XCORE_INS_BLAT, 106 | XCORE_INS_BL, 107 | XCORE_INS_BF, 108 | XCORE_INS_BT, 109 | XCORE_INS_BU, 110 | XCORE_INS_BRU, 111 | XCORE_INS_BYTEREV, 112 | XCORE_INS_CHKCT, 113 | XCORE_INS_CLRE, 114 | XCORE_INS_CLRPT, 115 | XCORE_INS_CLRSR, 116 | XCORE_INS_CLZ, 117 | XCORE_INS_CRC8, 118 | XCORE_INS_CRC32, 119 | XCORE_INS_DCALL, 120 | XCORE_INS_DENTSP, 121 | XCORE_INS_DGETREG, 122 | XCORE_INS_DIVS, 123 | XCORE_INS_DIVU, 124 | XCORE_INS_DRESTSP, 125 | XCORE_INS_DRET, 126 | XCORE_INS_ECALLF, 127 | XCORE_INS_ECALLT, 128 | XCORE_INS_EDU, 129 | XCORE_INS_EEF, 130 | XCORE_INS_EET, 131 | XCORE_INS_EEU, 132 | XCORE_INS_ENDIN, 133 | XCORE_INS_ENTSP, 134 | XCORE_INS_EQ, 135 | XCORE_INS_EXTDP, 136 | XCORE_INS_EXTSP, 137 | XCORE_INS_FREER, 138 | XCORE_INS_FREET, 139 | XCORE_INS_GETD, 140 | XCORE_INS_GET, 141 | XCORE_INS_GETN, 142 | XCORE_INS_GETR, 143 | XCORE_INS_GETSR, 144 | XCORE_INS_GETST, 145 | XCORE_INS_GETTS, 146 | XCORE_INS_INCT, 147 | XCORE_INS_INIT, 148 | XCORE_INS_INPW, 149 | XCORE_INS_INSHR, 150 | XCORE_INS_INT, 151 | XCORE_INS_IN, 152 | XCORE_INS_KCALL, 153 | XCORE_INS_KENTSP, 154 | XCORE_INS_KRESTSP, 155 | XCORE_INS_KRET, 156 | XCORE_INS_LADD, 157 | XCORE_INS_LD16S, 158 | XCORE_INS_LD8U, 159 | XCORE_INS_LDA16, 160 | XCORE_INS_LDAP, 161 | XCORE_INS_LDAW, 162 | XCORE_INS_LDC, 163 | XCORE_INS_LDW, 164 | XCORE_INS_LDIVU, 165 | XCORE_INS_LMUL, 166 | XCORE_INS_LSS, 167 | XCORE_INS_LSUB, 168 | XCORE_INS_LSU, 169 | XCORE_INS_MACCS, 170 | XCORE_INS_MACCU, 171 | XCORE_INS_MJOIN, 172 | XCORE_INS_MKMSK, 173 | XCORE_INS_MSYNC, 174 | XCORE_INS_MUL, 175 | XCORE_INS_NEG, 176 | XCORE_INS_NOT, 177 | XCORE_INS_OR, 178 | XCORE_INS_OUTCT, 179 | XCORE_INS_OUTPW, 180 | XCORE_INS_OUTSHR, 181 | XCORE_INS_OUTT, 182 | XCORE_INS_OUT, 183 | XCORE_INS_PEEK, 184 | XCORE_INS_REMS, 185 | XCORE_INS_REMU, 186 | XCORE_INS_RETSP, 187 | XCORE_INS_SETCLK, 188 | XCORE_INS_SET, 189 | XCORE_INS_SETC, 190 | XCORE_INS_SETD, 191 | XCORE_INS_SETEV, 192 | XCORE_INS_SETN, 193 | XCORE_INS_SETPSC, 194 | XCORE_INS_SETPT, 195 | XCORE_INS_SETRDY, 196 | XCORE_INS_SETSR, 197 | XCORE_INS_SETTW, 198 | XCORE_INS_SETV, 199 | XCORE_INS_SEXT, 200 | XCORE_INS_SHL, 201 | XCORE_INS_SHR, 202 | XCORE_INS_SSYNC, 203 | XCORE_INS_ST16, 204 | XCORE_INS_ST8, 205 | XCORE_INS_STW, 206 | XCORE_INS_SUB, 207 | XCORE_INS_SYNCR, 208 | XCORE_INS_TESTCT, 209 | XCORE_INS_TESTLCL, 210 | XCORE_INS_TESTWCT, 211 | XCORE_INS_TSETMR, 212 | XCORE_INS_START, 213 | XCORE_INS_WAITEF, 214 | XCORE_INS_WAITET, 215 | XCORE_INS_WAITEU, 216 | XCORE_INS_XOR, 217 | XCORE_INS_ZEXT, 218 | 219 | XCORE_INS_ENDING, // <-- mark the end of the list of instructions 220 | } xcore_insn; 221 | 222 | //> Group of XCore instructions 223 | typedef enum xcore_insn_group { 224 | XCORE_GRP_INVALID = 0, // = CS_GRP_INVALID 225 | 226 | //> Generic groups 227 | // all jump instructions (conditional+direct+indirect jumps) 228 | XCORE_GRP_JUMP, // = CS_GRP_JUMP 229 | 230 | XCORE_GRP_ENDING, // <-- mark the end of the list of groups 231 | } xcore_insn_group; 232 | 233 | #ifdef __cplusplus 234 | } 235 | #endif 236 | 237 | #endif 238 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde32.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hacker Disassembler Engine 32 3 | * Copyright (c) 2006-2009, Vyacheslav Patkov. 4 | * All rights reserved. 5 | * 6 | * hde32.h: C/C++ header file 7 | * 8 | */ 9 | 10 | #ifndef _HDE32_H_ 11 | #define _HDE32_H_ 12 | 13 | #include 14 | 15 | #define F_MODRM 0x00000001 16 | #define F_SIB 0x00000002 17 | #define F_IMM8 0x00000004 18 | #define F_IMM16 0x00000008 19 | #define F_IMM32 0x00000010 20 | #define F_DISP8 0x00000020 21 | #define F_DISP16 0x00000040 22 | #define F_DISP32 0x00000080 23 | #define F_RELATIVE 0x00000100 24 | #define F_2IMM16 0x00000800 25 | #define F_ERROR 0x00001000 26 | #define F_ERROR_OPCODE 0x00002000 27 | #define F_ERROR_LENGTH 0x00004000 28 | #define F_ERROR_LOCK 0x00008000 29 | #define F_ERROR_OPERAND 0x00010000 30 | #define F_PREFIX_REPNZ 0x01000000 31 | #define F_PREFIX_REPX 0x02000000 32 | #define F_PREFIX_REP 0x03000000 33 | #define F_PREFIX_66 0x04000000 34 | #define F_PREFIX_67 0x08000000 35 | #define F_PREFIX_LOCK 0x10000000 36 | #define F_PREFIX_SEG 0x20000000 37 | #define F_PREFIX_ANY 0x3f000000 38 | 39 | #define PREFIX_SEGMENT_CS 0x2e 40 | #define PREFIX_SEGMENT_SS 0x36 41 | #define PREFIX_SEGMENT_DS 0x3e 42 | #define PREFIX_SEGMENT_ES 0x26 43 | #define PREFIX_SEGMENT_FS 0x64 44 | #define PREFIX_SEGMENT_GS 0x65 45 | #define PREFIX_LOCK 0xf0 46 | #define PREFIX_REPNZ 0xf2 47 | #define PREFIX_REPX 0xf3 48 | #define PREFIX_OPERAND_SIZE 0x66 49 | #define PREFIX_ADDRESS_SIZE 0x67 50 | 51 | #pragma pack(push,1) 52 | 53 | typedef struct { 54 | uint8_t len; 55 | uint8_t p_rep; 56 | uint8_t p_lock; 57 | uint8_t p_seg; 58 | uint8_t p_66; 59 | uint8_t p_67; 60 | uint8_t opcode; 61 | uint8_t opcode2; 62 | uint8_t modrm; 63 | uint8_t modrm_mod; 64 | uint8_t modrm_reg; 65 | uint8_t modrm_rm; 66 | uint8_t sib; 67 | uint8_t sib_scale; 68 | uint8_t sib_index; 69 | uint8_t sib_base; 70 | union { 71 | uint8_t imm8; 72 | uint16_t imm16; 73 | uint32_t imm32; 74 | } imm; 75 | union { 76 | uint8_t disp8; 77 | uint16_t disp16; 78 | uint32_t disp32; 79 | } disp; 80 | uint32_t flags; 81 | } hde32s; 82 | 83 | #pragma pack(pop) 84 | 85 | #ifdef __cplusplus 86 | extern "C" { 87 | #endif 88 | 89 | /* __cdecl */ 90 | unsigned int hde32_disasm(const void *code, hde32s *hs); 91 | 92 | #ifdef __cplusplus 93 | } 94 | #endif 95 | 96 | #endif /* _HDE32_H_ */ 97 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hacker Disassembler Engine 64 3 | * Copyright (c) 2008-2009, Vyacheslav Patkov. 4 | * All rights reserved. 5 | * 6 | * hde64.h: C/C++ header file 7 | * 8 | */ 9 | 10 | #ifndef _HDE64_H_ 11 | #define _HDE64_H_ 12 | 13 | #include 14 | 15 | #define F_MODRM 0x00000001 16 | #define F_SIB 0x00000002 17 | #define F_IMM8 0x00000004 18 | #define F_IMM16 0x00000008 19 | #define F_IMM32 0x00000010 20 | #define F_IMM64 0x00000020 21 | #define F_DISP8 0x00000040 22 | #define F_DISP16 0x00000080 23 | #define F_DISP32 0x00000100 24 | #define F_RELATIVE 0x00000200 25 | #define F_ERROR 0x00001000 26 | #define F_ERROR_OPCODE 0x00002000 27 | #define F_ERROR_LENGTH 0x00004000 28 | #define F_ERROR_LOCK 0x00008000 29 | #define F_ERROR_OPERAND 0x00010000 30 | #define F_PREFIX_REPNZ 0x01000000 31 | #define F_PREFIX_REPX 0x02000000 32 | #define F_PREFIX_REP 0x03000000 33 | #define F_PREFIX_66 0x04000000 34 | #define F_PREFIX_67 0x08000000 35 | #define F_PREFIX_LOCK 0x10000000 36 | #define F_PREFIX_SEG 0x20000000 37 | #define F_PREFIX_REX 0x40000000 38 | #define F_PREFIX_ANY 0x7f000000 39 | 40 | #define PREFIX_SEGMENT_CS 0x2e 41 | #define PREFIX_SEGMENT_SS 0x36 42 | #define PREFIX_SEGMENT_DS 0x3e 43 | #define PREFIX_SEGMENT_ES 0x26 44 | #define PREFIX_SEGMENT_FS 0x64 45 | #define PREFIX_SEGMENT_GS 0x65 46 | #define PREFIX_LOCK 0xf0 47 | #define PREFIX_REPNZ 0xf2 48 | #define PREFIX_REPX 0xf3 49 | #define PREFIX_OPERAND_SIZE 0x66 50 | #define PREFIX_ADDRESS_SIZE 0x67 51 | 52 | #pragma pack(push,1) 53 | 54 | typedef struct { 55 | uint8_t len; 56 | uint8_t p_rep; 57 | uint8_t p_lock; 58 | uint8_t p_seg; 59 | uint8_t p_66; 60 | uint8_t p_67; 61 | uint8_t rex; 62 | uint8_t rex_w; 63 | uint8_t rex_r; 64 | uint8_t rex_x; 65 | uint8_t rex_b; 66 | uint8_t opcode; 67 | uint8_t opcode2; 68 | uint8_t modrm; 69 | uint8_t modrm_mod; 70 | uint8_t modrm_reg; 71 | uint8_t modrm_rm; 72 | uint8_t sib; 73 | uint8_t sib_scale; 74 | uint8_t sib_index; 75 | uint8_t sib_base; 76 | union { 77 | uint8_t imm8; 78 | uint16_t imm16; 79 | uint32_t imm32; 80 | uint64_t imm64; 81 | } imm; 82 | union { 83 | uint8_t disp8; 84 | uint16_t disp16; 85 | uint32_t disp32; 86 | } disp; 87 | uint32_t flags; 88 | } hde64s; 89 | 90 | #pragma pack(pop) 91 | 92 | #ifdef __cplusplus 93 | extern "C" { 94 | #endif 95 | 96 | /* Note, code should point to at least 32 valid bytes. */ 97 | unsigned int hde64_disasm(const void *code, hde64s *hs); 98 | 99 | #ifdef __cplusplus 100 | } 101 | #endif 102 | 103 | #endif /* _HDE64_H_ */ 104 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_compat.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2017 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_compat_hpp 9 | #define kern_compat_hpp 10 | 11 | #include 12 | #include 13 | 14 | // Legacy compatibility layer created to avoid 10.13 SDK macros 15 | // unsupported in older systems and improperly guarded due to 16 | // Availability.h header not being. Currently these macros 17 | // are left to avoid compilation errors. 18 | #define lilu_os_memcpy memcpy 19 | #define lilu_os_memmove memmove 20 | #define lilu_os_strncpy strncpy 21 | #define lilu_os_strncat strncat 22 | #define lilu_os_strlcat strlcat 23 | #define lilu_os_strlcpy strlcpy 24 | #define lilu_os_strcat strcat 25 | #define lilu_os_bcopy bcopy 26 | 27 | // This may not be nice but will protect users from changes in KernInfo strcture. 28 | #ifndef LILU_DISABLE_BRACE_WARNINGS 29 | #pragma clang diagnostic error "-Wmissing-braces" 30 | #endif 31 | 32 | #if defined(__i386__) 33 | #define lilu_strtou strtoul 34 | 35 | #elif defined(__x86_64__) 36 | #define lilu_strtou strtouq 37 | 38 | #else 39 | #error Unsupported arch. 40 | #endif 41 | 42 | #endif /* kern_compat_hpp */ 43 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_compression.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2017 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_compression_hpp 9 | #define kern_compression_hpp 10 | 11 | #include 12 | 13 | #ifdef LILU_COMPRESSION_SUPPORT 14 | 15 | #include 16 | #include 17 | 18 | namespace Compression { 19 | 20 | /** 21 | * Compression constants and modes 22 | */ 23 | static constexpr uint32_t Magic {0x706D6F63}; //comp 24 | static constexpr uint32_t ModeLZVN {0x6E767A6C}; //lzvn 25 | static constexpr uint32_t ModeLZSS {0x73737A6C}; //lzss 26 | static constexpr uint32_t ModeZLIB {0x9C787A6C}; //zlib 27 | 28 | /** 29 | * Compressed header structure 30 | */ 31 | struct Header { 32 | uint32_t magic; 33 | uint32_t compression; 34 | uint32_t hash; // adler32 35 | uint32_t decompressed; 36 | uint32_t compressed; 37 | uint32_t version; 38 | uint32_t padding[90]; 39 | }; 40 | 41 | /** 42 | * Typed decompressing function (currently for lzvn, lzss, and zlib) 43 | * 44 | * @param compression compression type 45 | * @param dstlen decompression buffer size 46 | * @param src compressed data 47 | * @param srclen compressed data size 48 | * @param buffer preallocated buffer to use 49 | * 50 | * @return decompressed buffer (must be freeded by Buffer::deleter if not preallocated) 51 | */ 52 | EXPORT uint8_t *decompress(uint32_t compression, uint32_t dstlen, const uint8_t *src, uint32_t srclen, uint8_t *buffer=nullptr); 53 | 54 | /** 55 | * Typed decompressing function (currently for lzvn, lzss, and zlib) 56 | * 57 | * @param compression compression type 58 | * @param dstlen decompression buffer size, actual decompressed size on success 59 | * @param src compressed data 60 | * @param srclen compressed data size 61 | * @param buffer preallocated buffer to use 62 | * 63 | * @return decompressed buffer (must be freeded by Buffer::deleter if not preallocated) 64 | */ 65 | EXPORT uint8_t *decompress(uint32_t compression, uint32_t *dstlen, const uint8_t *src, uint32_t srclen, uint8_t *buffer=nullptr); 66 | 67 | /** 68 | * Typed compressing function (currently for lzss) 69 | * 70 | * @param compression compression type 71 | * @param dstlen maximum compression buffer size 72 | * @param src uncompressed data 73 | * @param srclen uncompressed data size 74 | * @param buffer preallocated buffer to use 75 | * 76 | * @return compressed buffer with its actual size in dstlen (must be freeded by Buffer::deleter if not preallocated) 77 | */ 78 | EXPORT uint8_t *compress(uint32_t compression, uint32_t &dstlen, const uint8_t *src, uint32_t srclen, uint8_t *buffer=nullptr); 79 | 80 | } 81 | 82 | #endif /* LILU_COMPRESSION_SUPPORT */ 83 | 84 | #endif /* kern_compression_hpp */ 85 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_config.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2017 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_config_hpp 9 | #define kern_config_hpp 10 | 11 | /** 12 | * Enable kext patching support 13 | */ 14 | #define LILU_KEXTPATCH_SUPPORT 1 15 | 16 | /** 17 | * Enable compression and decompression support 18 | */ 19 | #define LILU_COMPRESSION_SUPPORT 1 20 | 21 | /** 22 | * Enable advanced disassembly API based on capstone 23 | */ 24 | // #define LILU_ADVANCED_DISASSEMBLY 1 25 | 26 | /** 27 | * Specify custom initialisation code 28 | * Use these in plugins in Xcode Project Preprocessor Macros section. 29 | */ 30 | // #define LILU_CUSTOM_IOKIT_INIT 1 31 | // #define LILU_CUSTOM_KMOD_INIT 1 32 | 33 | #endif /* kern_config_hpp */ 34 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_crypto.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2017 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_crypto_h 9 | #define kern_crypto_h 10 | 11 | #include 12 | #include 13 | #include 14 | 15 | namespace Crypto { 16 | /** 17 | * Currently this is equal to both key size and block size 18 | */ 19 | static constexpr uint32_t BlockSize = 16; 20 | 21 | /** 22 | * Currently this is guaranteed hash size 23 | */ 24 | static constexpr uint32_t MinDigestSize = 32; 25 | 26 | /** 27 | * Encrypted data format 28 | */ 29 | struct PACKED Encrypted { 30 | uint8_t iv[BlockSize]; // Initialisation vector 31 | struct PACKED Data { 32 | uint32_t size; // Actual encrypted buffer size 33 | uint8_t buf[BlockSize - sizeof(uint32_t)]; // Encrypted buffer >= BlockSize 34 | }; 35 | 36 | union { 37 | Data enc; 38 | uint8_t buf[BlockSize]; 39 | }; 40 | }; 41 | 42 | /** 43 | * Securely erase memory buffer 44 | * Based off cc_clear from corecrypto (src/cc_clear.c) 45 | * 46 | * @param len buffer length 47 | * @param dst buffer pointer 48 | */ 49 | inline void zeroMemory(size_t len, void *dst) { 50 | auto vptr = reinterpret_cast(dst); 51 | while (len--) 52 | *vptr++ = '\0'; 53 | } 54 | 55 | /** 56 | * Generates cryptographically secure encryption key (from /dev/random) 57 | * 58 | * @return generated key of at least BlockSize bits long (must be freeded by Buffer::deleter) or nullptr 59 | */ 60 | EXPORT uint8_t *genUniqueKey(uint32_t size=BlockSize); 61 | 62 | /** 63 | * Encrypts data of specified size and stores in Encrypted format 64 | * 65 | * @param key encryption key returned by genUniqueKey 66 | * @param src source data 67 | * @param size data size, encrypted size is returned on success 68 | * 69 | * @return encrypted data in Encrypted format (must be freed by Buffer::deleter) or nullptr 70 | */ 71 | EXPORT uint8_t *encrypt(const uint8_t *key, const uint8_t *src, uint32_t &size); 72 | 73 | /** 74 | * Decrypts data of specified size stored in Encrypted format 75 | * 76 | * @param key encryption key returned by genUniqueKey 77 | * @param src source data 78 | * @param size data size, decrypted size is returned on success 79 | * 80 | * @return decrypted data (must be freed by Buffer::deleter) or nullptr 81 | */ 82 | EXPORT uint8_t *decrypt(const uint8_t *key, const uint8_t *src, uint32_t &size); 83 | 84 | /** 85 | * Calculate digest of given size 86 | * 87 | * @param src source data 88 | * @param size data size 89 | * 90 | * @return digest hash of at least MinDigestSize bytes (must be freeded by Buffer::deleter) or nullptr 91 | */ 92 | EXPORT uint8_t *hash(const uint8_t *src, uint32_t size); 93 | } 94 | 95 | #endif /* kern_crypto_h */ 96 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_efi.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2018 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_efi_h 9 | #define kern_efi_h 10 | 11 | #include 12 | 13 | #include 14 | 15 | /** 16 | * Convert 32-bit EFI errors provided by Apple to 64-bit EFI errors 17 | */ 18 | #define EFI_ERROR64(x) (((x) & ~(1ULL << 31)) | (1ULL << 63)) 19 | static_assert(EFI_LOAD_ERROR == 0x80000001 && EFI_ERROR64(EFI_LOAD_ERROR) == 0x8000000000000001, 20 | "Apple has finally upgraded EFI headers!"); 21 | 22 | class EfiRuntimeServices { 23 | IOLock *accessLock {nullptr}; 24 | static EfiRuntimeServices *instance; 25 | private: 26 | bool is32BitEFI {false}; 27 | void *efiRuntimeServices {nullptr}; 28 | 29 | /** 30 | * Set EFI runtime services table pointer 31 | */ 32 | void setRuntimeServices(); 33 | 34 | public: 35 | /** 36 | * Activates EFI Runtime Services 37 | */ 38 | static void activate(); 39 | 40 | /** 41 | * Lilu custom GUIDs exports, see OcSupportPkg/Include/Guid/OcVariables.h 42 | */ 43 | EXPORT static const EFI_GUID LiluVendorGuid; 44 | EXPORT static const EFI_GUID LiluReadOnlyGuid; 45 | EXPORT static const EFI_GUID LiluWriteOnlyGuid; 46 | 47 | /** 48 | * Get EFI Runtime Services wrapper if supported 49 | * 50 | * @param lock lock instance during the run, must be put back 51 | * 52 | * @return wrapper instance 53 | */ 54 | EXPORT static EfiRuntimeServices *get(bool lock=false); 55 | 56 | /** 57 | * Put EFI Runtime Services wrapper to unlock 58 | */ 59 | EXPORT void put(); 60 | 61 | /** 62 | * Perform system reset (does not return on success) 63 | * 64 | * @param type reset type 65 | */ 66 | EXPORT void resetSystem(EFI_RESET_TYPE type); 67 | 68 | /** 69 | * Obtain EFI variable, invokes EFI_RUNTIME_SERVICES::GetVariable. 70 | * 71 | * @param name variable name 72 | * @param guid vendor guid 73 | * @param attr variable attributes 74 | * @param size data buffer size updated on read 75 | * @param data read data 76 | * 77 | * @return EFI_STATUS code 78 | */ 79 | EXPORT uint64_t getVariable(const char16_t *name, const EFI_GUID *guid, uint32_t *attr, uint64_t *size, void *data); 80 | 81 | /** 82 | * Set EFI variable, invokes EFI_RUNTIME_SERVICES::SetVariable. 83 | * 84 | * @param name variable name 85 | * @param guid vendor guid 86 | * @param attr variable attributes 87 | * @param size data buffer size 88 | * @param data data to write 89 | * 90 | * @return EFI_STATUS code 91 | */ 92 | EXPORT uint64_t setVariable(const char16_t *name, const EFI_GUID *guid, uint32_t attr, uint64_t size, void *data); 93 | }; 94 | 95 | #endif /* kern_efi_h */ 96 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_file.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2017 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_file_hpp 9 | #define kern_file_hpp 10 | 11 | #include 12 | #include 13 | 14 | #include 15 | #include 16 | 17 | namespace FileIO { 18 | /** 19 | * Reads file data at path 20 | * 21 | * @param path full file path 22 | * @param size bytes read 23 | * 24 | * @return allocated buffer on success or nullptr on error 25 | */ 26 | EXPORT uint8_t *readFileToBuffer(const char *path, size_t &size); 27 | 28 | /** 29 | * Read file data from a vnode 30 | * 31 | * @param buffer output buffer 32 | * @param off file offset 33 | * @param sz bytes to read 34 | * @param vnode file node 35 | * @param ctxt filesystem context 36 | * 37 | * @return 0 on success 38 | */ 39 | EXPORT int readFileData(void *buffer, off_t off, size_t sz, vnode_t vnode, vfs_context_t ctxt); 40 | 41 | /** 42 | * Read file size from a vnode 43 | * 44 | * @param vnode file node 45 | * @param ctxt filesystem context 46 | * 47 | * @return file size or 0 48 | */ 49 | EXPORT size_t readFileSize(vnode_t vnode, vfs_context_t ctxt); 50 | 51 | /** 52 | * Writes buffer to a file at path 53 | * 54 | * @param path full file path 55 | * @param buffer input buffer 56 | * @param size bytes write 57 | * @param fmode file opening mode 58 | * @param cmode file permissions 59 | * 60 | * @return 0 on success 61 | */ 62 | EXPORT int writeBufferToFile(const char *path, void *buffer, size_t size, int fmode=O_TRUNC | O_CREAT | FWRITE | O_NOFOLLOW, int cmode=S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); 63 | 64 | /** 65 | * Write file data to a vnode 66 | * 67 | * @param buffer input buffer 68 | * @param off file offset 69 | * @param size bytes to write 70 | * @param vnode file node 71 | * @param ctxt filesystem context 72 | * 73 | * @return 0 on success 74 | */ 75 | EXPORT int writeFileData(void *buffer, off_t off, size_t size, vnode_t vnode, vfs_context_t ctxt); 76 | 77 | /** 78 | * Perform file i/o through a vnode 79 | * 80 | * @param buffer input buffer 81 | * @param off file offset 82 | * @param size bytes to write 83 | * @param vnode file node 84 | * @param ctxt filesystem context 85 | * @param write write to buffer otherwise read 86 | * 87 | * @return 0 on success 88 | */ 89 | int performFileIO(void *buffer, off_t off, size_t size, vnode_t vnode, vfs_context_t ctxt, bool write); 90 | } 91 | 92 | #endif /* kern_file_hpp */ 93 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_policy.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2017 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_policy_hpp 9 | #define kern_policy_hpp 10 | 11 | #include 12 | 13 | #include 14 | #include 15 | 16 | #include 17 | #include 18 | #include 19 | 20 | #if defined(__x86_64__) 21 | class Policy { 22 | /** 23 | * TrustedBSD Policy handle 24 | */ 25 | mac_policy_handle_t policyHandle {0}; 26 | 27 | /** 28 | * TrustedBSD policy configuration 29 | */ 30 | mac_policy_conf policyConf; 31 | public: 32 | /** 33 | * Compile-time policy constructor 34 | * 35 | * @param name policy name literal 36 | * @param descr policy description literal 37 | * @param ops policy functions 38 | */ 39 | constexpr Policy(const char *name, const char *descr, struct mac_policy_ops *ops) : policyConf{ 40 | .mpc_name = name, 41 | .mpc_fullname = descr, 42 | .mpc_labelnames = nullptr, 43 | .mpc_labelname_count = 0, 44 | .mpc_ops = ops, 45 | // Our policies are loaded very early and are static. We cannot unload them. 46 | .mpc_loadtime_flags = 0 /*MPC_LOADTIME_FLAG_UNLOADOK*/, 47 | .mpc_field_off = nullptr, 48 | .mpc_runtime_flags = 0 49 | } { } 50 | 51 | /** 52 | * Registers TrustedBSD policy 53 | * 54 | * @return true on success 55 | */ 56 | EXPORT bool registerPolicy(); 57 | 58 | /** 59 | * Unregisters TrustedBSD policy if allowed 60 | * 61 | * @return true on success 62 | */ 63 | EXPORT bool unregisterPolicy(); 64 | }; 65 | #endif 66 | 67 | #endif /* kern_policy_hpp */ 68 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_time.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2018 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_time_hpp 9 | #define kern_time_hpp 10 | 11 | #include 12 | 13 | /** 14 | * Obtain current system time in nanoseconds 15 | * 16 | * @return current time 17 | */ 18 | inline uint64_t getCurrentTimeNs() { 19 | uint64_t currt = 0; 20 | absolutetime_to_nanoseconds(mach_absolute_time(), &currt); 21 | return currt; 22 | } 23 | 24 | /** 25 | * Obtain current calendar system time in nanoseconds 26 | * 27 | * @return current time 28 | */ 29 | inline uint64_t getCalendarTimeNs() { 30 | clock_sec_t sc; 31 | clock_nsec_t ns; 32 | clock_get_calendar_nanotime(&sc, &ns); 33 | return static_cast(sc) * NSEC_PER_SEC + ns; 34 | } 35 | 36 | /** 37 | * Obtain time passed since some timestamp in nanoseconds 38 | * 39 | * @param start starting timestamp 40 | * @param current timestamp to check against (pass 0 for current time) 41 | * 42 | * @return delta or 0 (if current time equals or precedeces the start) 43 | */ 44 | inline uint64_t getTimeSinceNs(uint64_t start, uint64_t current = 0) { 45 | if (current == 0) 46 | current = getCurrentTimeNs(); 47 | if (current > start) 48 | return current - start; 49 | return 0; 50 | } 51 | 52 | /** 53 | * Obtain time left till a timestamp in the future in nanoseconds 54 | * 55 | * @param start starting timestamp 56 | * @param timeout timeout for the event 57 | * @param current timestamp to check against (pass 0 for current time) 58 | * 59 | * @return delta or 0 (if the timeout is over) 60 | */ 61 | inline uint64_t getTimeLeftNs(uint64_t start, uint64_t timeout, uint64_t current = 0) { 62 | if (current == 0) 63 | current = getCurrentTimeNs(); 64 | if (start + timeout > current) 65 | return start + timeout - current; 66 | return 0; 67 | } 68 | 69 | /** 70 | * Convert from nanoseconds to milliseconds 71 | * 72 | * @param t timestamp in ns 73 | * 74 | * @return timestamp in ms 75 | */ 76 | constexpr uint64_t convertNsToMs(uint64_t t) { 77 | return t / 1000000; 78 | } 79 | 80 | /** 81 | * Convert from nanoseconds to seconds 82 | * 83 | * @param t timestamp in ns 84 | * 85 | * @return timestamp in s 86 | */ 87 | constexpr uint64_t convertNsToSc(uint64_t t) { 88 | return t / 1000000000; 89 | } 90 | 91 | /** 92 | * Convert from milliseconds to seconds 93 | * 94 | * @param t timestamp in ms 95 | * 96 | * @return timestamp in s 97 | */ 98 | constexpr uint64_t convertMsToSc(uint64_t t) { 99 | return t / 1000; 100 | } 101 | 102 | /** 103 | * Convert from milliseconds to nanoseconds 104 | * 105 | * @param t timestamp in ms 106 | * 107 | * @return timestamp in ns 108 | */ 109 | constexpr uint64_t convertMsToNs(uint64_t t) { 110 | return t * 1000000; 111 | } 112 | 113 | /** 114 | * Convert from seconds to nanoseconds 115 | * 116 | * @param t timestamp in s 117 | * 118 | * @return timestamp in ns 119 | */ 120 | constexpr uint64_t convertScToNs(uint64_t t) { 121 | return t * 1000000000; 122 | } 123 | 124 | /** 125 | * Convert from seconds to milliseconds 126 | * 127 | * @param t timestamp in s 128 | * 129 | * @return timestamp in ms 130 | */ 131 | constexpr uint64_t convertScToMs(uint64_t t) { 132 | return t * 1000; 133 | } 134 | 135 | #endif /* kern_time_hpp */ 136 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_version.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_version.hpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2020 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_version_hpp 9 | #define kern_version_hpp 10 | 11 | #include 12 | 13 | #include 14 | #include 15 | 16 | /** 17 | * Slightly non-standard helpers to get the date in a YYYY-MM-DD format. 18 | */ 19 | template 20 | inline constexpr char getBuildYear() { 21 | static_assert(i < 4, "Year consists of four digits"); 22 | return __DATE__[7+i]; 23 | } 24 | 25 | template 26 | inline constexpr char getBuildMonth() { 27 | static_assert(i < 2, "Month consists of two digits"); 28 | auto mon = static_cast(__DATE__[0]) 29 | | (static_cast(__DATE__[1]) << 8U) 30 | | (static_cast(__DATE__[2]) << 16U) 31 | | (static_cast(__DATE__[3]) << 24U); 32 | switch (mon) { 33 | case ' naJ': 34 | return "01"[i]; 35 | case ' beF': 36 | return "02"[i]; 37 | case ' raM': 38 | return "03"[i]; 39 | case ' rpA': 40 | return "04"[i]; 41 | case ' yaM': 42 | return "05"[i]; 43 | case ' nuJ': 44 | return "06"[i]; 45 | case ' luJ': 46 | return "07"[i]; 47 | case ' guA': 48 | return "08"[i]; 49 | case ' peS': 50 | return "09"[i]; 51 | case ' tcO': 52 | return "10"[i]; 53 | case ' voN': 54 | return "11"[i]; 55 | case ' ceD': 56 | return "12"[i]; 57 | default: 58 | return '0'; 59 | } 60 | } 61 | 62 | template 63 | inline constexpr char getBuildDay() { 64 | static_assert(i < 2, "Day consists of two digits"); 65 | if (i == 0 && __DATE__[4+i] == ' ') 66 | return '0'; 67 | return __DATE__[4+i]; 68 | } 69 | 70 | #if !defined(LILU_CUSTOM_KMOD_INIT) || !defined(LILU_CUSTOM_IOKIT_INIT) || defined(LILU_USE_KEXT_VERSION) 71 | 72 | static const char kextVersion[] { 73 | #ifdef DEBUG 74 | 'D', 'B', 'G', '-', 75 | #else 76 | 'R', 'E', 'L', '-', 77 | #endif 78 | xStringify(MODULE_VERSION)[0], xStringify(MODULE_VERSION)[2], xStringify(MODULE_VERSION)[4], '-', 79 | getBuildYear<0>(), getBuildYear<1>(), getBuildYear<2>(), getBuildYear<3>(), '-', 80 | getBuildMonth<0>(), getBuildMonth<1>(), '-', getBuildDay<0>(), getBuildDay<1>(), '\0' 81 | }; 82 | 83 | #endif 84 | 85 | #endif /* kern_version_hpp */ 86 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp: -------------------------------------------------------------------------------- 1 | // 2 | // kern_start.hpp 3 | // AppleALC 4 | // 5 | // Copyright © 2016 vit9696. All rights reserved. 6 | // 7 | 8 | #ifndef kern_start_hpp 9 | #define kern_start_hpp 10 | 11 | #include 12 | 13 | #include 14 | #include 15 | 16 | struct PluginConfiguration { 17 | const char *product; // Product name (e.g. xStringify(PRODUCT_NAME)) 18 | size_t version; // Product version (e.g. parseModuleVersion(xStringify(MODULE_VERSION))) 19 | uint32_t runmode; // Product supported environments (e.g. LiluAPI::AllowNormal) 20 | const char **disableArg; // Pointer to disabling boot arguments array 21 | size_t disableArgNum; // Number of disabling boot arguments 22 | const char **debugArg; // Pointer to debug boot arguments array 23 | size_t debugArgNum; // Number of debug boot arguments 24 | const char **betaArg; // Pointer to beta boot arguments array 25 | size_t betaArgNum; // Number of beta boot arguments 26 | KernelVersion minKernel; // Minimal required kernel version 27 | KernelVersion maxKernel; // Maximum supported kernel version 28 | void (*pluginStart)(); // Main function 29 | }; 30 | 31 | #ifndef LILU_CUSTOM_KMOD_INIT 32 | 33 | extern PluginConfiguration ADDPR(config); 34 | 35 | extern bool ADDPR(startSuccess); 36 | 37 | #endif /* LILU_CUSTOM_KMOD_INIT */ 38 | 39 | #ifndef LILU_CUSTOM_IOKIT_INIT 40 | 41 | class EXPORT PRODUCT_NAME : public IOService { 42 | OSDeclareDefaultStructors(PRODUCT_NAME) 43 | public: 44 | IOService *probe(IOService *provider, SInt32 *score) override; 45 | bool start(IOService *provider) override; 46 | void stop(IOService *provider) override; 47 | }; 48 | 49 | extern PRODUCT_NAME *ADDPR(selfInstance); 50 | 51 | #endif /* LILU_CUSTOM_IOKIT_INIT */ 52 | 53 | #endif /* kern_start_hpp */ 54 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // plugin_start.cpp 3 | // Lilu 4 | // 5 | // Copyright © 2016-2017 vit9696. All rights reserved. 6 | // 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | 13 | #ifndef LILU_CUSTOM_KMOD_INIT 14 | bool ADDPR(startSuccess) = false; 15 | #else 16 | // Workaround custom kmod code and enable by default 17 | bool ADDPR(startSuccess) = true; 18 | #endif /* LILU_CUSTOM_KMOD_INIT */ 19 | 20 | bool ADDPR(debugEnabled) = false; 21 | uint32_t ADDPR(debugPrintDelay) = 0; 22 | 23 | #ifndef LILU_CUSTOM_IOKIT_INIT 24 | 25 | OSDefineMetaClassAndStructors(PRODUCT_NAME, IOService) 26 | 27 | PRODUCT_NAME *ADDPR(selfInstance) = nullptr; 28 | 29 | IOService *PRODUCT_NAME::probe(IOService *provider, SInt32 *score) { 30 | ADDPR(selfInstance) = this; 31 | setProperty("VersionInfo", kextVersion); 32 | auto service = IOService::probe(provider, score); 33 | return ADDPR(startSuccess) ? service : nullptr; 34 | } 35 | 36 | bool PRODUCT_NAME::start(IOService *provider) { 37 | ADDPR(selfInstance) = this; 38 | if (!IOService::start(provider)) { 39 | SYSLOG("init", "failed to start the parent"); 40 | return false; 41 | } 42 | 43 | return ADDPR(startSuccess); 44 | } 45 | 46 | void PRODUCT_NAME::stop(IOService *provider) { 47 | ADDPR(selfInstance) = nullptr; 48 | IOService::stop(provider); 49 | } 50 | 51 | #endif /* LILU_CUSTOM_IOKIT_INIT */ 52 | 53 | #ifndef LILU_CUSTOM_KMOD_INIT 54 | 55 | EXPORT extern "C" kern_return_t ADDPR(kern_start)(kmod_info_t *, void *) { 56 | // This is an ugly hack necessary on some systems where buffering kills most of debug output. 57 | lilu_get_boot_args("liludelay", &ADDPR(debugPrintDelay), sizeof(ADDPR(debugPrintDelay))); 58 | 59 | auto error = lilu.requestAccess(); 60 | if (error == LiluAPI::Error::NoError) { 61 | error = lilu.shouldLoad(ADDPR(config).product, ADDPR(config).version, ADDPR(config).runmode, ADDPR(config).disableArg, ADDPR(config).disableArgNum, 62 | ADDPR(config).debugArg, ADDPR(config).debugArgNum, ADDPR(config).betaArg, ADDPR(config).betaArgNum, ADDPR(config).minKernel, 63 | ADDPR(config).maxKernel, ADDPR(debugEnabled)); 64 | 65 | if (error == LiluAPI::Error::NoError) { 66 | DBGLOG("init", "%s bootstrap %s", xStringify(PRODUCT_NAME), kextVersion); 67 | (void)kextVersion; 68 | ADDPR(startSuccess) = true; 69 | ADDPR(config).pluginStart(); 70 | } else { 71 | SYSLOG("init", "parent said we should not continue %d", error); 72 | } 73 | 74 | lilu.releaseAccess(); 75 | } else { 76 | SYSLOG("init", "failed to call parent %d", error); 77 | } 78 | 79 | for (size_t i = 0; i < ADDPR(config).debugArgNum; i++) { 80 | if (checkKernelArgument(ADDPR(config).debugArg[i])) { 81 | ADDPR(debugEnabled) = true; 82 | break; 83 | } 84 | } 85 | 86 | if (checkKernelArgument("-liludbgall")) 87 | ADDPR(debugEnabled) = true; 88 | 89 | // Report success but actually do not start and let I/O Kit unload us. 90 | // This works better and increases boot speed in some cases. 91 | return KERN_SUCCESS; 92 | } 93 | 94 | EXPORT extern "C" kern_return_t ADDPR(kern_stop)(kmod_info_t *, void *) { 95 | // It is not safe to unload Lilu plugins unless they were disabled! 96 | return ADDPR(startSuccess) ? KERN_FAILURE : KERN_SUCCESS; 97 | } 98 | 99 | #endif /* LILU_CUSTOM_KMOD_INIT */ 100 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # build.tool 4 | # Lilu 5 | # 6 | # Copyright © 2018 vit9696. All rights reserved. 7 | # 8 | 9 | cd $(dirname "$0") || exit 1 10 | 11 | rm -f *.o *.bin wrappers.inc entry32 entry64 12 | 13 | clang -m32 -c entry32.S || exit 1 14 | clang -m64 -c entry64.S || exit 1 15 | 16 | clang -m32 entry32.o -o entry32 || exit 1 17 | clang -m64 entry64.o -o entry64 || exit 1 18 | 19 | if [ "$(nm entry32.o | grep '00000000 T _main')" == "" ] || [ "$(nm entry64.o | grep '0000000000000000 T _main')" == "" ]; then 20 | echo "Invalid main address" 21 | exit 1 22 | fi 23 | 24 | otool -t entry32 | grep -E '^0000' | sed 's#^[0-9a-f]*##' | xxd -r -p > entry32.bin 25 | otool -t entry64 | grep -E '^0000' | sed 's#^[0-9a-f]*##' | xxd -r -p > entry64.bin 26 | 27 | sz32=$(stat -f '%z' entry32.bin) 28 | sz64=$(stat -f '%z' entry64.bin) 29 | 30 | btr32=$(nm entry32.o | grep -E 't booter$' | cut -f1 -d' ') 31 | btr64=$(nm entry64.o | grep -E 't booter$' | cut -f1 -d' ') 32 | 33 | ep32=$(nm entry32.o | grep -E 't entrypoint$' | cut -f1 -d' ') 34 | ep64=$(nm entry64.o | grep -E 't entrypoint$' | cut -f1 -d' ') 35 | 36 | echo '//' > wrappers.inc 37 | echo '// wrappers.inc' >> wrappers.inc 38 | echo '// Lilu' >> wrappers.inc 39 | echo '//' >> wrappers.inc 40 | echo '// Copyright © 2018 vit9696. All rights reserved.' >> wrappers.inc 41 | echo '//' >> wrappers.inc 42 | echo '' >> wrappers.inc 43 | echo '// This is an autogenerated file, do not edit!' >> wrappers.inc 44 | echo 'static uint8_t entryWrapper32[] = {' >> wrappers.inc 45 | cat entry32.bin | xxd -i >> wrappers.inc 46 | echo '};' >> wrappers.inc 47 | echo 'static uint8_t entryWrapper64[] = {' >> wrappers.inc 48 | cat entry64.bin | xxd -i >> wrappers.inc 49 | echo '};' >> wrappers.inc 50 | echo "static_assert(sizeof(entryWrapper32) == ${sz32}, \"Invalid entryWrapper32 size\");" >> wrappers.inc 51 | echo "static_assert(sizeof(entryWrapper64) == ${sz64}, \"Invalid entryWrapper64 size\");" >> wrappers.inc 52 | echo "static constexpr size_t EntryWrapper32Booter {0x${btr32}};" >> wrappers.inc 53 | echo "static constexpr size_t EntryWrapper64Booter {0x${btr64}};" >> wrappers.inc 54 | echo "static constexpr size_t EntryWrapper32Entry {0x${ep32}};" >> wrappers.inc 55 | echo "static constexpr size_t EntryWrapper64Entry {0x${ep64}};" >> wrappers.inc 56 | 57 | rm -f *.o *.bin entry32 entry64 58 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S: -------------------------------------------------------------------------------- 1 | # 2 | # entry32.S 3 | # Lilu 4 | # 5 | # Copyright © 2018 vit9696. All rights reserved. 6 | # 7 | 8 | .text 9 | .global _main 10 | _main: 11 | push %ebp 12 | mov %esp, %ebp 13 | # ensure 16-byte alignment 14 | and $0xfffffff0, %esp 15 | # int main(int argc, const char* argv[], const char* envp[], const char* apple[]); 16 | push 20(%ebp) 17 | push 16(%ebp) 18 | push 12(%ebp) 19 | push 8(%ebp) 20 | call get_booter 21 | # entrypoint-compatible wrapper 22 | booter: 23 | .word 0xFFFF 24 | .word 0xFFFF 25 | get_booter: 26 | pop %edx 27 | mov (%edx), %edx 28 | call *%edx 29 | xor %eax, %eax 30 | mov %ebp, %esp 31 | pop %ebp 32 | call get_entrypoint 33 | # original entrypoint (main) 34 | entrypoint: 35 | .word 0xFFFF 36 | .word 0xFFFF 37 | get_entrypoint: 38 | pop %edx 39 | mov (%edx), %edx 40 | jmp *%edx 41 | _end: 42 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S: -------------------------------------------------------------------------------- 1 | # 2 | # entry64.S 3 | # Lilu 4 | # 5 | # Copyright © 2018 vit9696. All rights reserved. 6 | # 7 | 8 | .text 9 | .global _main 10 | _main: 11 | push %rbp 12 | mov %rsp, %rbp 13 | # ensure 16-byte alignment 14 | and $0xfffffffffffffff0, %rsp 15 | # int main(int argc, const char* argv[], const char* envp[], const char* apple[]); 16 | push %rdi 17 | push %rsi 18 | push %rdx 19 | push %rcx 20 | call *booter(%rip) 21 | xor %eax, %eax 22 | pop %rcx 23 | pop %rdx 24 | pop %rsi 25 | pop %rdi 26 | mov %rbp, %rsp 27 | pop %rbp 28 | jmp *entrypoint(%rip) 29 | # original entrypoint (main) 30 | entrypoint: 31 | .word 0xFFFF 32 | .word 0xFFFF 33 | .word 0xFFFF 34 | .word 0xFFFF 35 | # entrypoint-compatible wrapper 36 | booter: 37 | .word 0xFFFF 38 | .word 0xFFFF 39 | .word 0xFFFF 40 | .word 0xFFFF 41 | _end: 42 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc: -------------------------------------------------------------------------------- 1 | // 2 | // wrappers.inc 3 | // Lilu 4 | // 5 | // Copyright © 2018 vit9696. All rights reserved. 6 | // 7 | 8 | // This is an autogenerated file, do not edit! 9 | static uint8_t entryWrapper32[] = { 10 | 0x55, 0x89, 0xe5, 0x83, 0xe4, 0xf0, 0xff, 0x75, 0x14, 0xff, 0x75, 0x10, 11 | 0xff, 0x75, 0x0c, 0xff, 0x75, 0x08, 0xe8, 0x04, 0x00, 0x00, 0x00, 0xff, 12 | 0xff, 0xff, 0xff, 0x5a, 0x8b, 0x12, 0xff, 0xd2, 0x31, 0xc0, 0x89, 0xec, 13 | 0x5d, 0xe8, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x5a, 0x8b, 14 | 0x12, 0xff, 0xe2 15 | }; 16 | static uint8_t entryWrapper64[] = { 17 | 0x55, 0x48, 0x89, 0xe5, 0x48, 0x83, 0xe4, 0xf0, 0x57, 0x56, 0x52, 0x51, 18 | 0xff, 0x15, 0x18, 0x00, 0x00, 0x00, 0x31, 0xc0, 0x59, 0x5a, 0x5e, 0x5f, 19 | 0x48, 0x89, 0xec, 0x5d, 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 20 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 21 | 0xff, 0xff 22 | }; 23 | static_assert(sizeof(entryWrapper32) == 51, "Invalid entryWrapper32 size"); 24 | static_assert(sizeof(entryWrapper64) == 50, "Invalid entryWrapper64 size"); 25 | static constexpr size_t EntryWrapper32Booter {0x00000017}; 26 | static constexpr size_t EntryWrapper64Booter {0x000000000000002a}; 27 | static constexpr size_t EntryWrapper32Entry {0x0000002a}; 28 | static constexpr size_t EntryWrapper64Entry {0x0000000000000022}; 29 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NVMeFix 11 | CFBundleIdentifier 12 | org.acidanthera.NVMeFix 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NVMeFix 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | org.acidanthera.NVMeFix 46 | 47 | CFBundleIdentifier 48 | org.acidanthera.NVMeFix 49 | IOClass 50 | NVMeFix 51 | IOMatchCategory 52 | NVMeFix 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2019 acidanthera. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.4.1 69 | com.apple.kpi.bsd 70 | 12.0.0 71 | com.apple.kpi.dsep 72 | 12.0.0 73 | com.apple.kpi.iokit 74 | 12.0.0 75 | com.apple.kpi.libkern 76 | 12.0.0 77 | com.apple.kpi.mach 78 | 12.0.0 79 | com.apple.kpi.unsupported 80 | 12.0.0 81 | 82 | OSBundleRequired 83 | Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCBatteryManager 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCBatteryManager 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCBatteryManager 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.3.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | IOSMBusController 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCBatteryManager 49 | IOClass 50 | SMCSMBusController 51 | IOMatchCategory 52 | SMCSMBusController 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | SMCBatteryManager 59 | 60 | CFBundleIdentifier 61 | ru.usrsse2.SMCBatteryManager 62 | IOClass 63 | SMCBatteryManager 64 | IOMatchCategory 65 | SMCBatteryManager 66 | IOProviderClass 67 | IOResources 68 | IOResourceMatch 69 | IOKit 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.6 74 | NSHumanReadableCopyright 75 | Copyright © 2018 usrsse2. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | as.vit9696.VirtualSMC 83 | 1.0.0 84 | com.apple.iokit.IOACPIFamily 85 | 1.0.0d1 86 | com.apple.iokit.IOSMBusFamily 87 | 1.0.0 88 | com.apple.kpi.bsd 89 | 8.0.0 90 | com.apple.kpi.iokit 91 | 8.0.0 92 | com.apple.kpi.libkern 93 | 8.0.0 94 | com.apple.kpi.mach 95 | 8.0.0 96 | com.apple.kpi.unsupported 97 | 8.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H524 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | v1.0 9 | CFBundleIdentifier 10 | com.corpnewt.USBMap 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBMap 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | MacBookAir9,1-XHC 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBHostMergeProperties 29 | IOClass 30 | AppleUSBHostMergeProperties 31 | IOParentMatch 32 | 33 | IOPropertyMatch 34 | 35 | pcidebug 36 | 0:20:0 37 | 38 | 39 | IOProviderClass 40 | AppleUSBXHCIPCI 41 | IOProviderMergeProperties 42 | 43 | kUSBMuxEnabled 44 | 45 | port-count 46 | 47 | DgAAAA== 48 | 49 | ports 50 | 51 | HS01 52 | 53 | UsbConnector 54 | 3 55 | port 56 | 57 | AQAAAA== 58 | 59 | 60 | HS02 61 | 62 | UsbConnector 63 | 3 64 | port 65 | 66 | AgAAAA== 67 | 68 | 69 | HS03 70 | 71 | #port 72 | 73 | AwAAAA== 74 | 75 | UsbConnector 76 | 3 77 | 78 | HS04 79 | 80 | UsbConnector 81 | 3 82 | port 83 | 84 | BAAAAA== 85 | 86 | 87 | HS05 88 | 89 | #port 90 | 91 | BQAAAA== 92 | 93 | UsbConnector 94 | 3 95 | 96 | HS06 97 | 98 | #port 99 | 100 | BgAAAA== 101 | 102 | UsbConnector 103 | 3 104 | 105 | HS07 106 | 107 | #port 108 | 109 | BwAAAA== 110 | 111 | UsbConnector 112 | 3 113 | 114 | HS08 115 | 116 | #port 117 | 118 | CAAAAA== 119 | 120 | UsbConnector 121 | 3 122 | 123 | HS09 124 | 125 | #port 126 | 127 | CQAAAA== 128 | 129 | UsbConnector 130 | 3 131 | 132 | HS10 133 | 134 | UsbConnector 135 | 3 136 | port 137 | 138 | CgAAAA== 139 | 140 | 141 | HS11 142 | 143 | #port 144 | 145 | CwAAAA== 146 | 147 | UsbConnector 148 | 3 149 | 150 | HS12 151 | 152 | #port 153 | 154 | DAAAAA== 155 | 156 | UsbConnector 157 | 3 158 | 159 | SS01 160 | 161 | UsbConnector 162 | 3 163 | port 164 | 165 | DQAAAA== 166 | 167 | 168 | SS02 169 | 170 | UsbConnector 171 | 3 172 | port 173 | 174 | DgAAAA== 175 | 176 | 177 | SS03 178 | 179 | #port 180 | 181 | DwAAAA== 182 | 183 | UsbConnector 184 | 3 185 | 186 | 187 | 188 | model 189 | MacBookAir9,1 190 | 191 | 192 | OSBundleRequired 193 | Root 194 | 195 | 196 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VerbStub.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18B75 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VerbStub 11 | CFBundleIdentifier 12 | com.XPS.VerbStub 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VerbStub 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10B61 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18B71 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1010 39 | DTXcodeBuild 40 | 10B61 41 | IOKitPersonalities 42 | 43 | VerbStub 44 | 45 | CFBundleIdentifier 46 | com.XPS.VerbStub 47 | IOClass 48 | com_XPS_VerbStub 49 | IOMatchCategory 50 | com_XPS_VerbStub 51 | IOProviderClass 52 | IOHDACodecFunction 53 | IOUserClientClass 54 | VerbStubUserClient 55 | 56 | VerbStubResidency 57 | 58 | CFBundleIdentifier 59 | com.XPS.VerbStub 60 | IOClass 61 | VerbStubResidency 62 | IOMatchCategory 63 | VerbStubResidency 64 | IOProviderClass 65 | IOResources 66 | 67 | 68 | NSHumanReadableCopyright 69 | Copyright © 2017 VerbStub. All rights reserved. 70 | OSBundleLibraries 71 | 72 | com.apple.iokit.IOPCIFamily 73 | 2.9 74 | com.apple.kpi.iokit 75 | 16.6 76 | com.apple.kpi.libkern 77 | 16.6 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VerbStub.kext/Contents/MacOS/VerbStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VerbStub.kext/Contents/MacOS/VerbStub -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooGPIO 11 | CFBundleIdentifier 12 | org.coolstar.VoodooGPIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooGPIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | VoodooGPIOCannonLakeH 44 | 45 | CFBundleIdentifier 46 | org.coolstar.VoodooGPIO 47 | IOClass 48 | VoodooGPIOCannonLakeH 49 | IONameMatch 50 | 51 | INT3450 52 | 53 | IOProviderClass 54 | IOService 55 | 56 | VoodooGPIOCannonLakeLP 57 | 58 | CFBundleIdentifier 59 | org.coolstar.VoodooGPIO 60 | IOClass 61 | VoodooGPIOCannonLakeLP 62 | IONameMatch 63 | 64 | INT34BB 65 | 66 | IOProviderClass 67 | IOService 68 | 69 | VoodooGPIOIceLakeLP 70 | 71 | CFBundleIdentifier 72 | org.coolstar.VoodooGPIO 73 | IOClass 74 | VoodooGPIOIceLakeLP 75 | IONameMatch 76 | 77 | INT3455 78 | 79 | IOProviderClass 80 | IOService 81 | 82 | VoodooGPIOSunrisePointH 83 | 84 | CFBundleIdentifier 85 | org.coolstar.VoodooGPIO 86 | IOClass 87 | VoodooGPIOSunrisePointH 88 | IONameMatch 89 | 90 | INT345D 91 | 92 | IOProviderClass 93 | IOService 94 | 95 | VoodooGPIOSunrisePointLP 96 | 97 | CFBundleIdentifier 98 | org.coolstar.VoodooGPIO 99 | IOClass 100 | VoodooGPIOSunrisePointLP 101 | IONameMatch 102 | 103 | INT344B 104 | 105 | IOProviderClass 106 | IOService 107 | 108 | 109 | LSMinimumSystemVersion 110 | 10.12 111 | NSHumanReadableCopyright 112 | Copyright © 2017 CoolStar. All rights reserved. 113 | OSBundleCompatibleVersion 114 | 1.1 115 | OSBundleLibraries 116 | 117 | com.apple.iokit.IOACPIFamily 118 | 1.4 119 | com.apple.kpi.iokit 120 | 13.0 121 | com.apple.kpi.libkern 122 | 13.0 123 | com.apple.kpi.mach 124 | 13.0 125 | 126 | OSBundleRequired 127 | Root 128 | 129 | 130 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CServices 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CServices 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CServices 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | VoodooI2CLogger 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CServices 47 | IOClass 48 | VoodooI2CLogger 49 | IOMatchCategory 50 | VoodooI2CLogger 51 | IOProviderClass 52 | VoodooI2CServices 53 | 54 | VoodooI2CServices 55 | 56 | CFBundleIdentifier 57 | com.alexandred.VoodooI2CServices 58 | IOClass 59 | VoodooI2CServices 60 | IOMatchCategory 61 | VoodooI2CServices 62 | IOProviderClass 63 | IOResources 64 | 65 | 66 | LSMinimumSystemVersion 67 | 10.11 68 | NSHumanReadableCopyright 69 | Copyright © 2017 Alexandre Daoud. All rights reserved. 70 | OSBundleCompatibleVersion 71 | 1.0.0 72 | OSBundleLibraries 73 | 74 | com.apple.kpi.iokit 75 | 14 76 | com.apple.kpi.libkern 77 | 14 78 | 79 | OSBundleRequired 80 | Root 81 | 82 | 83 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | Voodoo Input 44 | 45 | CFBundleIdentifier 46 | me.kishorprins.VoodooInput 47 | IOClass 48 | VoodooInput 49 | IOProbeScore 50 | 200 51 | IOPropertyMatch 52 | 53 | VoodooInputSupported 54 | 55 | 56 | IOProviderClass 57 | IOService 58 | 59 | 60 | LSMinimumSystemVersion 61 | 10.11 62 | NSHumanReadableCopyright 63 | Copyright © 2019 Kishor Prins. All rights reserved. 64 | OSBundleLibraries 65 | 66 | com.apple.iokit.IOHIDFamily 67 | 2.0 68 | com.apple.kpi.iokit 69 | 14 70 | com.apple.kpi.libkern 71 | 14 72 | com.apple.kpi.mach 73 | 13.0 74 | 75 | OSBundleRequired 76 | Root 77 | 78 | 79 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H15 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.1.9, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.9 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.9 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ACPI PS/2 Nub 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Controller 51 | FindMouseDelay 52 | 100 53 | IOClass 54 | AppleACPIPS2Nub 55 | IONameMatch 56 | 57 | PNP0303 58 | PNP030B 59 | PNP0320 60 | 61 | IOProviderClass 62 | IOACPIPlatformDevice 63 | MouseNameMatch 64 | 65 | PNP0F03 66 | PNP0F0B 67 | PNP0F0E 68 | PNP0F13 69 | 70 | 71 | ApplePS2Controller 72 | 73 | CFBundleIdentifier 74 | as.acidanthera.voodoo.driver.PS2Controller 75 | IOClass 76 | ApplePS2Controller 77 | IONameMatch 78 | ps2controller 79 | IOProviderClass 80 | IOPlatformDevice 81 | Platform Profile 82 | 83 | Default 84 | 85 | MouseWakeFirst 86 | 87 | WakeDelay 88 | 10 89 | 90 | HPQOEM 91 | 92 | 1411 93 | ProBook 94 | 1619 95 | ProBook 96 | 161C 97 | ProBook 98 | 164F 99 | ProBook 100 | 167C 101 | ProBook 102 | 167E 103 | ProBook 104 | 1680 105 | ProBook 106 | 179B 107 | ProBook 108 | 179C 109 | ProBook 110 | 17A9 111 | ProBook 112 | 17F0 113 | ProBook 114 | 17F3 115 | ProBook 116 | 17F6 117 | ProBook 118 | 1942 119 | ProBook 120 | 1949 121 | ProBook 122 | 198F 123 | ProBook 124 | ProBook 125 | 126 | WakeDelay 127 | 0 128 | 129 | ProBook-102 130 | ProBook 131 | ProBook-87 132 | ProBook 133 | 134 | 135 | RM,deliverNotifications 136 | 137 | 138 | 139 | LSMinimumSystemVersion 140 | 10.11 141 | OSBundleCompatibleVersion 142 | 2.1.9 143 | OSBundleLibraries 144 | 145 | com.apple.iokit.IOACPIFamily 146 | 1.0.0d1 147 | com.apple.kpi.bsd 148 | 8.0.0 149 | com.apple.kpi.iokit 150 | 8.0.0 151 | com.apple.kpi.libkern 152 | 8.0.0 153 | com.apple.kpi.mach 154 | 8.0.0 155 | com.apple.kpi.unsupported 156 | 8.0.0 157 | 158 | OSBundleRequired 159 | Console 160 | 161 | 162 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G730 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.6.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.6 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 10.0.0 92 | com.apple.kpi.dsep 93 | 10.0.0 94 | com.apple.kpi.iokit 95 | 10.0.0 96 | com.apple.kpi.libkern 97 | 10.0.0 98 | com.apple.kpi.mach 99 | 10.0.0 100 | com.apple.kpi.unsupported 101 | 10.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/Kexts/itlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | itlwm 11 | CFBundleIdentifier 12 | com.zxystd.itlwm 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | itlwm 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.1.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11A420a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19A547 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1100 39 | DTXcodeBuild 40 | 11A420a 41 | IOKitPersonalities 42 | 43 | itlwm 44 | 45 | CFBundleIdentifier 46 | com.zxystd.itlwm 47 | IOClass 48 | itlwm 49 | IOMatchCategory 50 | IODefaultMatchCategory 51 | IOPCIPrimaryMatch 52 | 0x00008086&0x0000ffff 53 | IOProbeScore 54 | 2000 55 | IOProviderClass 56 | IOPCIDevice 57 | IOUserClientClass 58 | ItlNetworkUserClient 59 | WiFiConfig 60 | 61 | WiFi_1 62 | 63 | password 64 | zxyssdt112233 65 | ssid 66 | ssdt 67 | 68 | WiFi_2 69 | 70 | password 71 | zxyssdt112233 72 | ssid 73 | ssdt_5G 74 | 75 | WiFi_3 76 | 77 | password 78 | 79 | ssid 80 | Redmi 81 | 82 | WiFi_4 83 | 84 | password 85 | 9utc5c5f 86 | ssid 87 | CMCC-KtG6 88 | 89 | 90 | 91 | 92 | LSMinimumSystemVersion 93 | 10.9 94 | NSHumanReadableCopyright 95 | Copyright © 2020 钟先耀. All rights reserved. 96 | OSBundleLibraries 97 | 98 | com.apple.iokit.IONetworkingFamily 99 | 1.5.0 100 | com.apple.iokit.IOPCIFamily 101 | 1.7 102 | com.apple.kpi.bsd 103 | 8.10.0 104 | com.apple.kpi.iokit 105 | 8.10.0 106 | com.apple.kpi.libkern 107 | 8.10.0 108 | com.apple.kpi.mach 109 | 8.10.0 110 | 111 | OSBundleRequired 112 | Network-Root 113 | 114 | 115 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/itlwm.kext/Contents/MacOS/itlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Kexts/itlwm.kext/Contents/MacOS/itlwm -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot1.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_1.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_2.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_3.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_4.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_5.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_6.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_7.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_8.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_9.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_AbortTimeout.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_AbortTimeout.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_ChooseOS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_ChooseOS.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Default.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Default.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_DiskImage.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_DiskImage.mp3 -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_DiskImage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_DiskImage.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_EnterPassword.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_EnterPassword.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_ExecutionFailure.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_ExecutionFailure.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_ExecutionSuccessful.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_ExecutionSuccessful.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_External.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_External.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_ExternalOption.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_ExternalOption.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterA.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterA.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterB.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterB.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterC.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterC.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterD.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterD.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterE.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterE.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterF.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterF.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterG.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterG.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterH.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterH.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterI.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterI.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterJ.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterJ.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterK.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterK.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterL.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterL.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterM.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterM.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterN.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterN.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterO.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterO.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterP.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterP.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterQ.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterQ.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterR.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterR.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterS.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterT.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterT.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterU.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterU.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterV.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterV.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterW.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterW.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterX.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterX.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterY.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterY.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_LetterZ.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_LetterZ.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Loading.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Loading.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_OtherOS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_OtherOS.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_PasswordAccepted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_PasswordAccepted.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_PasswordIncorrect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_PasswordIncorrect.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_PasswordRetryLimit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_PasswordRetryLimit.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Reloading.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Reloading.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_ResetNVRAM.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_ResetNVRAM.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Restart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Restart.mp3 -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Selected.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Selected.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_ShowAuxiliary.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_ShowAuxiliary.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Shutdown.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Shutdown.mp3 -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Timeout.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Timeout.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_UEFI_Shell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_UEFI_Shell.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Welcome.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Welcome.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_Windows.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_Windows.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_macOS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_macOS.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_macOS_Recovery.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_macOS_Recovery.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_en_macOS_TimeMachine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Audio/OCEFIAudio_en_macOS_TimeMachine.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Font/Font.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Font/Font.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Apple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Background.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Background.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtApple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtOther.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtOther.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtResetNVRAM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtShell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtTool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Other.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Other.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ResetNVRAM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ResetNVRAM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernBtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernBtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernCursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernDot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernDot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernEnter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernEnter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernLeft 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernLeft 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernLeft.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernLeft.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernLock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernLock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernPassword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernPassword.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernRestart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernRestart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernRight 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernRight 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernRight.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernRight.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernSelected 2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernSelected 2.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernSelected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernSelector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernSetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernSetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Modern/ModernShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Modern/ModernShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldBtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldBtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldCursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldDot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldDot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldEnter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldEnter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldExtWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldExtWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldLock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldLock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldPassword.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldPassword.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldRestart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldRestart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldSelected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldSelector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldSetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldSetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldShell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldTool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Old/OldWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Old/OldWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/Tools/BootKicker.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/BootKicker.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ChipTune.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/ChipTune.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ControlMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/ControlMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/CsrUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/CsrUtil.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/GopStop.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/GopStop.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/MmapDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/MmapDump.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/TpmInfo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsdrnoob/Mi-NoteBook-14-Hackintosh/ac128f42a4870313bfed133456c1d0bc1becccd3/EFI/OC/Tools/TpmInfo.efi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Not Actively Maintained! 2 | 3 | # [SUCCESS] Mi-Notebook-14-Hackintosh (Ventura 13.0) 4 | Tested on i3 & i5 models, yet to test on i7(horizon) 5 | 6 | 7 | 8 | ## Laptop Specs 9 | 10 | | Specifications | Detail | 11 | | ------------------- | ------------------------------------------- | 12 | | Laptop model | Mi Notebook 14 2020 | 13 | | Processor | Intel Core i5-10210U / i3-10110U | 14 | | Memory | 8GB Samsung DDR4 2666MHz | 15 | | Hard Disk | SATA SSD Controller | 16 | | Integrated Graphics | Intel UHD Graphics 620 | 17 | | Sound Card | Realtek ALC256 | 18 | | Wireless Card | Intel Wireless AC 9462 | 19 | | Touchpad | I2C ELAN2304 | 20 | 21 | 22 | ## What Works 23 | - Intel UHD Graphics 24 | - Wifi (Use heliport if inbuilt wifi is buggy). 25 | - Bluetooth 26 | - Touchpad including Gestures 27 | - Keyboard 28 | - HDMI 29 | - Webcam (Tested on i3 model) 30 | - Audio (Both Speaker and Headphones) 31 | - Microphone (Headphone & Bluetooth. Headphone fix below) 32 | - Battery Manager 33 | - Brightness 34 | - iServices 35 | - Almost Everything Important xD. 36 | 37 | ## What's Broken 38 | - Internal microphone 39 | - Inbuilt wifi is buggy sometimes (won't connect). 40 | - Touchpad gestures (Three-finger swipe back, pinch zoom) randomly stop working for a few seconds once in a while (others like mission control gestures are not affected). 41 | - AirDrop 42 | - You tell me :) 43 | 44 | ## Microphone Fix (Headset) 45 | - Download Combojack [here.](https://github.com/hackintosh-stuff/ComboJack) 46 | - Follow the documentation to install combojack. 47 | - Insert headphone, combojack pop-up will appear, select headset from the list. 48 | - Still having an issue, try disabling ambient noise reduction. 49 | - Done. Enjoy..! 50 | 51 | # NOTE:- OPEN CONFIG.PLIST AND INSERT APPROPRIATE PLATFORM INFO (SERIAL, UUID ETC) BEFORE INSTALLING. 52 | ## Additional:- Internal keyboard doesn't work in opencore boot picker. Use external keyboard. 53 | 54 | 55 | ## Credits 56 | - Thanks to [Acidanthera](https://github.com/acidanthera) for providing [AppleALC](https://github.com/acidanthera/AppleALC), [AppleSupportPkg](https://github.com/acidanthera/AppleSupportPkg), [HibernationFixup](https://github.com/acidanthera/HibernationFixup), [Lilu](https://github.com/acidanthera/Lilu), [OcBinaryData](https://github.com/acidanthera/OcBinaryData), [OpenCorePkg](https://github.com/acidanthera/OpenCorePkg), [VirtualSMC](https://github.com/acidanthera/VirtualSMC), [VoodooInput](https://github.com/acidanthera/VoodooInput), [VoodooPS2](https://github.com/acidanthera/VoodooPS2), and [WhateverGreen](https://github.com/acidanthera/WhateverGreen). 57 | - Thanks to [RehabMan](https://github.com/RehabMan) for providing [EAPD-Codec-Commander](https://github.com/RehabMan/EAPD-Codec-Commander), [EFICheckDisabler](https://github.com/RehabMan/hack-tools/tree/master/kexts/EFICheckDisabler.kext), [OS-X-Clover-Laptop-Config](https://github.com/RehabMan/OS-X-Clover-Laptop-Config), [OS-X-Null-Ethernet](https://github.com/RehabMan/OS-X-Null-Ethernet), and [SATA-unsupported](https://github.com/RehabMan/hack-tools/tree/master/kexts/SATA-unsupported.kext). 58 | - Thanks to [VoodooI2C](https://github.com/VoodooI2C) for providing [VoodooI2C](https://github.com/VoodooI2C/VoodooI2C). 59 | - Thanks to [ComboJack](https://github.com/hackintosh-stuff/ComboJack) 60 | - Thanks to [Hasodikis](https://github.com/Hasodikis) (OC 0.6.4). 61 | - Thanks to [lietxia](https://github.com/lietxia) (OC 0.8.6). 62 | - Thanks to [Me](https://github.com/itsdrnoob) for fixing everything xDxD. --------------------------------------------------------------------------------