├── .gitignore ├── EFI ├── BOOT │ ├── .contentFlavour │ ├── .contentVisibility │ └── BOOTx64.efi └── OC │ ├── .contentFlavour │ ├── .contentVisibility │ ├── ACPI │ ├── SSDT-NUC8-BC.aml │ └── SSDT-NUC8-TBT.aml │ ├── Drivers │ ├── CrScreenshotDxe.efi │ ├── OpenCanopy.efi │ ├── OpenHfsPlus.efi │ ├── OpenRuntime.efi │ ├── ResetNvramEntry.efi │ └── ToggleSipEntry.efi │ ├── Kexts │ ├── AirportBrcmFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AirportBrcmFixup │ │ │ └── PlugIns │ │ │ ├── AirPortBrcm4360_Injector.kext │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ │ └── AirPortBrcmNIC_Injector.kext │ │ │ └── Contents │ │ │ └── Info.plist │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AppleALC │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── FeatureUnlock.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FeatureUnlock │ ├── IntelMausi.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelMausi │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── RestrictEvents.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── RestrictEvents │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBPorts.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources │ ├── Audio │ │ └── OCEFIAudio_VoiceOver_Boot.wav │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ └── Acidanthera │ │ │ ├── Chardonnay │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ │ │ ├── GoldenGate │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ │ │ ├── Owl │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── Background.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── ExtWindows.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ │ │ └── Syrah │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ └── Label │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── SIPDisabled.l2x │ │ ├── SIPDisabled.lbl │ │ ├── SIPEnabled.l2x │ │ ├── SIPEnabled.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ ├── Tools │ ├── CFGLock.efi │ └── VerifyMsrE2.efi │ └── config.plist ├── assets ├── iShot_2023-02-15_14.43.29.webp ├── iShot_2023-02-15_14.44.35.webp ├── iShot_2023-02-15_14.45.03.webp ├── iShot_2023-02-15_14.48.39.webp ├── iShot_2023-02-15_14.52.14.webp ├── iShot_2023-02-15_14.53.54.webp ├── iShot_2023-02-15_14.54.02.webp ├── iShot_2023-02-15_14.54.10.webp ├── iShot_2023-02-15_14.54.14.webp ├── iShot_2023-02-15_14.54.28.webp ├── iShot_2023-02-15_14.54.35.webp ├── iShot_2023-02-15_14.54.41.webp ├── iShot_2023-02-15_14.55.00.webp ├── iShot_2023-02-15_14.55.15.webp ├── nuc8i5-features-16x9.png.rendition.intel.web.1920.1080.webp └── nuc8i5bek-nuc8i5beh-pb-16x9.png.rendition.intel.web.1920.1080.webp ├── backup └── personal-vx-EFI.zip └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /EFI/BOOT/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/BOOT/.contentVisibility: -------------------------------------------------------------------------------- 1 | Disabled -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/OC/.contentVisibility: -------------------------------------------------------------------------------- 1 | Disabled -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-NUC8-BC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/ACPI/SSDT-NUC8-BC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-NUC8-TBT.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/ACPI/SSDT-NUC8-TBT.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/CrScreenshotDxe.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Drivers/CrScreenshotDxe.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenHfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Drivers/OpenHfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/ResetNvramEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Drivers/ResetNvramEntry.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/ToggleSipEntry.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Drivers/ToggleSipEntry.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportBrcmFixup 11 | CFBundleIdentifier 12 | as.lvs1974.AirportBrcmFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportBrcmFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | as.lvs1974.AirportBrcmFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.AirportBrcmFixup 51 | IOClass 52 | AirportBrcmFixup 53 | IOMatchCategory 54 | AirportBrcmFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | as.lvs1974.FakeAirportBrcmFixup 61 | 62 | CFBundleIdentifier 63 | as.lvs1974.AirportBrcmFixup 64 | IOClass 65 | FakeBrcm 66 | IOMatchCategory 67 | IODefaultMatchCategory 68 | IONameMatch 69 | 70 | pci14e4,43ba 71 | pci14e4,43a3 72 | pci14e4,43a0 73 | pci14e4,4331 74 | pci14e4,4353 75 | pci14e4,43b1 76 | pci14e4,43b2 77 | pci14e4,4357 78 | pci14e4,432b 79 | pci14e4,4311 80 | pci14e4,4312 81 | pci14e4,4313 82 | pci14e4,4318 83 | pci14e4,4319 84 | pci14e4,431a 85 | pci14e4,4320 86 | pci14e4,4324 87 | pci14e4,4325 88 | pci14e4,4328 89 | pci14e4,432c 90 | pci14e4,432d 91 | 92 | IOProbeScore 93 | 6000 94 | IOProviderClass 95 | IOPCIDevice 96 | TruePowerOff 97 | 98 | 99 | 100 | LSMinimumSystemVersion 101 | 10.8 102 | NSHumanReadableCopyright 103 | Copyright © 2017 lvs1974. All rights reserved. 104 | OSBundleCompatibleVersion 105 | 1.0 106 | OSBundleLibraries 107 | 108 | as.vit9696.Lilu 109 | 1.2.6 110 | com.apple.iokit.IOPCIFamily 111 | 2.7 112 | com.apple.kpi.bsd 113 | 12.0.0 114 | com.apple.kpi.dsep 115 | 12.0.0 116 | com.apple.kpi.iokit 117 | 12.0.0 118 | com.apple.kpi.libkern 119 | 12.0.0 120 | com.apple.kpi.mach 121 | 12.0.0 122 | com.apple.kpi.unsupported 123 | 12.0.0 124 | 125 | OSBundleRequired 126 | Network-Root 127 | 128 | 129 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcm4360Injector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcm4360 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_Brcm4360 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.Brcm4360 27 | IOClass 28 | AirPort_Brcm4360 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43a3 37 | pci14e4,43b1 38 | pci14e4,43b2 39 | 40 | IOProbeScore 41 | 1110 42 | IOProviderClass 43 | IOPCIDevice 44 | TruePowerOff 45 | 46 | 47 | 48 | OSBundleRequired 49 | Network-Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcmNICInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcmNIC 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_BrcmNIC 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.BrcmNIC 27 | IOClass 28 | AirPort_BrcmNIC 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43ba 37 | pci14e4,43a3 38 | pci14e4,43a0 39 | pci14e4,43b1 40 | pci14e4,43b2 41 | 42 | IOProbeScore 43 | 2048 44 | IOProviderClass 45 | IOPCIDevice 46 | TruePowerOff 47 | 48 | 49 | 50 | OSBundleRequired 51 | Network-Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | BlueToolFixup 11 | CFBundleIdentifier 12 | as.acidanthera.BlueToolFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | BlueToolFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.6.5 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.5 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13F100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.3 35 | DTSDKBuild 36 | 21E226 37 | DTSDKName 38 | macosx12.3 39 | DTXcode 40 | 1341 41 | DTXcodeBuild 42 | 13F100 43 | IOKitPersonalities 44 | 45 | BlueToolFixup 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BlueToolFixup 49 | IOClass 50 | BlueToolFixup 51 | IOMatchCategory 52 | BlueToolFixup 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.8 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.4.7 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FeatureUnlock 11 | CFBundleIdentifier 12 | com.khronokernel.FeatureUnlock 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FeatureUnlock 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13F100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.3 35 | DTSDKBuild 36 | 21E226 37 | DTSDKName 38 | macosx12.3 39 | DTXcode 40 | 1341 41 | DTXcodeBuild 42 | 13F100 43 | IOKitPersonalities 44 | 45 | FeatureUnlock 46 | 47 | CFBundleIdentifier 48 | com.khronokernel.FeatureUnlock 49 | IOClass 50 | FeatureUnlock 51 | IOMatchCategory 52 | FeatureUnlock 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2021 Khronokernel. All rights reserved. 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.4.7 67 | com.apple.kpi.bsd 68 | 12.0.0 69 | com.apple.kpi.dsep 70 | 12.0.0 71 | com.apple.kpi.iokit 72 | 12.0.0 73 | com.apple.kpi.libkern 74 | 12.0.0 75 | com.apple.kpi.mach 76 | 12.0.0 77 | com.apple.kpi.unsupported 78 | 12.0.0 79 | 80 | OSBundleRequired 81 | Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/FeatureUnlock.kext/Contents/MacOS/FeatureUnlock -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelMausi.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1217 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | IntelMausi 11 | CFBundleIdentifier 12 | as.acidanthera.mieze.IntelMausi 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IntelMausi 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.0.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | IntelMausi 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.mieze.IntelMausi 51 | Driver Parameters 52 | 53 | enableCSO6 54 | 55 | enableWakeOnAddrMatch 56 | 57 | maxIntrRate10 58 | 3000 59 | maxIntrRate100 60 | 5000 61 | maxIntrRate1000 62 | 8000 63 | rxAbsTime10 64 | 0 65 | rxAbsTime100 66 | 0 67 | rxAbsTime1000 68 | 10 69 | rxDelayTime10 70 | 0 71 | rxDelayTime100 72 | 0 73 | rxDelayTime1000 74 | 0 75 | 76 | Driver_Version 77 | 1.0.7 78 | IOClass 79 | IntelMausi 80 | IOPCIMatch 81 | 0x10EA8086 0x10EB8086 0x10EF8086 0x10F08086 0x15028086 0x15038086 0x153A8086 0x153B8086 0x155A8086 0x15598086 0x15A08086 0x15A18086 0x15A28086 0x15A38086 0x156F8086 0x15708086 0x15B78086 0x15B88086 0x15D78086 0x15D88086 0x15E38086 0x15D68086 0x15BD8086 0x15BE8086 0x15BB8086 0x15BC8086 0x15DF8086 0x15E08086 0x15E18086 0x15E28086 0x15B98086 0x0D4E8086 0x0D4F8086 0x0D4C8086 0x0D4D8086 0x0D538086 0x0D558086 0x15FB8086 0x15FC8086 0x15F98086 0x15FA8086 0x15F48086 0x15F58086 0x1A1E8086 0x1A1F8086 0x1A1C8086 0x1A1D8086 0x550A8086 0x550B8086 0x550C8086 0x550D8086 82 | IOProbeScore 83 | 1000 84 | IOProviderClass 85 | IOPCIDevice 86 | 87 | 88 | LSMinimumSystemVersion 89 | 10.9 90 | NSHumanReadableCopyright 91 | Copyright © 2014 Laura Müller. All rights reserved. 92 | OSBundleLibraries 93 | 94 | com.apple.iokit.IONetworkingFamily 95 | 1.5.0 96 | com.apple.iokit.IOPCIFamily 97 | 1.7 98 | com.apple.kpi.bsd 99 | 8.10.0 100 | com.apple.kpi.iokit 101 | 8.10.0 102 | com.apple.kpi.libkern 103 | 8.10.0 104 | com.apple.kpi.mach 105 | 8.10.0 106 | 107 | OSBundleRequired 108 | Network-Root 109 | 110 | 111 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/IntelMausi.kext/Contents/MacOS/IntelMausi -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.6.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOBSD 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kernel.6.0 70 | 7.9.9 71 | com.apple.kpi.bsd 72 | 8.0.0 73 | com.apple.kpi.iokit 74 | 8.0.0 75 | com.apple.kpi.libkern 76 | 8.0.0 77 | com.apple.kpi.mach 78 | 8.0.0 79 | com.apple.kpi.unsupported 80 | 8.0.0 81 | 82 | OSBundleLibraries_x86_64 83 | 84 | com.apple.kpi.bsd 85 | 10.0.0 86 | com.apple.kpi.dsep 87 | 10.0.0 88 | com.apple.kpi.iokit 89 | 10.0.0 90 | com.apple.kpi.libkern 91 | 10.0.0 92 | com.apple.kpi.mach 93 | 10.0.0 94 | com.apple.kpi.unsupported 95 | 10.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NVMeFix 11 | CFBundleIdentifier 12 | org.acidanthera.NVMeFix 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NVMeFix 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | org.acidanthera.NVMeFix 46 | 47 | CFBundleIdentifier 48 | org.acidanthera.NVMeFix 49 | IOClass 50 | NVMeFix 51 | IOMatchCategory 52 | NVMeFix 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2019 acidanthera. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.4.1 69 | com.apple.kpi.bsd 70 | 12.0.0 71 | com.apple.kpi.dsep 72 | 12.0.0 73 | com.apple.kpi.iokit 74 | 12.0.0 75 | com.apple.kpi.libkern 76 | 12.0.0 77 | com.apple.kpi.mach 78 | 12.0.0 79 | com.apple.kpi.unsupported 80 | 12.0.0 81 | 82 | OSBundleRequired 83 | Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | RestrictEvents 11 | CFBundleIdentifier 12 | as.vit9696.RestrictEvents 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RestrictEvents 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13F100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.3 35 | DTSDKBuild 36 | 21E226 37 | DTSDKName 38 | macosx12.3 39 | DTXcode 40 | 1341 41 | DTXcodeBuild 42 | 13F100 43 | IOKitPersonalities 44 | 45 | as.vit9696.RestrictEfiCheck 46 | 47 | CFBundleIdentifier 48 | as.vit9696.RestrictEvents 49 | IOClass 50 | IOService 51 | IOMatchCategory 52 | com_apple_driver_eficheck 53 | IONameMatch 54 | 55 | pci8086,1c41 56 | pci8086,1c42 57 | pci8086,1c43 58 | pci8086,1c44 59 | pci8086,1c46 60 | pci8086,1c47 61 | pci8086,1c49 62 | pci8086,1c4a 63 | pci8086,1c4b 64 | pci8086,1c4c 65 | pci8086,1c4d 66 | pci8086,1c4e 67 | pci8086,1c4f 68 | pci8086,1c50 69 | pci8086,1c52 70 | pci8086,1c5c 71 | pci8086,1d41 72 | pci8086,1e42 73 | pci8086,1e44 74 | pci8086,1e46 75 | pci8086,1e47 76 | pci8086,1e48 77 | pci8086,1e49 78 | pci8086,1e4a 79 | pci8086,1e53 80 | pci8086,1e55 81 | pci8086,1e56 82 | pci8086,1e57 83 | pci8086,1e58 84 | pci8086,1e59 85 | pci8086,1e5d 86 | pci8086,1e5e 87 | pci8086,1e5f 88 | pci8086,3b02 89 | pci8086,3b03 90 | pci8086,3b06 91 | pci8086,3b07 92 | pci8086,3b08 93 | pci8086,3b09 94 | pci8086,3b0a 95 | pci8086,3b0b 96 | pci8086,3b0f 97 | pci8086,3b12 98 | pci8086,3b14 99 | pci8086,3b16 100 | pci8086,8c44 101 | pci8086,8c4b 102 | pci8086,8cc1 103 | pci8086,8cc2 104 | pci8086,8cc3 105 | pci8086,8cc4 106 | pci8086,8cc6 107 | pci8086,8c41 108 | pci8086,8c42 109 | pci8086,8c44 110 | pci8086,8c46 111 | pci8086,8c49 112 | pci8086,8c4a 113 | pci8086,8c4b 114 | pci8086,8c4c 115 | pci8086,8c4e 116 | pci8086,8c4f 117 | pci8086,8c50 118 | pci8086,8c52 119 | pci8086,8c54 120 | pci8086,8c56 121 | pci8086,8c5c 122 | pci8086,8d44 123 | pci8086,8d47 124 | pci8086,9cc1 125 | pci8086,9cc2 126 | pci8086,9cc3 127 | pci8086,9cc5 128 | pci8086,9cc6 129 | pci8086,9cc7 130 | pci8086,9cc9 131 | pci8086,9c41 132 | pci8086,9c43 133 | pci8086,9c45 134 | pci8086,9d41 135 | pci8086,9d43 136 | pci8086,9d46 137 | pci8086,9d48 138 | pci8086,9d4b 139 | pci8086,9d4e 140 | pci8086,a145 141 | pci8086,a151 142 | pci8086,a306 143 | 144 | IOProbeScore 145 | 5000 146 | IOProviderClass 147 | IOPCIDevice 148 | 149 | as.vit9696.RestrictEvents 150 | 151 | CFBundleIdentifier 152 | as.vit9696.RestrictEvents 153 | IOClass 154 | RestrictEvents 155 | IOMatchCategory 156 | RestrictEvents 157 | IOProviderClass 158 | IOResources 159 | IOResourceMatch 160 | IOKit 161 | 162 | 163 | LSMinimumSystemVersion 164 | 10.8 165 | NSHumanReadableCopyright 166 | Copyright © 2020 vit9696. All rights reserved. 167 | OSBundleCompatibleVersion 168 | 1.0 169 | OSBundleLibraries 170 | 171 | as.vit9696.Lilu 172 | 1.2.0 173 | com.apple.kpi.bsd 174 | 12.0.0 175 | com.apple.kpi.dsep 176 | 12.0.0 177 | com.apple.kpi.iokit 178 | 12.0.0 179 | com.apple.kpi.libkern 180 | 12.0.0 181 | com.apple.kpi.mach 182 | 12.0.0 183 | com.apple.kpi.unsupported 184 | 12.0.0 185 | 186 | OSBundleRequired 187 | Root 188 | 189 | 190 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | 1.0 Copyright © 2018 Headsoft. All rights reserved. 9 | CFBundleIdentifier 10 | com.Headsoft.USBPorts 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBPorts 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | Macmini8,1-TBTU 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | TBTU 33 | IOProbeScore 34 | 5000 35 | IOProviderClass 36 | AppleUSBEHCIPCI 37 | IOProviderMergeProperties 38 | 39 | port-count 40 | AwAAAA== 41 | ports 42 | 43 | UB21 44 | 45 | UsbConnector 46 | 9 47 | port 48 | AQAAAA== 49 | 50 | UB31 51 | 52 | UsbConnector 53 | 9 54 | port 55 | AwAAAA== 56 | 57 | 58 | 59 | model 60 | Macmini8,1 61 | 62 | Macmini8,1-XHC 63 | 64 | CFBundleIdentifier 65 | com.apple.driver.AppleUSBMergeNub 66 | IOClass 67 | AppleUSBMergeNub 68 | IONameMatch 69 | XHC 70 | IOProbeScore 71 | 5000 72 | IOProviderClass 73 | AppleUSBXHCIPCI 74 | IOProviderMergeProperties 75 | 76 | port-count 77 | EAAAAA== 78 | ports 79 | 80 | HS01 81 | 82 | UsbConnector 83 | 3 84 | port 85 | AQAAAA== 86 | 87 | HS02 88 | 89 | UsbConnector 90 | 3 91 | port 92 | AgAAAA== 93 | 94 | HS03 95 | 96 | UsbConnector 97 | 3 98 | port 99 | AwAAAA== 100 | 101 | HS04 102 | 103 | UsbConnector 104 | 3 105 | port 106 | BAAAAA== 107 | 108 | HS05 109 | 110 | UsbConnector 111 | 255 112 | port 113 | BQAAAA== 114 | 115 | HS06 116 | 117 | UsbConnector 118 | 255 119 | port 120 | BgAAAA== 121 | 122 | HS10 123 | 124 | UsbConnector 125 | 3 126 | port 127 | CgAAAA== 128 | 129 | SS01 130 | 131 | UsbConnector 132 | 3 133 | port 134 | DQAAAA== 135 | 136 | SS02 137 | 138 | UsbConnector 139 | 3 140 | port 141 | DgAAAA== 142 | 143 | SS03 144 | 145 | UsbConnector 146 | 3 147 | port 148 | DwAAAA== 149 | 150 | SS04 151 | 152 | UsbConnector 153 | 3 154 | port 155 | EAAAAA== 156 | 157 | 158 | 159 | model 160 | Macmini8,1 161 | 162 | Macmini8,1-POWER 163 | 164 | CFBundleIdentifier 165 | com.apple.driver.AppleUSBHostMergeProperties 166 | IOClass 167 | AppleUSBHostMergeProperties 168 | IOProviderClass 169 | AppleBusPowerController 170 | IOProviderMergeProperties 171 | 172 | kUSBSleepPortCurrentLimit 173 | 2100 174 | kUSBSleepPowerSupply 175 | 5100 176 | kUSBWakePortCurrentLimit 177 | 2100 178 | kUSBWakePowerSupply 179 | 5100 180 | 181 | model 182 | Macmini8,1 183 | 184 | 185 | OSBundleRequired 186 | Root 187 | 188 | 189 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | as.vit9696.VirtualSMC 48 | 49 | CFBundleIdentifier 50 | as.vit9696.VirtualSMC 51 | IOClass 52 | VirtualSMC 53 | IODeviceMemory 54 | 55 | 56 | 57 | address 58 | 768 59 | length 60 | 32 61 | 62 | 63 | 64 | 65 | address 66 | 4277141504 67 | length 68 | 65536 69 | 70 | 71 | 72 | IOInterruptControllers 73 | 74 | io-apic-0 75 | 76 | IOInterruptSpecifiers 77 | 78 | 79 | BgAAAAAAAAA= 80 | 81 | 82 | IOMatchCategory 83 | IOACPIPlatformDevice 84 | IOName 85 | SMC 86 | IOProbeScore 87 | 60000 88 | IOProviderClass 89 | AppleACPIPlatformExpert 90 | Keystore 91 | 92 | Generic 93 | 94 | 95 | attr 96 | 97 | iA== 98 | 99 | comment 100 | Total fan number, this should be put to a plugin 101 | name 102 | 103 | Rk51bQ== 104 | 105 | type 106 | 107 | dWk4IA== 108 | 109 | value 110 | 111 | AA== 112 | 113 | 114 | 115 | attr 116 | 117 | gA== 118 | 119 | comment 120 | CPU plimit 121 | name 122 | 123 | TVNUYw== 124 | 125 | type 126 | 127 | dWk4IA== 128 | 129 | value 130 | 131 | AA== 132 | 133 | 134 | 135 | attr 136 | 137 | gA== 138 | 139 | comment 140 | FAN plimit (supposedly) 141 | name 142 | 143 | TVNUZg== 144 | 145 | type 146 | 147 | dWk4IA== 148 | 149 | value 150 | 151 | AA== 152 | 153 | 154 | 155 | attr 156 | 157 | gA== 158 | 159 | comment 160 | Memory plimit 161 | name 162 | 163 | TVNUbQ== 164 | 165 | type 166 | 167 | dWk4IA== 168 | 169 | value 170 | 171 | AA== 172 | 173 | 174 | 175 | attr 176 | 177 | gA== 178 | 179 | comment 180 | This should be 1 on laptops, and is overriden by sensors 181 | name 182 | 183 | QkFUUA== 184 | 185 | type 186 | 187 | ZmxhZw== 188 | 189 | value 190 | 191 | AA== 192 | 193 | 194 | 195 | attr 196 | 197 | gA== 198 | 199 | comment 200 | Only MacPros have custom illumination controllers 201 | name 202 | 203 | THNOTQ== 204 | 205 | type 206 | 207 | dWk4IA== 208 | 209 | value 210 | 211 | AA== 212 | 213 | 214 | 215 | GenericDesktopV1 216 | 217 | GenericDesktopV2 218 | 219 | GenericLaptopV1 220 | 221 | GenericLaptopV2 222 | 223 | GenericV1 224 | 225 | 226 | attr 227 | 228 | gA== 229 | 230 | comment 231 | GPU plimit 232 | name 233 | 234 | TVNUZw== 235 | 236 | type 237 | 238 | dWk4IA== 239 | 240 | value 241 | 242 | AA== 243 | 244 | 245 | 246 | GenericV2 247 | 248 | 249 | attr 250 | 251 | gA== 252 | 253 | comment 254 | E plimit (???) 255 | name 256 | 257 | TVNUZQ== 258 | 259 | type 260 | 261 | dWk4IA== 262 | 263 | value 264 | 265 | AA== 266 | 267 | 268 | 269 | attr 270 | 271 | gA== 272 | 273 | comment 274 | I plimit (???) 275 | name 276 | 277 | TVNUaQ== 278 | 279 | type 280 | 281 | dWk4IA== 282 | 283 | value 284 | 285 | AA== 286 | 287 | 288 | 289 | attr 290 | 291 | gA== 292 | 293 | comment 294 | J plimit (???) 295 | name 296 | 297 | TVNUag== 298 | 299 | type 300 | 301 | dWk4IA== 302 | 303 | value 304 | 305 | AA== 306 | 307 | 308 | 309 | 310 | ModelInfo 311 | 312 | GenericV1 313 | 314 | branch 315 | 316 | ajUyAAAAAAA= 317 | 318 | hwname 319 | 320 | c21jLXBpa2V0b24A 321 | 322 | platform 323 | 324 | ajUyAAAAAAA= 325 | 326 | rev 327 | 328 | AXQPAAAE 329 | 330 | revfb 331 | 332 | AXQPAAAE 333 | 334 | revfu 335 | 336 | AXQPAAAE 337 | 338 | 339 | GenericV2 340 | 341 | branch 342 | 343 | ajUyAAAAAAA= 344 | 345 | hwname 346 | 347 | c21jLWh1cm9ucml2ZXIA 348 | 349 | platform 350 | 351 | ajUyAAAAAAA= 352 | 353 | rev 354 | 355 | AigPAAAH 356 | 357 | revfb 358 | 359 | AigPAAAH 360 | 361 | revfu 362 | 363 | AigPAAAH 364 | 365 | 366 | GenericV3 367 | 368 | hwname 369 | 370 | c21jLWh1cm9ucml2ZXIA 371 | 372 | platform 373 | 374 | ajUyAAAAAAA= 375 | 376 | 377 | 378 | _STA 379 | 11 380 | name 381 | 382 | QVBQMDAwMQA= 383 | 384 | 385 | 386 | LSMinimumSystemVersion 387 | 10.6 388 | NSHumanReadableCopyright 389 | Copyright © 2017 vit9696. All rights reserved. 390 | OSBundleCompatibleVersion 391 | 1.0 392 | OSBundleLibraries 393 | 394 | as.vit9696.Lilu 395 | 1.2.0 396 | com.apple.iokit.IOACPIFamily 397 | 1.0.0d1 398 | com.apple.kernel.6.0 399 | 7.9.9 400 | com.apple.kpi.bsd 401 | 8.0.0 402 | com.apple.kpi.iokit 403 | 8.0.0 404 | com.apple.kpi.libkern 405 | 8.0.0 406 | com.apple.kpi.mach 407 | 8.0.0 408 | com.apple.kpi.unsupported 409 | 8.0.0 410 | 411 | OSBundleLibraries_x86_64 412 | 413 | as.vit9696.Lilu 414 | 1.2.0 415 | com.apple.iokit.IOACPIFamily 416 | 1.0.0d1 417 | com.apple.kpi.bsd 418 | 10.0.0 419 | com.apple.kpi.iokit 420 | 10.0.0 421 | com.apple.kpi.libkern 422 | 10.0.0 423 | com.apple.kpi.mach 424 | 10.0.0 425 | com.apple.kpi.unsupported 426 | 10.0.0 427 | 428 | OSBundleRequired 429 | Root 430 | 431 | 432 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 21G419 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.6.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13F100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.3 37 | DTSDKBuild 38 | 21E226 39 | DTSDKName 40 | macosx12.3 41 | DTXcode 42 | 1341 43 | DTXcodeBuild 44 | 13F100 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.6 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 10.0.0 92 | com.apple.kpi.dsep 93 | 10.0.0 94 | com.apple.kpi.iokit 95 | 10.0.0 96 | com.apple.kpi.libkern 97 | 10.0.0 98 | com.apple.kpi.mach 99 | 10.0.0 100 | com.apple.kpi.unsupported 101 | 10.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Audio/OCEFIAudio_VoiceOver_Boot.wav -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Chardonnay/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Background.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Background.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/ExtWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/ExtWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Owl/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Owl/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/BtnFocus.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Dot.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Enter.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Left.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Lock.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Password.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Restart.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Right.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/SetDefault.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/ShutDown.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Image/Acidanthera/Syrah/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/Tools/CFGLock.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Tools/CFGLock.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/VerifyMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/EFI/OC/Tools/VerifyMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ACPI 6 | 7 | Add 8 | 9 | 10 | Comment 11 | NUC8-BC 12 | Enabled 13 | 14 | Path 15 | SSDT-NUC8-BC.aml 16 | 17 | 18 | Comment 19 | NUC8-TBT 20 | Enabled 21 | 22 | Path 23 | SSDT-NUC8-TBT.aml 24 | 25 | 26 | Delete 27 | 28 | Patch 29 | 30 | Quirks 31 | 32 | FadtEnableReset 33 | 34 | NormalizeHeaders 35 | 36 | RebaseRegions 37 | 38 | ResetHwSig 39 | 40 | ResetLogoStatus 41 | 42 | SyncTableIds 43 | 44 | 45 | 46 | Booter 47 | 48 | MmioWhitelist 49 | 50 | Patch 51 | 52 | Quirks 53 | 54 | AllowRelocationBlock 55 | 56 | AvoidRuntimeDefrag 57 | 58 | DevirtualiseMmio 59 | 60 | DisableSingleUser 61 | 62 | DisableVariableWrite 63 | 64 | DiscardHibernateMap 65 | 66 | EnableSafeModeSlide 67 | 68 | EnableWriteUnprotector 69 | 70 | ForceBooterSignature 71 | 72 | ForceExitBootServices 73 | 74 | ProtectMemoryRegions 75 | 76 | ProtectSecureBoot 77 | 78 | ProtectUefiServices 79 | 80 | ProvideCustomSlide 81 | 82 | ProvideMaxSlide 83 | 0 84 | RebuildAppleMemoryMap 85 | 86 | ResizeAppleGpuBars 87 | -1 88 | SetupVirtualMap 89 | 90 | SignalAppleOS 91 | 92 | SyncRuntimePermissions 93 | 94 | 95 | 96 | DeviceProperties 97 | 98 | Add 99 | 100 | PciRoot(0x0)/Pci(0x1f,0x0) 101 | 102 | device_type 103 | ISA bridge 104 | ec-device 105 | Intel_EC_V8 106 | model 107 | Intel Corporation Coffee Lake Series LPC Controller 108 | 109 | PciRoot(0x0)/Pci(0x1f,0x3) 110 | 111 | layout-id 112 | DgAAAA== 113 | 114 | PciRoot(0x0)/Pci(0x2,0x0) 115 | 116 | AAPL,ig-platform-id 117 | CQClPg== 118 | device-id 119 | pT4AAA== 120 | enable-hdmi-dividers-fix 121 | AQAAAA== 122 | enable-hdmi20 123 | AQAAAA== 124 | enable-lspcon-support 125 | AQAAAA== 126 | enable-max-pixel-clock-override 127 | AQAAAA== 128 | framebuffer-con1-busid 129 | BAAAAA== 130 | framebuffer-con1-enable 131 | AQAAAA== 132 | framebuffer-con1-type 133 | AAgAAA== 134 | framebuffer-con2-busid 135 | BQAAAA== 136 | framebuffer-con2-enable 137 | AQAAAA== 138 | framebuffer-con2-type 139 | AAQAAA== 140 | framebuffer-patch-enable 141 | AQAAAA== 142 | model 143 | Intel Iris Plus Graphics 655 144 | 145 | 146 | Delete 147 | 148 | 149 | Kernel 150 | 151 | Add 152 | 153 | 154 | Arch 155 | x86_64 156 | BundlePath 157 | Lilu.kext 158 | Comment 159 | V1.6.4 160 | Enabled 161 | 162 | ExecutablePath 163 | Contents/MacOS/Lilu 164 | MaxKernel 165 | 166 | MinKernel 167 | 168 | PlistPath 169 | Contents/Info.plist 170 | 171 | 172 | Arch 173 | x86_64 174 | BundlePath 175 | VirtualSMC.kext 176 | Comment 177 | V1.3.1 | SMC emulator 178 | Enabled 179 | 180 | ExecutablePath 181 | Contents/MacOS/VirtualSMC 182 | MaxKernel 183 | 184 | MinKernel 185 | 186 | PlistPath 187 | Contents/Info.plist 188 | 189 | 190 | Arch 191 | x86_64 192 | BundlePath 193 | SMCProcessor.kext 194 | Comment 195 | V1.3.1 | Processor sensor 196 | Enabled 197 | 198 | ExecutablePath 199 | Contents/MacOS/SMCProcessor 200 | MaxKernel 201 | 202 | MinKernel 203 | 204 | PlistPath 205 | Contents/Info.plist 206 | 207 | 208 | Arch 209 | x86_64 210 | BundlePath 211 | FeatureUnlock.kext 212 | Comment 213 | V1.1.4 214 | Enabled 215 | 216 | ExecutablePath 217 | Contents/MacOS/FeatureUnlock 218 | MaxKernel 219 | 220 | MinKernel 221 | 222 | PlistPath 223 | Contents/Info.plist 224 | 225 | 226 | Arch 227 | x86_64 228 | BundlePath 229 | SMCSuperIO.kext 230 | Comment 231 | V1.3.1 | Fan sensor 232 | Enabled 233 | 234 | ExecutablePath 235 | Contents/MacOS/SMCSuperIO 236 | MaxKernel 237 | 238 | MinKernel 239 | 240 | PlistPath 241 | Contents/Info.plist 242 | 243 | 244 | Arch 245 | x86_64 246 | BundlePath 247 | WhateverGreen.kext 248 | Comment 249 | V1.6.4 250 | Enabled 251 | 252 | ExecutablePath 253 | Contents/MacOS/WhateverGreen 254 | MaxKernel 255 | 256 | MinKernel 257 | 258 | PlistPath 259 | Contents/Info.plist 260 | 261 | 262 | Arch 263 | x86_64 264 | BundlePath 265 | AirportBrcmFixup.kext 266 | Comment 267 | V2.1.7 268 | Enabled 269 | 270 | ExecutablePath 271 | Contents/MacOS/AirportBrcmFixup 272 | MaxKernel 273 | 274 | MinKernel 275 | 276 | PlistPath 277 | Contents/Info.plist 278 | 279 | 280 | Arch 281 | x86_64 282 | BundlePath 283 | IntelMausi.kext 284 | Comment 285 | V1.0.7 | Intel Ethernet LAN 286 | Enabled 287 | 288 | ExecutablePath 289 | Contents/MacOS/IntelMausi 290 | MaxKernel 291 | 292 | MinKernel 293 | 294 | PlistPath 295 | Contents/Info.plist 296 | 297 | 298 | Arch 299 | x86_64 300 | BundlePath 301 | USBPorts.kext 302 | Comment 303 | V1.0 | USB port injection and fixes 304 | Enabled 305 | 306 | ExecutablePath 307 | 308 | MaxKernel 309 | 310 | MinKernel 311 | 312 | PlistPath 313 | Contents/Info.plist 314 | 315 | 316 | Arch 317 | x86_64 318 | BundlePath 319 | RestrictEvents.kext 320 | Comment 321 | V1.1.0 | Block unwanted processes 322 | Enabled 323 | 324 | ExecutablePath 325 | Contents/MacOS/RestrictEvents 326 | MaxKernel 327 | 328 | MinKernel 329 | 330 | PlistPath 331 | Contents/Info.plist 332 | 333 | 334 | Arch 335 | x86_64 336 | BundlePath 337 | BlueToolFixup.kext 338 | Comment 339 | V2.6.5 340 | Enabled 341 | 342 | ExecutablePath 343 | Contents/MacOS/BlueToolFixup 344 | MaxKernel 345 | 346 | MinKernel 347 | 348 | PlistPath 349 | Contents/Info.plist 350 | 351 | 352 | Arch 353 | x86_64 354 | BundlePath 355 | AppleALC.kext 356 | Comment 357 | V1.8.1 358 | Enabled 359 | 360 | ExecutablePath 361 | Contents/MacOS/AppleALC 362 | MaxKernel 363 | 364 | MinKernel 365 | 366 | PlistPath 367 | Contents/Info.plist 368 | 369 | 370 | Arch 371 | x86_64 372 | BundlePath 373 | NVMeFix.kext 374 | Comment 375 | V1.1.0 376 | Enabled 377 | 378 | ExecutablePath 379 | Contents/MacOS/NVMeFix 380 | MaxKernel 381 | 382 | MinKernel 383 | 384 | PlistPath 385 | Contents/Info.plist 386 | 387 | 388 | Block 389 | 390 | Emulate 391 | 392 | Cpuid1Data 393 | 394 | Cpuid1Mask 395 | 396 | DummyPowerManagement 397 | 398 | MaxKernel 399 | 400 | MinKernel 401 | 402 | 403 | Force 404 | 405 | Patch 406 | 407 | 408 | Arch 409 | Any 410 | Base 411 | __ZN8AppleRTC18setupDateTimeAlarmEPK11RTCDateTime 412 | Comment 413 | Disable RTC wake scheduling 414 | Count 415 | 1 416 | Enabled 417 | 418 | Find 419 | 420 | Identifier 421 | com.apple.driver.AppleRTC 422 | Limit 423 | 0 424 | Mask 425 | 426 | MaxKernel 427 | 428 | MinKernel 429 | 19.0.0 430 | Replace 431 | ww== 432 | ReplaceMask 433 | 434 | Skip 435 | 0 436 | 437 | 438 | Quirks 439 | 440 | AppleCpuPmCfgLock 441 | 442 | AppleXcpmCfgLock 443 | 444 | AppleXcpmExtraMsrs 445 | 446 | AppleXcpmForceBoost 447 | 448 | CustomPciSerialDevice 449 | 450 | CustomSMBIOSGuid 451 | 452 | DisableIoMapper 453 | 454 | DisableLinkeditJettison 455 | 456 | DisableRtcChecksum 457 | 458 | ExtendBTFeatureFlags 459 | 460 | ExternalDiskIcons 461 | 462 | ForceAquantiaEthernet 463 | 464 | ForceSecureBootScheme 465 | 466 | IncreasePciBarSize 467 | 468 | LapicKernelPanic 469 | 470 | LegacyCommpage 471 | 472 | PanicNoKextDump 473 | 474 | PowerTimeoutKernelPanic 475 | 476 | ProvideCurrentCpuInfo 477 | 478 | SetApfsTrimTimeout 479 | -1 480 | ThirdPartyDrives 481 | 482 | XhciPortLimit 483 | 484 | 485 | Scheme 486 | 487 | CustomKernel 488 | 489 | FuzzyMatch 490 | 491 | KernelArch 492 | x86_64 493 | KernelCache 494 | Auto 495 | 496 | 497 | Misc 498 | 499 | BlessOverride 500 | 501 | Boot 502 | 503 | ConsoleAttributes 504 | 0 505 | HibernateMode 506 | None 507 | HibernateSkipsPicker 508 | 509 | HideAuxiliary 510 | 511 | LauncherOption 512 | Disabled 513 | LauncherPath 514 | Default 515 | PickerAttributes 516 | 17 517 | PickerAudioAssist 518 | 519 | PickerMode 520 | External 521 | PickerVariant 522 | Acidanthera\Owl 523 | PollAppleHotKeys 524 | 525 | ShowPicker 526 | 527 | TakeoffDelay 528 | 0 529 | Timeout 530 | 30 531 | 532 | Debug 533 | 534 | AppleDebug 535 | 536 | ApplePanic 537 | 538 | DisableWatchDog 539 | 540 | DisplayDelay 541 | 0 542 | DisplayLevel 543 | 2147483650 544 | LogModules 545 | 546 | SysReport 547 | 548 | Target 549 | 3 550 | 551 | Entries 552 | 553 | Security 554 | 555 | AllowSetDefault 556 | 557 | ApECID 558 | 0 559 | AuthRestart 560 | 561 | BlacklistAppleUpdate 562 | 563 | DmgLoading 564 | Signed 565 | EnablePassword 566 | 567 | ExposeSensitiveData 568 | 2 569 | HaltLevel 570 | 2147483648 571 | PasswordHash 572 | 573 | PasswordSalt 574 | 575 | ScanPolicy 576 | 0 577 | SecureBootModel 578 | Default 579 | Vault 580 | Optional 581 | 582 | Serial 583 | 584 | Custom 585 | 586 | BaudRate 587 | 115200 588 | ClockRate 589 | 1843200 590 | DetectCable 591 | 592 | ExtendedTxFifoSize 593 | 64 594 | FifoControl 595 | 7 596 | LineControl 597 | 3 598 | PciDeviceInfo 599 | /w== 600 | RegisterAccessWidth 601 | 8 602 | RegisterBase 603 | 1016 604 | RegisterStride 605 | 1 606 | UseHardwareFlowControl 607 | 608 | UseMmio 609 | 610 | 611 | Init 612 | 613 | Override 614 | 615 | 616 | Tools 617 | 618 | 619 | Arguments 620 | 621 | Auxiliary 622 | 623 | Comment 624 | 625 | Enabled 626 | 627 | Flavour 628 | Auto 629 | FullNvramAccess 630 | 631 | Name 632 | CFGLock 633 | Path 634 | CFGLock.efi 635 | RealPath 636 | 637 | TextMode 638 | 639 | 640 | 641 | Arguments 642 | 643 | Auxiliary 644 | 645 | Comment 646 | 647 | Enabled 648 | 649 | Flavour 650 | Auto 651 | FullNvramAccess 652 | 653 | Name 654 | VerifyMsrE2 655 | Path 656 | VerifyMsrE2.efi 657 | RealPath 658 | 659 | TextMode 660 | 661 | 662 | 663 | 664 | NVRAM 665 | 666 | Add 667 | 668 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 669 | 670 | DefaultBackgroundColor 671 | AAAAAA== 672 | 673 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 674 | 675 | rtc-blacklist 676 | 677 | 678 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 679 | 680 | SystemAudioVolume 681 | Rg== 682 | boot-args 683 | keepsyms=1 brcmfx-country=#a 684 | csr-active-config 685 | 5wMAAA== 686 | ocwv 687 | IhIj 688 | prev-lang:kbd 689 | emgtSGFuczoyNTI= 690 | run-efi-updater 691 | No 692 | 693 | 694 | Delete 695 | 696 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 697 | 698 | DefaultBackgroundColor 699 | 700 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 701 | 702 | rtc-blacklist 703 | 704 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 705 | 706 | boot-args 707 | ForceDisplayRotationInEFI 708 | 709 | 710 | LegacyOverwrite 711 | 712 | LegacySchema 713 | 714 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 715 | 716 | EFILoginHiDPI 717 | EFIBluetoothDelay 718 | LocationServicesEnabled 719 | SystemAudioVolume 720 | SystemAudioVolumeDB 721 | SystemAudioVolumeSaved 722 | bluetoothActiveControllerInfo 723 | bluetoothInternalControllerInfo 724 | flagstate 725 | fmm-computer-name 726 | fmm-mobileme-token-FMM 727 | fmm-mobileme-token-FMM-BridgeHasAccount 728 | nvda_drv 729 | prev-lang:kbd 730 | 731 | 8BE4DF61-93CA-11D2-AA0D-00E098032B8C 732 | 733 | Boot0080 734 | Boot0081 735 | Boot0082 736 | BootNext 737 | BootOrder 738 | 739 | 740 | WriteFlash 741 | 742 | 743 | PlatformInfo 744 | 745 | Automatic 746 | 747 | CustomMemory 748 | 749 | Generic 750 | 751 | AdviseFeatures 752 | 753 | MLB 754 | 755 | MaxBIOSVersion 756 | 757 | ProcessorType 758 | 0 759 | ROM 760 | ExcM+qxi 761 | SpoofVendor 762 | 763 | SystemMemoryStatus 764 | Auto 765 | SystemProductName 766 | Macmini8,1 767 | SystemSerialNumber 768 | 769 | SystemUUID 770 | 771 | 772 | UpdateDataHub 773 | 774 | UpdateNVRAM 775 | 776 | UpdateSMBIOS 777 | 778 | UpdateSMBIOSMode 779 | Custom 780 | UseRawUuidEncoding 781 | 782 | 783 | UEFI 784 | 785 | APFS 786 | 787 | EnableJumpstart 788 | 789 | GlobalConnect 790 | 791 | HideVerbose 792 | 793 | JumpstartHotPlug 794 | 795 | MinDate 796 | -1 797 | MinVersion 798 | -1 799 | 800 | AppleInput 801 | 802 | AppleEvent 803 | Builtin 804 | CustomDelays 805 | 806 | GraphicsInputMirroring 807 | 808 | KeyInitialDelay 809 | 50 810 | KeySubsequentDelay 811 | 5 812 | PointerDwellClickTimeout 813 | 0 814 | PointerDwellDoubleClickTimeout 815 | 0 816 | PointerDwellRadius 817 | 0 818 | PointerPollMask 819 | -1 820 | PointerPollMax 821 | 80 822 | PointerPollMin 823 | 10 824 | PointerSpeedDiv 825 | 1 826 | PointerSpeedMul 827 | 1 828 | 829 | Audio 830 | 831 | AudioCodec 832 | 0 833 | AudioDevice 834 | PciRoot(0x0)/Pci(0x1b,0x0) 835 | AudioOutMask 836 | 0 837 | AudioSupport 838 | 839 | DisconnectHda 840 | 841 | MaximumGain 842 | -15 843 | MinimumAssistGain 844 | -30 845 | MinimumAudibleGain 846 | -55 847 | PlayChime 848 | Auto 849 | ResetTrafficClass 850 | 851 | SetupDelay 852 | 0 853 | 854 | ConnectDrivers 855 | 856 | Drivers 857 | 858 | 859 | Arguments 860 | 861 | Comment 862 | 863 | Enabled 864 | 865 | LoadEarly 866 | 867 | Path 868 | CrScreenshotDxe.efi 869 | 870 | 871 | Arguments 872 | 873 | Comment 874 | 875 | Enabled 876 | 877 | LoadEarly 878 | 879 | Path 880 | OpenCanopy.efi 881 | 882 | 883 | Arguments 884 | 885 | Comment 886 | 887 | Enabled 888 | 889 | LoadEarly 890 | 891 | Path 892 | OpenHfsPlus.efi 893 | 894 | 895 | Arguments 896 | 897 | Comment 898 | 899 | Enabled 900 | 901 | LoadEarly 902 | 903 | Path 904 | OpenRuntime.efi 905 | 906 | 907 | Arguments 908 | 909 | Comment 910 | 911 | Enabled 912 | 913 | LoadEarly 914 | 915 | Path 916 | ResetNvramEntry.efi 917 | 918 | 919 | Arguments 920 | 921 | Comment 922 | 923 | Enabled 924 | 925 | LoadEarly 926 | 927 | Path 928 | ToggleSipEntry.efi 929 | 930 | 931 | Input 932 | 933 | KeyFiltering 934 | 935 | KeyForgetThreshold 936 | 5 937 | KeySupport 938 | 939 | KeySupportMode 940 | Auto 941 | KeySwap 942 | 943 | PointerSupport 944 | 945 | PointerSupportMode 946 | 947 | TimerResolution 948 | 50000 949 | 950 | Output 951 | 952 | ClearScreenOnModeSwitch 953 | 954 | ConsoleMode 955 | Max 956 | DirectGopRendering 957 | 958 | ForceResolution 959 | 960 | GopBurstMode 961 | 962 | GopPassThrough 963 | Apple 964 | IgnoreTextInGraphics 965 | 966 | ProvideConsoleGop 967 | 968 | ReconnectGraphicsOnConnect 969 | 970 | ReconnectOnResChange 971 | 972 | ReplaceTabWithSpace 973 | 974 | Resolution 975 | Max 976 | SanitiseClearScreen 977 | 978 | TextRenderer 979 | BuiltinGraphics 980 | UIScale 981 | 0 982 | UgaPassThrough 983 | 984 | 985 | ProtocolOverrides 986 | 987 | AppleAudio 988 | 989 | AppleBootPolicy 990 | 991 | AppleDebugLog 992 | 993 | AppleEg2Info 994 | 995 | AppleFramebufferInfo 996 | 997 | AppleImageConversion 998 | 999 | AppleImg4Verification 1000 | 1001 | AppleKeyMap 1002 | 1003 | AppleRtcRam 1004 | 1005 | AppleSecureBoot 1006 | 1007 | AppleSmcIo 1008 | 1009 | AppleUserInterfaceTheme 1010 | 1011 | DataHub 1012 | 1013 | DeviceProperties 1014 | 1015 | FirmwareVolume 1016 | 1017 | HashServices 1018 | 1019 | OSInfo 1020 | 1021 | UnicodeCollation 1022 | 1023 | 1024 | Quirks 1025 | 1026 | ActivateHpetSupport 1027 | 1028 | DisableSecurityPolicy 1029 | 1030 | EnableVectorAcceleration 1031 | 1032 | EnableVmx 1033 | 1034 | ExitBootServicesDelay 1035 | 0 1036 | ForceOcWriteFlash 1037 | 1038 | ForgeUefiSupport 1039 | 1040 | IgnoreInvalidFlexRatio 1041 | 1042 | ReleaseUsbOwnership 1043 | 1044 | ReloadOptionRoms 1045 | 1046 | RequestBootVarRouting 1047 | 1048 | ResizeGpuBars 1049 | -1 1050 | ResizeUsePciRbIo 1051 | 1052 | TscSyncTimeout 1053 | 0 1054 | UnblockFsConnect 1055 | 1056 | 1057 | ReservedMemory 1058 | 1059 | 1060 | 1061 | 1062 | -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.43.29.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.43.29.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.44.35.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.44.35.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.45.03.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.45.03.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.48.39.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.48.39.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.52.14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.52.14.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.53.54.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.53.54.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.54.02.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.54.02.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.54.10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.54.10.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.54.14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.54.14.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.54.28.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.54.28.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.54.35.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.54.35.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.54.41.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.54.41.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.55.00.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.55.00.webp -------------------------------------------------------------------------------- /assets/iShot_2023-02-15_14.55.15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/iShot_2023-02-15_14.55.15.webp -------------------------------------------------------------------------------- /assets/nuc8i5-features-16x9.png.rendition.intel.web.1920.1080.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/nuc8i5-features-16x9.png.rendition.intel.web.1920.1080.webp -------------------------------------------------------------------------------- /assets/nuc8i5bek-nuc8i5beh-pb-16x9.png.rendition.intel.web.1920.1080.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/assets/nuc8i5bek-nuc8i5beh-pb-16x9.png.rendition.intel.web.1920.1080.webp -------------------------------------------------------------------------------- /backup/personal-vx-EFI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunSeekerX/intel_nuc8_i5beh_hackintosh_opencore_efi/4992a2b1eb88ca70bf05f78c2177b4ac8e6c2c06/backup/personal-vx-EFI.zip -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # OpenCore for intel nuc8i5ben 2 | 3 | ![nuc8i5bek-nuc8i5beh-pb-16x9.png.rendition.intel.web.1920.1080](./assets/nuc8i5bek-nuc8i5beh-pb-16x9.png.rendition.intel.web.1920.1080.webp) 4 | 5 | ## 简介 6 | 7 | 完美 😀。 8 | 9 | | Key | Value | 10 | | :--------------: | :---------------------: | 11 | | OpenCore version | 0.9.1 | 12 | | MacOS version | Ventura 13.3.1 (22E261) | 13 | 14 | ## Bios 设置 15 | 16 | - Devices -> USB -> Port Device Charging Mode: off 17 | - Devices -> USB -> USB Legacy -> Disabled 18 | - Security -> Thunderbolt Security Level: Legacy Mode 19 | - Power -> Wake on LAN from S4/S5: Stay Off 20 | - Boot -> Boot Configuration -> Network Boot: Disable 21 | - Boot -> Secure Boot -> Disable 22 | 23 | ## 安装说明 24 | 25 | - **我的是占用了读卡器的硬改版本里面有博通网卡驱动,如果你是英特尔网卡需要更换为英特尔网卡驱动** 26 | - 记得换三码,里面没有自带的 27 | - 不要换机型,否则 usb 接口无法使用,需要替换 USBPorts.kext 内 plist 的机型值,你会写代码的话很简单打开改下两个地方就行 28 | - 已经用来写了好几年的代码,没啥问题。能开发,这个项目也是在 mac 下系统下传上来的 29 | - github 星星最多的 efi 我也用过,用起来比现在配置的卡。不知道啥问题,如果我的 efi 有问题你们也可以看看:[https://github.com/zearp/Nucintosh](https://github.com/zearp/Nucintosh) 30 | 31 | ## 硬件 32 | 33 | | Key | Value | Other | 34 | | :------: | :---------------------------------------------------------------------------: | ---------- | 35 | | CPU | Intel® Core™ i5-8259U Processor (6M Cache, up to 3.80 GHz) | 4c8h | 36 | | 显卡 | Intel CoffeeLake-U GT3e [Iris Plus Graphics 655] | | 37 | | 内存 | Lexar LD4AS016G-H2666G - 16 GB (1 rank, 16 banks) | x2 共 32GB | 38 | | 无线网卡 | Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1766) | 94360cs2 | 39 | | 有线网卡 | Intel(R) Ethernet Connection (6) I219-V | | 40 | | 声卡 | Realtek ALC233 @ Intel Cannon Point-LP PCH - cAVS (Audio, Voice, Speech) [D0] | | 41 | | 硬盘 | WD Blue SN570 1TB SSD | | 42 | | 接口 | USB-C (DP1.2) X1
HDMI 2.0a X1
RJ45 网口 X1
... | | 43 | 44 | ## 正常工作 45 | 46 | - CPU 正常睿频 47 | - 博通网卡 - 隔空投送 48 | - 声卡 49 | - 睡眠 50 | - 核显正常驱动,支持缩放/夜览 51 | 52 | ## 存在的问题 53 | 54 | - 开机偶发卡住,不管是进入 win 还是 mac 都有这个问题。看起来像个例,有没出现这个问题的。查询了大量的资料发现跟我的硬改网卡有关系。暂时无解。 55 | 56 | 57 | ## 部分系统截图 58 | 59 | 60 | 61 | 程序坞 62 | 63 | 64 | 65 | | Describe | screenshot | 66 | | -------- | ------------------------------------------------------------------------ | 67 | | Nvme | | 68 | | USB | | 69 | | 以太网 | | 70 | | 内存 | | 71 | | 显卡 | | 72 | | 电源 | | 73 | | 蓝牙 | | 74 | | 音频 | | 75 | | WIFI | | 76 | 77 | ## 部分 efi 截图 78 | 79 | | Describe | screenshot | 80 | | :------: | ------------------------------------------------------------------------------------------------------- | 81 | | ACPI | iShot_2023-02-07_20.09.44 | 82 | | Dp | iShot_2023-02-07_20.09.53 | 83 | | Kernel | iShot_2023-02-07_20.09.44 | 84 | 85 | ## 更新日志 86 | 87 | ### 2023-04-08 88 | 89 | - 更新到 oc 0.9.1 90 | - 变更版本为官方的 oc,mod oc用不出来啥区别 91 | - 驱动升级到最新版 92 | 93 | ### 2023-04-03 94 | 95 | - 更新到 oc 0.9.0 96 | 97 | ### 2023-03-10 98 | 99 | - 尝试使用 mod 版本的 oc 100 | 101 | ### 2023-02-24 102 | 103 | - 增加了 CFGLock 查看工具,需要按住空格显示辅助工具 104 | - 默认隐藏辅助工具,按住空格显示 105 | 106 | ## 参考 107 | 108 | - [[OpenCore] NUC8 最新 OC EFI 持续更新(已更新至 0.8.7+13.1)](https://bbs.pcbeta.com/viewthread-1935097-1-1.html) by yippeeghost 109 | --------------------------------------------------------------------------------