├── .DS_Store ├── NUC10i5 (New) EFI ├── .DS_Store └── EFI │ ├── .DS_Store │ ├── BOOT │ └── BOOTx64.efi │ ├── INTEL │ ├── FNCML357.CAP │ └── SELFHEAL.TXT │ └── OC │ ├── .DS_Store │ ├── ACPI │ ├── SSDT-AWAC.aml │ ├── SSDT-EC-USBX.aml │ ├── SSDT-PLUG.aml │ └── SSDT-PMC.aml │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HfsPlus.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── .DS_Store │ ├── CodecCommander.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── CodecCommander │ │ │ └── Resources │ │ │ ├── SSDT-ALC1220.dsl │ │ │ ├── SSDT-ALC256-insanelydeepak.dsl │ │ │ ├── SSDT-ALC256-vbourachot.dsl │ │ │ ├── SSDT-AppleALC.dsl │ │ │ └── SSDT-CX20752.dsl │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── IntelMausi.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausi │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ └── Resources │ │ │ ├── Headers │ │ │ ├── capstone │ │ │ │ ├── arm.h │ │ │ │ ├── arm64.h │ │ │ │ ├── capstone.h │ │ │ │ ├── mips.h │ │ │ │ ├── platform.h │ │ │ │ ├── ppc.h │ │ │ │ ├── sparc.h │ │ │ │ ├── systemz.h │ │ │ │ ├── x86.h │ │ │ │ └── xcore.h │ │ │ ├── hde64.h │ │ │ ├── kern_api.hpp │ │ │ ├── kern_atomic.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 │ │ │ └── plugin_start.hpp │ │ │ └── Library │ │ │ ├── LegacyIOService.h │ │ │ ├── LegacyLibkernMacros.h │ │ │ ├── libkmod.a │ │ │ ├── plugin_start.cpp │ │ │ ├── security │ │ │ ├── _label.h │ │ │ ├── mac_framework.h │ │ │ └── mac_policy.h │ │ │ └── wrappers │ │ │ ├── build.tool │ │ │ ├── entry32.S │ │ │ ├── entry64.S │ │ │ └── wrappers.inc │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── Resources │ │ │ └── VirtualSMCSDK │ │ │ ├── AppleSmc.h │ │ │ ├── AppleSmcBridge.hpp │ │ │ ├── kern_keyvalue.hpp │ │ │ ├── kern_smcinfo.hpp │ │ │ ├── kern_value.hpp │ │ │ └── kern_vsmcapi.hpp │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooHDA │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ └── config.plist ├── NUC10i5 (Old)EFI ├── .DS_Store └── EFI │ ├── .DS_Store │ ├── BOOT │ └── BOOTx64.efi │ ├── INTEL │ ├── FNCML357.CAP │ └── SELFHEAL.TXT │ └── OC │ ├── .DS_Store │ ├── ACPI │ ├── SSDT-AWAC.aml │ ├── SSDT-EC-USBX.aml │ ├── SSDT-PLUG.aml │ └── SSDT-PMC.aml │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HfsPlus.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── IntelMausi.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausi │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ └── Resources │ │ │ ├── Headers │ │ │ ├── capstone │ │ │ │ ├── arm.h │ │ │ │ ├── arm64.h │ │ │ │ ├── capstone.h │ │ │ │ ├── mips.h │ │ │ │ ├── platform.h │ │ │ │ ├── ppc.h │ │ │ │ ├── sparc.h │ │ │ │ ├── systemz.h │ │ │ │ ├── x86.h │ │ │ │ └── xcore.h │ │ │ ├── hde64.h │ │ │ ├── kern_api.hpp │ │ │ ├── kern_atomic.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 │ │ │ └── plugin_start.hpp │ │ │ └── Library │ │ │ ├── LegacyIOService.h │ │ │ ├── LegacyLibkernMacros.h │ │ │ ├── libkmod.a │ │ │ ├── plugin_start.cpp │ │ │ ├── security │ │ │ ├── _label.h │ │ │ ├── mac_framework.h │ │ │ └── mac_policy.h │ │ │ └── wrappers │ │ │ ├── build.tool │ │ │ ├── entry32.S │ │ │ ├── entry64.S │ │ │ └── wrappers.inc │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── Resources │ │ │ └── VirtualSMCSDK │ │ │ ├── AppleSmc.h │ │ │ ├── AppleSmcBridge.hpp │ │ │ ├── kern_keyvalue.hpp │ │ │ ├── kern_smcinfo.hpp │ │ │ ├── kern_value.hpp │ │ │ └── kern_vsmcapi.hpp │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooHDA │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ └── config.plist ├── OPENCORE0.6.0 ├── .DS_Store └── Catalina 10.15.6(NUC10i5) │ ├── .DS_Store │ └── EFI │ ├── .DS_Store │ ├── BOOT │ └── BOOTx64.efi │ ├── INTEL │ ├── FNCML357.CAP │ └── SELFHEAL.TXT │ └── OC │ ├── .DS_Store │ ├── ACPI │ ├── SSDT-AWAC.aml │ ├── SSDT-EC-USBX.aml │ ├── SSDT-PLUG.aml │ └── SSDT-PMC.aml │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HfsPlus.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── .DS_Store │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── IntelMausi.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausi │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Lilu │ │ │ └── Resources │ │ │ ├── Headers │ │ │ ├── capstone │ │ │ │ ├── arm.h │ │ │ │ ├── arm64.h │ │ │ │ ├── capstone.h │ │ │ │ ├── mips.h │ │ │ │ ├── platform.h │ │ │ │ ├── ppc.h │ │ │ │ ├── sparc.h │ │ │ │ ├── systemz.h │ │ │ │ ├── x86.h │ │ │ │ └── xcore.h │ │ │ ├── hde64.h │ │ │ ├── kern_api.hpp │ │ │ ├── kern_atomic.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 │ │ │ └── plugin_start.hpp │ │ │ └── Library │ │ │ ├── LegacyIOService.h │ │ │ ├── LegacyLibkernMacros.h │ │ │ ├── libkmod.a │ │ │ ├── plugin_start.cpp │ │ │ ├── security │ │ │ ├── _label.h │ │ │ ├── mac_framework.h │ │ │ └── mac_policy.h │ │ │ └── wrappers │ │ │ ├── build.tool │ │ │ ├── entry32.S │ │ │ ├── entry64.S │ │ │ └── wrappers.inc │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VirtualSMC │ │ │ └── Resources │ │ │ └── VirtualSMCSDK │ │ │ ├── AppleSmc.h │ │ │ ├── AppleSmcBridge.hpp │ │ │ ├── kern_keyvalue.hpp │ │ │ ├── kern_smcinfo.hpp │ │ │ ├── kern_value.hpp │ │ │ └── kern_vsmcapi.hpp │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooHDA │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources │ └── .DS_Store │ └── config.plist ├── README.md └── hackintosh tools工具 ├── .DS_Store ├── GenSMBIOS-master ├── GenSMBIOS.bat ├── GenSMBIOS.command ├── LICENSE ├── README.md └── Scripts │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── downloader.cpython-37.pyc │ ├── plist.cpython-37.pyc │ ├── run.cpython-37.pyc │ └── utils.cpython-37.pyc │ ├── downloader.py │ ├── macserial │ ├── plist.py │ ├── run.py │ └── utils.py ├── Intel bluetooth ├── .DS_Store ├── IntelBluetoothFirmware.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── IntelBluetoothFirmware └── IntelBluetoothInjector.kext │ └── Contents │ └── Info.plist ├── IntelBluetooth ├── .DS_Store ├── IntelBluetoothFirmware.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── IntelBluetoothFirmware └── IntelBluetoothInjector.kext │ └── Contents │ └── Info.plist ├── MountEFI-update ├── .gitignore ├── Mount EFI Automator Quick Action.zip ├── MountEFI.command ├── README.md └── Scripts │ ├── __init__.py │ ├── bdmesg.py │ ├── disk.py │ ├── downloader.py │ ├── rebuildcache.py │ ├── reveal.py │ ├── run.py │ └── utils.py ├── ProperTree-master ├── .gitignore ├── LICENSE ├── ProperTree.bat ├── ProperTree.command ├── README.md └── Scripts │ ├── AssociatePlistFiles.bat │ ├── __init__.py │ ├── buildapp.command │ ├── menu.plist │ ├── plist.py │ ├── plistwindow.py │ ├── run.py │ ├── settings.json │ ├── shortcut.icns │ └── utils.py └── gibMacOS-master ├── BuildmacOSInstallApp.command ├── LICENSE ├── MakeInstall.bat ├── MakeInstall.py ├── Readme.md ├── Scripts ├── BOOTICEx64.exe ├── __init__.py ├── disk.py ├── diskwin.py ├── downloader.py ├── plist.py ├── run.py └── utils.py ├── gibMacOS.bat └── gibMacOS.command /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/INTEL/FNCML357.CAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/INTEL/FNCML357.CAP -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/INTEL/SELFHEAL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/INTEL/SELFHEAL.TXT -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-PMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/ACPI/SSDT-PMC.aml -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/MacOS/CodecCommander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/MacOS/CodecCommander -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-ALC1220.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-ALC1220.dsl -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-ALC256-insanelydeepak.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-ALC256-insanelydeepak.dsl -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-ALC256-vbourachot.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-ALC256-vbourachot.dsl -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-AppleALC.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-AppleALC.dsl -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-CX20752.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/CodecCommander.kext/Contents/Resources/SSDT-CX20752.dsl -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm64.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/capstone.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/mips.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/ppc.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/sparc.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/systemz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/systemz.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/x86.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_api.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_atomic.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_cpu.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_devinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_devinfo.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_disasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_disasm.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_iokit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_iokit.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_mach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_mach.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_nvram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_nvram.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_rtc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_rtc.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyIOService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyIOService.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyLibkernMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyLibkernMacros.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/libkmod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/libkmod.a -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/_label.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_framework.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_policy.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /NUC10i5 (New) EFI/EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (New) EFI/EFI/OC/config.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/INTEL/FNCML357.CAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/INTEL/FNCML357.CAP -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/INTEL/SELFHEAL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/INTEL/SELFHEAL.TXT -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/.DS_Store -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-PMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/ACPI/SSDT-PMC.aml -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm64.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/capstone.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/mips.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/ppc.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/sparc.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/systemz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/systemz.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/x86.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_api.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_atomic.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_cpu.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_devinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_devinfo.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_disasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_disasm.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_iokit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_iokit.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_mach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_mach.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_nvram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_nvram.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_rtc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_rtc.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyIOService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyIOService.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyLibkernMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyLibkernMacros.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/libkmod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/libkmod.a -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/_label.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_framework.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_policy.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/VoodooHDA.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /NUC10i5 (Old)EFI/EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/NUC10i5 (Old)EFI/EFI/OC/config.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/.DS_Store -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/.DS_Store -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/.DS_Store -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/INTEL/FNCML357.CAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/INTEL/FNCML357.CAP -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/INTEL/SELFHEAL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/INTEL/SELFHEAL.TXT -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/.DS_Store -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-PMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/ACPI/SSDT-PMC.aml -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/.DS_Store -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/arm64.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/capstone.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/mips.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/platform.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/ppc.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/sparc.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/systemz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/systemz.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/x86.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/capstone/xcore.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/hde64.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_api.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_atomic.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compat.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_compression.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_config.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_cpu.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_crypto.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_devinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_devinfo.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_disasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_disasm.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_efi.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_file.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_iokit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_iokit.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_mach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_mach.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_nvram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_nvram.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_policy.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_rtc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_rtc.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_time.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Headers/plugin_start.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyIOService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyIOService.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyLibkernMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/LegacyLibkernMacros.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/libkmod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/libkmod.a -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/plugin_start.cpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/_label.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_framework.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/security/mac_policy.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/build.tool -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry32.S -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/entry64.S -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/Lilu.kext/Contents/Resources/Library/wrappers/wrappers.inc -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmc.h -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/AppleSmcBridge.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_keyvalue.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_smcinfo.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_value.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VirtualSMC.kext/Contents/Resources/VirtualSMCSDK/kern_vsmcapi.hpp -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VoodooHDA.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VoodooHDA.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/VoodooHDA.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/Resources/.DS_Store -------------------------------------------------------------------------------- /OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/OPENCORE0.6.0/Catalina 10.15.6(NUC10i5)/EFI/OC/config.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/README.md -------------------------------------------------------------------------------- /hackintosh tools工具/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/.DS_Store -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/GenSMBIOS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/GenSMBIOS.bat -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/GenSMBIOS.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/GenSMBIOS.command -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/LICENSE -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/README.md -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/__init__.py -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/downloader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/downloader.cpython-37.pyc -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/plist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/plist.cpython-37.pyc -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/run.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/run.cpython-37.pyc -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/downloader.py -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/macserial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/macserial -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/plist.py -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/run.py -------------------------------------------------------------------------------- /hackintosh tools工具/GenSMBIOS-master/Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/GenSMBIOS-master/Scripts/utils.py -------------------------------------------------------------------------------- /hackintosh tools工具/Intel bluetooth /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/Intel bluetooth /.DS_Store -------------------------------------------------------------------------------- /hackintosh tools工具/Intel bluetooth /IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/Intel bluetooth /IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /hackintosh tools工具/Intel bluetooth /IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/Intel bluetooth /IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /hackintosh tools工具/Intel bluetooth /IntelBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/Intel bluetooth /IntelBluetoothInjector.kext/Contents/Info.plist -------------------------------------------------------------------------------- /hackintosh tools工具/IntelBluetooth/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/IntelBluetooth/.DS_Store -------------------------------------------------------------------------------- /hackintosh tools工具/IntelBluetooth/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/IntelBluetooth/IntelBluetoothFirmware.kext/Contents/Info.plist -------------------------------------------------------------------------------- /hackintosh tools工具/IntelBluetooth/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/IntelBluetooth/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /hackintosh tools工具/IntelBluetooth/IntelBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/IntelBluetooth/IntelBluetoothInjector.kext/Contents/Info.plist -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/.gitignore -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Mount EFI Automator Quick Action.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Mount EFI Automator Quick Action.zip -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/MountEFI.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/MountEFI.command -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/README.md -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/__init__.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/bdmesg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/bdmesg.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/disk.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/downloader.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/rebuildcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/rebuildcache.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/reveal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/reveal.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/run.py -------------------------------------------------------------------------------- /hackintosh tools工具/MountEFI-update/Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/MountEFI-update/Scripts/utils.py -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/.gitignore -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/LICENSE -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/ProperTree.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/ProperTree.bat -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/ProperTree.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/ProperTree.command -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/README.md: -------------------------------------------------------------------------------- 1 | # ProperTree 2 | Cross platform GUI plist editor written in python. 3 | -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/AssociatePlistFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/AssociatePlistFiles.bat -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/__init__.py -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/buildapp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/buildapp.command -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/menu.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/menu.plist -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/plist.py -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/plistwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/plistwindow.py -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/run.py -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/settings.json -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/shortcut.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/shortcut.icns -------------------------------------------------------------------------------- /hackintosh tools工具/ProperTree-master/Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/ProperTree-master/Scripts/utils.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/BuildmacOSInstallApp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/BuildmacOSInstallApp.command -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/LICENSE -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/MakeInstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/MakeInstall.bat -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/MakeInstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/MakeInstall.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Readme.md -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/BOOTICEx64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/BOOTICEx64.exe -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/__init__.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/disk.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/diskwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/diskwin.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/downloader.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/plist.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/run.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/Scripts/utils.py -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/gibMacOS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/gibMacOS.bat -------------------------------------------------------------------------------- /hackintosh tools工具/gibMacOS-master/gibMacOS.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SummerSnowWinterCat/NUC10EFI/HEAD/hackintosh tools工具/gibMacOS-master/gibMacOS.command --------------------------------------------------------------------------------