├── EFI ├── .DS_Store ├── BOOT │ ├── .contentFlavour │ └── BOOTX64.efi └── OC │ ├── .DS_Store │ ├── .contentFlavour │ ├── ACPI │ ├── SSDT-AWAC.aml │ ├── SSDT-EC-USBX-DESKTOP.aml │ ├── SSDT-I225V.aml │ └── SSDT-PLUG-DRTNIA.aml │ ├── Drivers │ ├── HfsPlus.efi │ └── OpenRuntime.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 │ ├── AppleIntelI210Ethernet.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleIntelI210Ethernet │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── version.plist │ ├── BlueToolFixup.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BlueToolFixup │ ├── BrcmBluetoothInjector.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── BrcmFirmwareData.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrcmFirmwareData │ ├── BrcmPatchRAM.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM │ ├── BrcmPatchRAM3.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── BrcmPatchRAM3 │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NVMeFix.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NVMeFix │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── USBInjectAll.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── USBInjectAll │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── USBToolBox.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── USBToolBox │ ├── UTBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Tools │ ├── BootKicker.efi │ ├── ChipTune.efi │ ├── CleanNvram.efi │ ├── ControlMsrE2.efi │ ├── CsrUtil.efi │ ├── GopStop.efi │ ├── KeyTester.efi │ ├── MmapDump.efi │ ├── OpenControl.efi │ ├── OpenShell.efi │ ├── ResetSystem.efi │ ├── RtcRw.efi │ └── TpmInfo.efi │ └── config.plist ├── ReadMe.md └── img ├── .DS_Store └── macos.png /EFI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/.DS_Store -------------------------------------------------------------------------------- /EFI/BOOT/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/BOOT/BOOTX64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/BOOT/BOOTX64.efi -------------------------------------------------------------------------------- /EFI/OC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/.DS_Store -------------------------------------------------------------------------------- /EFI/OC/.contentFlavour: -------------------------------------------------------------------------------- 1 | OpenCore -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC-USBX-DESKTOP.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/ACPI/SSDT-EC-USBX-DESKTOP.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-I225V.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/ACPI/SSDT-I225V.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG-DRTNIA.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/ACPI/SSDT-PLUG-DRTNIA.aml -------------------------------------------------------------------------------- /EFI/OC/Drivers/HfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Drivers/HfsPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportBrcmFixup 11 | CFBundleIdentifier 12 | as.lvs1974.AirportBrcmFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportBrcmFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.lvs1974.AirportBrcmFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.AirportBrcmFixup 51 | IOClass 52 | AirportBrcmFixup 53 | IOMatchCategory 54 | AirportBrcmFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | as.lvs1974.FakeAirportBrcmFixup 61 | 62 | CFBundleIdentifier 63 | as.lvs1974.AirportBrcmFixup 64 | IOClass 65 | FakeBrcm 66 | IOMatchCategory 67 | IODefaultMatchCategory 68 | IONameMatch 69 | 70 | pci14e4,43ba 71 | pci14e4,43a3 72 | pci14e4,43a0 73 | pci14e4,4331 74 | pci14e4,4353 75 | pci14e4,43b1 76 | pci14e4,43b2 77 | pci14e4,4357 78 | pci14e4,432b 79 | pci14e4,4311 80 | pci14e4,4312 81 | pci14e4,4313 82 | pci14e4,4318 83 | pci14e4,4319 84 | pci14e4,431a 85 | pci14e4,4320 86 | pci14e4,4324 87 | pci14e4,4325 88 | pci14e4,4328 89 | pci14e4,432c 90 | pci14e4,432d 91 | 92 | IOProbeScore 93 | 6000 94 | IOProviderClass 95 | IOPCIDevice 96 | TruePowerOff 97 | 98 | 99 | 100 | LSMinimumSystemVersion 101 | 10.8 102 | NSHumanReadableCopyright 103 | Copyright © 2017 lvs1974. All rights reserved. 104 | OSBundleCompatibleVersion 105 | 1.0 106 | OSBundleLibraries 107 | 108 | as.vit9696.Lilu 109 | 1.2.6 110 | com.apple.iokit.IOPCIFamily 111 | 2.7 112 | com.apple.kpi.bsd 113 | 12.0.0 114 | com.apple.kpi.dsep 115 | 12.0.0 116 | com.apple.kpi.iokit 117 | 12.0.0 118 | com.apple.kpi.libkern 119 | 12.0.0 120 | com.apple.kpi.mach 121 | 12.0.0 122 | com.apple.kpi.unsupported 123 | 12.0.0 124 | 125 | OSBundleRequired 126 | Network-Root 127 | 128 | 129 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/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/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleIntelI210Ethernet.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20A241133 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | AppleIntelI210Ethernet 11 | CFBundleGetInfoString 12 | Apple Intel I210 Ethernet, Copyright 2013-2016 Apple Inc. 13 | CFBundleIdentifier 14 | com.apple.driver.AppleIntelI210Ethernet 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | com.apple.driver.AppleIntelI210Ethernet 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 2.3.1 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 2.3.1 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 21F69 35 | DTPlatformName 36 | macosx 37 | DTPlatformVersion 38 | 12.4 39 | DTSDKBuild 40 | 21F69 41 | DTSDKName 42 | macosx12.4.internal 43 | DTXcode 44 | 1330 45 | DTXcodeBuild 46 | 13E6049a 47 | IOKitPersonalities 48 | 49 | AppleIntelI210 50 | 51 | CFBundleIdentifier 52 | com.apple.driver.AppleIntelI210Ethernet 53 | IOClass 54 | AppleIntelI210 55 | IOMatchDefer 56 | 57 | IOPCIPrimaryMatch 58 | 0x15338086 59 | IOPCITunnelCompatible 60 | 61 | IOPCIUseDeviceMapper 62 | 63 | IOProbeScore 64 | 1000 65 | IOProviderClass 66 | IOPCIDevice 67 | IOResourceMatch 68 | IOKit 69 | IOUserClient 70 | mDNSI210OffloadUserClient 71 | OSObject 72 | mDNSI210Handoff 73 | fetch_delay 74 | 70000 75 | 76 | AppleIntelI225 77 | 78 | CFBundleIdentifier 79 | com.apple.driver.AppleIntelI210Ethernet 80 | IOClass 81 | AppleIntelI210 82 | IOMatchDefer 83 | 84 | IONameMatch 85 | 86 | pci8086,15f2 87 | pci8086,15f3 88 | pci8086,3100 89 | pci8086,3101 90 | pci8086,5502 91 | pci8086,d9f 92 | pci8086,15f8 93 | pci8086,15f7 94 | pci8086,15fd 95 | 96 | IOPCITunnelCompatible 97 | 98 | IOPCIUseDeviceMapper 99 | 100 | IOProbeScore 101 | 1000 102 | IOProviderClass 103 | IOPCIDevice 104 | IOUserClient 105 | mDNSI210OffloadUserClient 106 | OSObject 107 | mDNSI210Handoff 108 | fetch_delay 109 | 70000 110 | 111 | 112 | LSMinimumSystemVersion 113 | 12.4 114 | NSHumanReadableCopyright 115 | Copyright © 2016 Apple Inc. All rights reserved. 116 | OSBundleLibraries 117 | 118 | com.apple.driver.mDNSOffloadUserClient 119 | 1.0.0d7 120 | com.apple.iokit.IOEthernetAVBController 121 | 1.0.3b2 122 | com.apple.iokit.IONetworkingFamily 123 | 1.5 124 | com.apple.iokit.IOPCIFamily 125 | 1.7 126 | com.apple.kpi.bsd 127 | 13.0.0 128 | com.apple.kpi.iokit 129 | 13.0.0 130 | com.apple.kpi.libkern 131 | 13.0.0 132 | com.apple.kpi.mach 133 | 13.0.0 134 | 135 | OSBundleRequired 136 | Network-Root 137 | 138 | 139 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleIntelI210Ethernet.kext/Contents/MacOS/AppleIntelI210Ethernet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/AppleIntelI210Ethernet.kext/Contents/MacOS/AppleIntelI210Ethernet -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleIntelI210Ethernet.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^PlugIns/ 12 | 13 | omit 14 | 15 | weight 16 | 200 17 | 18 | 19 | rules2 20 | 21 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 22 | 23 | nested 24 | 25 | weight 26 | 0.0 27 | 28 | ^PlugIns/ 29 | 30 | omit 31 | 32 | weight 33 | 200 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleIntelI210Ethernet.kext/Contents/version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 363 7 | CFBundleShortVersionString 8 | 2.3.1 9 | CFBundleVersion 10 | 2.3.1 11 | ProjectName 12 | AppleIntelI210Ethernet 13 | SourceVersion 14 | 269100006000000 15 | 16 | 17 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G817 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | BlueToolFixup 11 | CFBundleIdentifier 12 | as.acidanthera.BlueToolFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | BlueToolFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.6.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | BlueToolFixup 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BlueToolFixup 49 | IOClass 50 | BlueToolFixup 51 | IOMatchCategory 52 | BlueToolFixup 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.8 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.4.7 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/BlueToolFixup.kext/Contents/MacOS/BlueToolFixup -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20C69 7 | CFBundleIdentifier 8 | as.acidanthera.injector.BrcmBluetoothInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | BrcmBluetoothInjector 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 2.6.4 17 | CFBundleSignature 18 | ???? 19 | CFBundleSupportedPlatforms 20 | 21 | MacOSX 22 | 23 | CFBundleVersion 24 | 2.6.4 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 12C33 29 | DTPlatformName 30 | macosx 31 | DTPlatformVersion 32 | 11.1 33 | DTSDKBuild 34 | 20C63 35 | DTSDKName 36 | macosx11.1 37 | DTXcode 38 | 1230 39 | DTXcodeBuild 40 | 12C33 41 | IOKitPersonalities 42 | 43 | 03f0_231d no firmware 44 | 45 | CFBundleIdentifier 46 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 47 | IOClass 48 | BroadcomBluetoothHostControllerUSBTransport 49 | IOProbeScore 50 | 3000 51 | IOProviderClass 52 | IOUSBHostDevice 53 | idProduct 54 | 8989 55 | idVendor 56 | 1008 57 | 58 | 0489_e030 no firmware 59 | 60 | CFBundleIdentifier 61 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 62 | IOClass 63 | BroadcomBluetoothHostControllerUSBTransport 64 | IOProbeScore 65 | 3000 66 | IOProviderClass 67 | IOUSBHostDevice 68 | idProduct 69 | 57392 70 | idVendor 71 | 1161 72 | 73 | 0489_e032 74 | 75 | CFBundleIdentifier 76 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 77 | IOClass 78 | BroadcomBluetoothHostControllerUSBTransport 79 | IOProbeScore 80 | 3000 81 | IOProviderClass 82 | IOUSBHostDevice 83 | idProduct 84 | 57394 85 | idVendor 86 | 1161 87 | 88 | 0489_e042 89 | 90 | CFBundleIdentifier 91 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 92 | IOClass 93 | BroadcomBluetoothHostControllerUSBTransport 94 | IOProbeScore 95 | 3000 96 | IOProviderClass 97 | IOUSBHostDevice 98 | idProduct 99 | 57410 100 | idVendor 101 | 1161 102 | 103 | 0489_e046 104 | 105 | CFBundleIdentifier 106 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 107 | IOClass 108 | BroadcomBluetoothHostControllerUSBTransport 109 | IOProbeScore 110 | 3000 111 | IOProviderClass 112 | IOUSBHostDevice 113 | idProduct 114 | 57414 115 | idVendor 116 | 1161 117 | 118 | 0489_e04f 119 | 120 | CFBundleIdentifier 121 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 122 | IOClass 123 | BroadcomBluetoothHostControllerUSBTransport 124 | IOProbeScore 125 | 3000 126 | IOProviderClass 127 | IOUSBHostDevice 128 | idProduct 129 | 57423 130 | idVendor 131 | 1161 132 | 133 | 0489_e052 134 | 135 | CFBundleIdentifier 136 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 137 | IOClass 138 | BroadcomBluetoothHostControllerUSBTransport 139 | IOProbeScore 140 | 3000 141 | IOProviderClass 142 | IOUSBHostDevice 143 | idProduct 144 | 57426 145 | idVendor 146 | 1161 147 | 148 | 0489_e055 149 | 150 | CFBundleIdentifier 151 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 152 | IOClass 153 | BroadcomBluetoothHostControllerUSBTransport 154 | IOProbeScore 155 | 3000 156 | IOProviderClass 157 | IOUSBHostDevice 158 | idProduct 159 | 57429 160 | idVendor 161 | 1161 162 | 163 | 0489_e059 164 | 165 | CFBundleIdentifier 166 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 167 | IOClass 168 | BroadcomBluetoothHostControllerUSBTransport 169 | IOProbeScore 170 | 3000 171 | IOProviderClass 172 | IOUSBHostDevice 173 | idProduct 174 | 57433 175 | idVendor 176 | 1161 177 | 178 | 0489_e079 179 | 180 | CFBundleIdentifier 181 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 182 | IOClass 183 | BroadcomBluetoothHostControllerUSBTransport 184 | IOProbeScore 185 | 3000 186 | IOProviderClass 187 | IOUSBHostDevice 188 | idProduct 189 | 57465 190 | idVendor 191 | 1161 192 | 193 | 0489_e07a 194 | 195 | CFBundleIdentifier 196 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 197 | IOClass 198 | BroadcomBluetoothHostControllerUSBTransport 199 | IOProbeScore 200 | 3000 201 | IOProviderClass 202 | IOUSBHostDevice 203 | idProduct 204 | 57466 205 | idVendor 206 | 1161 207 | 208 | 0489_e087 209 | 210 | CFBundleIdentifier 211 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 212 | IOClass 213 | BroadcomBluetoothHostControllerUSBTransport 214 | IOProbeScore 215 | 3000 216 | IOProviderClass 217 | IOUSBHostDevice 218 | idProduct 219 | 57479 220 | idVendor 221 | 1161 222 | 223 | 0489_e096 224 | 225 | CFBundleIdentifier 226 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 227 | IOClass 228 | BroadcomBluetoothHostControllerUSBTransport 229 | IOProbeScore 230 | 3000 231 | IOProviderClass 232 | IOUSBHostDevice 233 | idProduct 234 | 57494 235 | idVendor 236 | 1161 237 | 238 | 0489_e0a1 239 | 240 | CFBundleIdentifier 241 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 242 | IOClass 243 | BroadcomBluetoothHostControllerUSBTransport 244 | IOProbeScore 245 | 3000 246 | IOProviderClass 247 | IOUSBHostDevice 248 | idProduct 249 | 57505 250 | idVendor 251 | 1161 252 | 253 | 04b4_f901 254 | 255 | CFBundleIdentifier 256 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 257 | IOClass 258 | BroadcomBluetoothHostControllerUSBTransport 259 | IOProbeScore 260 | 3000 261 | IOProviderClass 262 | IOUSBHostDevice 263 | idProduct 264 | 63745 265 | idVendor 266 | 1204 267 | 268 | 04ca_2003 269 | 270 | CFBundleIdentifier 271 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 272 | IOClass 273 | BroadcomBluetoothHostControllerUSBTransport 274 | IOProbeScore 275 | 3000 276 | IOProviderClass 277 | IOUSBHostDevice 278 | idProduct 279 | 8195 280 | idVendor 281 | 1226 282 | 283 | 04ca_2004 284 | 285 | CFBundleIdentifier 286 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 287 | IOClass 288 | BroadcomBluetoothHostControllerUSBTransport 289 | IOProbeScore 290 | 3000 291 | IOProviderClass 292 | IOUSBHostDevice 293 | idProduct 294 | 8196 295 | idVendor 296 | 1226 297 | 298 | 04ca_2005 299 | 300 | CFBundleIdentifier 301 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 302 | IOClass 303 | BroadcomBluetoothHostControllerUSBTransport 304 | IOProbeScore 305 | 3000 306 | IOProviderClass 307 | IOUSBHostDevice 308 | idProduct 309 | 8197 310 | idVendor 311 | 1226 312 | 313 | 04ca_2006 314 | 315 | CFBundleIdentifier 316 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 317 | IOClass 318 | BroadcomBluetoothHostControllerUSBTransport 319 | IOProbeScore 320 | 3000 321 | IOProviderClass 322 | IOUSBHostDevice 323 | idProduct 324 | 8198 325 | idVendor 326 | 1226 327 | 328 | 04ca_2009 329 | 330 | CFBundleIdentifier 331 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 332 | IOClass 333 | BroadcomBluetoothHostControllerUSBTransport 334 | IOProbeScore 335 | 3000 336 | IOProviderClass 337 | IOUSBHostDevice 338 | idProduct 339 | 8201 340 | idVendor 341 | 1226 342 | 343 | 04ca_200a 344 | 345 | CFBundleIdentifier 346 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 347 | IOClass 348 | BroadcomBluetoothHostControllerUSBTransport 349 | IOProbeScore 350 | 3000 351 | IOProviderClass 352 | IOUSBHostDevice 353 | idProduct 354 | 8202 355 | idVendor 356 | 1226 357 | 358 | 04ca_200b 359 | 360 | CFBundleIdentifier 361 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 362 | IOClass 363 | BroadcomBluetoothHostControllerUSBTransport 364 | IOProbeScore 365 | 3000 366 | IOProviderClass 367 | IOUSBHostDevice 368 | idProduct 369 | 8203 370 | idVendor 371 | 1226 372 | 373 | 04ca_200c 374 | 375 | CFBundleIdentifier 376 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 377 | IOClass 378 | BroadcomBluetoothHostControllerUSBTransport 379 | IOProbeScore 380 | 3000 381 | IOProviderClass 382 | IOUSBHostDevice 383 | idProduct 384 | 8204 385 | idVendor 386 | 1226 387 | 388 | 04ca_200e 389 | 390 | CFBundleIdentifier 391 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 392 | IOClass 393 | BroadcomBluetoothHostControllerUSBTransport 394 | IOProbeScore 395 | 3000 396 | IOProviderClass 397 | IOUSBHostDevice 398 | idProduct 399 | 8206 400 | idVendor 401 | 1226 402 | 403 | 04ca_200f 404 | 405 | CFBundleIdentifier 406 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 407 | IOClass 408 | BroadcomBluetoothHostControllerUSBTransport 409 | IOProbeScore 410 | 3000 411 | IOProviderClass 412 | IOUSBHostDevice 413 | idProduct 414 | 8207 415 | idVendor 416 | 1226 417 | 418 | 04ca_2012 419 | 420 | CFBundleIdentifier 421 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 422 | IOClass 423 | BroadcomBluetoothHostControllerUSBTransport 424 | IOProbeScore 425 | 3000 426 | IOProviderClass 427 | IOUSBHostDevice 428 | idProduct 429 | 8210 430 | idVendor 431 | 1226 432 | 433 | 04ca_2016 434 | 435 | CFBundleIdentifier 436 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 437 | IOClass 438 | BroadcomBluetoothHostControllerUSBTransport 439 | IOProbeScore 440 | 3000 441 | IOProviderClass 442 | IOUSBHostDevice 443 | idProduct 444 | 8214 445 | idVendor 446 | 1226 447 | 448 | 04f2_b4a1 449 | 450 | CFBundleIdentifier 451 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 452 | IOClass 453 | BroadcomBluetoothHostControllerUSBTransport 454 | IOProbeScore 455 | 3000 456 | IOProviderClass 457 | IOUSBHostDevice 458 | idProduct 459 | 46241 460 | idVendor 461 | 1266 462 | 463 | 050d_065a 464 | 465 | CFBundleIdentifier 466 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 467 | IOClass 468 | BroadcomBluetoothHostControllerUSBTransport 469 | IOProbeScore 470 | 3000 471 | IOProviderClass 472 | IOUSBHostDevice 473 | idProduct 474 | 1626 475 | idVendor 476 | 1293 477 | 478 | 0930_021e 479 | 480 | CFBundleIdentifier 481 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 482 | IOClass 483 | BroadcomBluetoothHostControllerUSBTransport 484 | IOProbeScore 485 | 3000 486 | IOProviderClass 487 | IOUSBHostDevice 488 | idProduct 489 | 542 490 | idVendor 491 | 2352 492 | 493 | 0930_021f 494 | 495 | CFBundleIdentifier 496 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 497 | IOClass 498 | BroadcomBluetoothHostControllerUSBTransport 499 | IOProbeScore 500 | 3000 501 | IOProviderClass 502 | IOUSBHostDevice 503 | idProduct 504 | 543 505 | idVendor 506 | 2352 507 | 508 | 0930_0221 509 | 510 | CFBundleIdentifier 511 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 512 | IOClass 513 | BroadcomBluetoothHostControllerUSBTransport 514 | IOProbeScore 515 | 3000 516 | IOProviderClass 517 | IOUSBHostDevice 518 | idProduct 519 | 545 520 | idVendor 521 | 2352 522 | 523 | 0930_0223 524 | 525 | CFBundleIdentifier 526 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 527 | IOClass 528 | BroadcomBluetoothHostControllerUSBTransport 529 | IOProbeScore 530 | 3000 531 | IOProviderClass 532 | IOUSBHostDevice 533 | idProduct 534 | 547 535 | idVendor 536 | 2352 537 | 538 | 0930_0225 539 | 540 | CFBundleIdentifier 541 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 542 | IOClass 543 | BroadcomBluetoothHostControllerUSBTransport 544 | IOProbeScore 545 | 3000 546 | IOProviderClass 547 | IOUSBHostDevice 548 | idProduct 549 | 549 550 | idVendor 551 | 2352 552 | 553 | 0930_0226 554 | 555 | CFBundleIdentifier 556 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 557 | IOClass 558 | BroadcomBluetoothHostControllerUSBTransport 559 | IOProbeScore 560 | 3000 561 | IOProviderClass 562 | IOUSBHostDevice 563 | idProduct 564 | 550 565 | idVendor 566 | 2352 567 | 568 | 0930_0229 569 | 570 | CFBundleIdentifier 571 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 572 | IOClass 573 | BroadcomBluetoothHostControllerUSBTransport 574 | IOProbeScore 575 | 3000 576 | IOProviderClass 577 | IOUSBHostDevice 578 | idProduct 579 | 553 580 | idVendor 581 | 2352 582 | 583 | 0a5c_2168 584 | 585 | CFBundleIdentifier 586 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 587 | IOClass 588 | BroadcomBluetoothHostControllerUSBTransport 589 | IOProbeScore 590 | 3000 591 | IOProviderClass 592 | IOUSBHostDevice 593 | idProduct 594 | 8552 595 | idVendor 596 | 2652 597 | 598 | 0a5c_2169 599 | 600 | CFBundleIdentifier 601 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 602 | IOClass 603 | BroadcomBluetoothHostControllerUSBTransport 604 | IOProbeScore 605 | 3000 606 | IOProviderClass 607 | IOUSBHostDevice 608 | idProduct 609 | 8553 610 | idVendor 611 | 2652 612 | 613 | 0a5c_216a 614 | 615 | CFBundleIdentifier 616 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 617 | IOClass 618 | BroadcomBluetoothHostControllerUSBTransport 619 | IOProbeScore 620 | 3000 621 | IOProviderClass 622 | IOUSBHostDevice 623 | idProduct 624 | 8554 625 | idVendor 626 | 2652 627 | 628 | 0a5c_216b 629 | 630 | CFBundleIdentifier 631 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 632 | IOClass 633 | BroadcomBluetoothHostControllerUSBTransport 634 | IOProbeScore 635 | 3000 636 | IOProviderClass 637 | IOUSBHostDevice 638 | idProduct 639 | 8555 640 | idVendor 641 | 2652 642 | 643 | 0a5c_216c 644 | 645 | CFBundleIdentifier 646 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 647 | IOClass 648 | BroadcomBluetoothHostControllerUSBTransport 649 | IOProbeScore 650 | 3000 651 | IOProviderClass 652 | IOUSBHostDevice 653 | idProduct 654 | 8556 655 | idVendor 656 | 2652 657 | 658 | 0a5c_216d 659 | 660 | CFBundleIdentifier 661 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 662 | IOClass 663 | BroadcomBluetoothHostControllerUSBTransport 664 | IOProbeScore 665 | 3000 666 | IOProviderClass 667 | IOUSBHostDevice 668 | idProduct 669 | 8557 670 | idVendor 671 | 2652 672 | 673 | 0a5c_216e 674 | 675 | CFBundleIdentifier 676 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 677 | IOClass 678 | BroadcomBluetoothHostControllerUSBTransport 679 | IOProbeScore 680 | 3000 681 | IOProviderClass 682 | IOUSBHostDevice 683 | idProduct 684 | 8558 685 | idVendor 686 | 2652 687 | 688 | 0a5c_216f 689 | 690 | CFBundleIdentifier 691 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 692 | IOClass 693 | BroadcomBluetoothHostControllerUSBTransport 694 | IOProbeScore 695 | 3000 696 | IOProviderClass 697 | IOUSBHostDevice 698 | idProduct 699 | 8559 700 | idVendor 701 | 2652 702 | 703 | 0a5c_217d 704 | 705 | CFBundleIdentifier 706 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 707 | IOClass 708 | BroadcomBluetoothHostControllerUSBTransport 709 | IOProbeScore 710 | 3000 711 | IOProviderClass 712 | IOUSBHostDevice 713 | idProduct 714 | 8573 715 | idVendor 716 | 2652 717 | 718 | 0a5c_21d7 719 | 720 | CFBundleIdentifier 721 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 722 | IOClass 723 | BroadcomBluetoothHostControllerUSBTransport 724 | IOProbeScore 725 | 3000 726 | IOProviderClass 727 | IOUSBHostDevice 728 | idProduct 729 | 8663 730 | idVendor 731 | 2652 732 | 733 | 0a5c_21de 734 | 735 | CFBundleIdentifier 736 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 737 | IOClass 738 | BroadcomBluetoothHostControllerUSBTransport 739 | IOProbeScore 740 | 3000 741 | IOProviderClass 742 | IOUSBHostDevice 743 | idProduct 744 | 8670 745 | idVendor 746 | 2652 747 | 748 | 0a5c_21e1 749 | 750 | CFBundleIdentifier 751 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 752 | IOClass 753 | BroadcomBluetoothHostControllerUSBTransport 754 | IOProbeScore 755 | 3000 756 | IOProviderClass 757 | IOUSBHostDevice 758 | idProduct 759 | 8673 760 | idVendor 761 | 2652 762 | 763 | 0a5c_21e3 764 | 765 | CFBundleIdentifier 766 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 767 | IOClass 768 | BroadcomBluetoothHostControllerUSBTransport 769 | IOProbeScore 770 | 3000 771 | IOProviderClass 772 | IOUSBHostDevice 773 | idProduct 774 | 8675 775 | idVendor 776 | 2652 777 | 778 | 0a5c_21e6 779 | 780 | CFBundleIdentifier 781 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 782 | IOClass 783 | BroadcomBluetoothHostControllerUSBTransport 784 | IOProbeScore 785 | 3000 786 | IOProviderClass 787 | IOUSBHostDevice 788 | idProduct 789 | 8678 790 | idVendor 791 | 2652 792 | 793 | 0a5c_21e8 794 | 795 | CFBundleIdentifier 796 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 797 | IOClass 798 | BroadcomBluetoothHostControllerUSBTransport 799 | IOProbeScore 800 | 3000 801 | IOProviderClass 802 | IOUSBHostDevice 803 | idProduct 804 | 8680 805 | idVendor 806 | 2652 807 | 808 | 0a5c_21ec 809 | 810 | CFBundleIdentifier 811 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 812 | IOClass 813 | BroadcomBluetoothHostControllerUSBTransport 814 | IOProbeScore 815 | 3000 816 | IOProviderClass 817 | IOUSBHostDevice 818 | idProduct 819 | 8684 820 | idVendor 821 | 2652 822 | 823 | 0a5c_21f1 824 | 825 | CFBundleIdentifier 826 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 827 | IOClass 828 | BroadcomBluetoothHostControllerUSBTransport 829 | IOProbeScore 830 | 3000 831 | IOProviderClass 832 | IOUSBHostDevice 833 | idProduct 834 | 8689 835 | idVendor 836 | 2652 837 | 838 | 0a5c_21f3 839 | 840 | CFBundleIdentifier 841 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 842 | IOClass 843 | BroadcomBluetoothHostControllerUSBTransport 844 | IOProbeScore 845 | 3000 846 | IOProviderClass 847 | IOUSBHostDevice 848 | idProduct 849 | 8691 850 | idVendor 851 | 2652 852 | 853 | 0a5c_21f4 854 | 855 | CFBundleIdentifier 856 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 857 | IOClass 858 | BroadcomBluetoothHostControllerUSBTransport 859 | IOProbeScore 860 | 3000 861 | IOProviderClass 862 | IOUSBHostDevice 863 | idProduct 864 | 8692 865 | idVendor 866 | 2652 867 | 868 | 0a5c_21fb 869 | 870 | CFBundleIdentifier 871 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 872 | IOClass 873 | BroadcomBluetoothHostControllerUSBTransport 874 | IOProbeScore 875 | 3000 876 | IOProviderClass 877 | IOUSBHostDevice 878 | idProduct 879 | 8699 880 | idVendor 881 | 2652 882 | 883 | 0a5c_21fd 884 | 885 | CFBundleIdentifier 886 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 887 | IOClass 888 | BroadcomBluetoothHostControllerUSBTransport 889 | IOProbeScore 890 | 3000 891 | IOProviderClass 892 | IOUSBHostDevice 893 | idProduct 894 | 8701 895 | idVendor 896 | 2652 897 | 898 | 0a5c_22be 899 | 900 | CFBundleIdentifier 901 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 902 | IOClass 903 | BroadcomBluetoothHostControllerUSBTransport 904 | IOProbeScore 905 | 3000 906 | IOProviderClass 907 | IOUSBHostDevice 908 | idProduct 909 | 8894 910 | idVendor 911 | 2652 912 | 913 | 0a5c_640b 914 | 915 | CFBundleIdentifier 916 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 917 | IOClass 918 | BroadcomBluetoothHostControllerUSBTransport 919 | IOProbeScore 920 | 3000 921 | IOProviderClass 922 | IOUSBHostDevice 923 | idProduct 924 | 25611 925 | idVendor 926 | 2652 927 | 928 | 0a5c_6410 929 | 930 | CFBundleIdentifier 931 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 932 | IOClass 933 | BroadcomBluetoothHostControllerUSBTransport 934 | IOProbeScore 935 | 3000 936 | IOProviderClass 937 | IOUSBHostDevice 938 | idProduct 939 | 25616 940 | idVendor 941 | 2652 942 | 943 | 0a5c_6412 944 | 945 | CFBundleIdentifier 946 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 947 | IOClass 948 | BroadcomBluetoothHostControllerUSBTransport 949 | IOProbeScore 950 | 3000 951 | IOProviderClass 952 | IOUSBHostDevice 953 | idProduct 954 | 25618 955 | idVendor 956 | 2652 957 | 958 | 0a5c_6413 959 | 960 | CFBundleIdentifier 961 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 962 | IOClass 963 | BroadcomBluetoothHostControllerUSBTransport 964 | IOProbeScore 965 | 3000 966 | IOProviderClass 967 | IOUSBHostDevice 968 | idProduct 969 | 25619 970 | idVendor 971 | 2652 972 | 973 | 0a5c_6414 974 | 975 | CFBundleIdentifier 976 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 977 | IOClass 978 | BroadcomBluetoothHostControllerUSBTransport 979 | IOProbeScore 980 | 3000 981 | IOProviderClass 982 | IOUSBHostDevice 983 | idProduct 984 | 25620 985 | idVendor 986 | 2652 987 | 988 | 0a5c_6417 989 | 990 | CFBundleIdentifier 991 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 992 | IOClass 993 | BroadcomBluetoothHostControllerUSBTransport 994 | IOProbeScore 995 | 3000 996 | IOProviderClass 997 | IOUSBHostDevice 998 | idProduct 999 | 25623 1000 | idVendor 1001 | 2652 1002 | 1003 | 0a5c_6418 1004 | 1005 | CFBundleIdentifier 1006 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1007 | IOClass 1008 | BroadcomBluetoothHostControllerUSBTransport 1009 | IOProbeScore 1010 | 3000 1011 | IOProviderClass 1012 | IOUSBHostDevice 1013 | idProduct 1014 | 25624 1015 | idVendor 1016 | 2652 1017 | 1018 | 0a5c_7460 1019 | 1020 | CFBundleIdentifier 1021 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1022 | IOClass 1023 | BroadcomBluetoothHostControllerUSBTransport 1024 | IOProbeScore 1025 | 3000 1026 | IOProviderClass 1027 | IOUSBHostDevice 1028 | idProduct 1029 | 29792 1030 | idVendor 1031 | 2652 1032 | 1033 | 0a5c_828d 1034 | 1035 | CFBundleIdentifier 1036 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1037 | IOClass 1038 | BroadcomBluetoothHostControllerUSBTransport 1039 | IOProbeScore 1040 | 3000 1041 | IOProviderClass 1042 | IOUSBHostDevice 1043 | idProduct 1044 | 33421 1045 | idVendor 1046 | 2652 1047 | 1048 | 0b05_178a 1049 | 1050 | CFBundleIdentifier 1051 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1052 | IOClass 1053 | BroadcomBluetoothHostControllerUSBTransport 1054 | IOProbeScore 1055 | 3000 1056 | IOProviderClass 1057 | IOUSBHostDevice 1058 | idProduct 1059 | 6026 1060 | idVendor 1061 | 2821 1062 | 1063 | 0b05_17b5 1064 | 1065 | CFBundleIdentifier 1066 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1067 | IOClass 1068 | BroadcomBluetoothHostControllerUSBTransport 1069 | IOProbeScore 1070 | 3000 1071 | IOProviderClass 1072 | IOUSBHostDevice 1073 | idProduct 1074 | 6069 1075 | idVendor 1076 | 2821 1077 | 1078 | 0b05_17cb 1079 | 1080 | CFBundleIdentifier 1081 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1082 | IOClass 1083 | BroadcomBluetoothHostControllerUSBTransport 1084 | IOProbeScore 1085 | 3000 1086 | IOProviderClass 1087 | IOUSBHostDevice 1088 | idProduct 1089 | 6091 1090 | idVendor 1091 | 2821 1092 | 1093 | 0b05_17cf 1094 | 1095 | CFBundleIdentifier 1096 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1097 | IOClass 1098 | BroadcomBluetoothHostControllerUSBTransport 1099 | IOProbeScore 1100 | 3000 1101 | IOProviderClass 1102 | IOUSBHostDevice 1103 | idProduct 1104 | 6095 1105 | idVendor 1106 | 2821 1107 | 1108 | 0b05_180a 1109 | 1110 | CFBundleIdentifier 1111 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1112 | IOClass 1113 | BroadcomBluetoothHostControllerUSBTransport 1114 | IOProbeScore 1115 | 3000 1116 | IOProviderClass 1117 | IOUSBHostDevice 1118 | idProduct 1119 | 6154 1120 | idVendor 1121 | 2821 1122 | 1123 | 0bb4_0306 1124 | 1125 | CFBundleIdentifier 1126 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1127 | IOClass 1128 | BroadcomBluetoothHostControllerUSBTransport 1129 | IOProbeScore 1130 | 3000 1131 | IOProviderClass 1132 | IOUSBHostDevice 1133 | idProduct 1134 | 774 1135 | idVendor 1136 | 2996 1137 | 1138 | 105b_e065 1139 | 1140 | CFBundleIdentifier 1141 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1142 | IOClass 1143 | BroadcomBluetoothHostControllerUSBTransport 1144 | IOProbeScore 1145 | 3000 1146 | IOProviderClass 1147 | IOUSBHostDevice 1148 | idProduct 1149 | 57445 1150 | idVendor 1151 | 4187 1152 | 1153 | 105b_e066 1154 | 1155 | CFBundleIdentifier 1156 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1157 | IOClass 1158 | BroadcomBluetoothHostControllerUSBTransport 1159 | IOProbeScore 1160 | 3000 1161 | IOProviderClass 1162 | IOUSBHostDevice 1163 | idProduct 1164 | 57446 1165 | idVendor 1166 | 4187 1167 | 1168 | 13d3_3295 no firmware 1169 | 1170 | CFBundleIdentifier 1171 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1172 | IOClass 1173 | BroadcomBluetoothHostControllerUSBTransport 1174 | IOProbeScore 1175 | 3000 1176 | IOProviderClass 1177 | IOUSBHostDevice 1178 | idProduct 1179 | 12949 1180 | idVendor 1181 | 5075 1182 | 1183 | 13d3_3384 1184 | 1185 | CFBundleIdentifier 1186 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1187 | IOClass 1188 | BroadcomBluetoothHostControllerUSBTransport 1189 | IOProbeScore 1190 | 3000 1191 | IOProviderClass 1192 | IOUSBHostDevice 1193 | idProduct 1194 | 13188 1195 | idVendor 1196 | 5075 1197 | 1198 | 13d3_3388 1199 | 1200 | CFBundleIdentifier 1201 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1202 | IOClass 1203 | BroadcomBluetoothHostControllerUSBTransport 1204 | IOProbeScore 1205 | 3000 1206 | IOProviderClass 1207 | IOUSBHostDevice 1208 | idProduct 1209 | 13192 1210 | idVendor 1211 | 5075 1212 | 1213 | 13d3_3389 1214 | 1215 | CFBundleIdentifier 1216 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1217 | IOClass 1218 | BroadcomBluetoothHostControllerUSBTransport 1219 | IOProbeScore 1220 | 3000 1221 | IOProviderClass 1222 | IOUSBHostDevice 1223 | idProduct 1224 | 13193 1225 | idVendor 1226 | 5075 1227 | 1228 | 13d3_3392 1229 | 1230 | CFBundleIdentifier 1231 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1232 | IOClass 1233 | BroadcomBluetoothHostControllerUSBTransport 1234 | IOProbeScore 1235 | 3000 1236 | IOProviderClass 1237 | IOUSBHostDevice 1238 | idProduct 1239 | 13202 1240 | idVendor 1241 | 5075 1242 | 1243 | 13d3_3404 1244 | 1245 | CFBundleIdentifier 1246 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1247 | IOClass 1248 | BroadcomBluetoothHostControllerUSBTransport 1249 | IOProbeScore 1250 | 3000 1251 | IOProviderClass 1252 | IOUSBHostDevice 1253 | idProduct 1254 | 13316 1255 | idVendor 1256 | 5075 1257 | 1258 | 13d3_3411 1259 | 1260 | CFBundleIdentifier 1261 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1262 | IOClass 1263 | BroadcomBluetoothHostControllerUSBTransport 1264 | IOProbeScore 1265 | 3000 1266 | IOProviderClass 1267 | IOUSBHostDevice 1268 | idProduct 1269 | 13329 1270 | idVendor 1271 | 5075 1272 | 1273 | 13d3_3413 1274 | 1275 | CFBundleIdentifier 1276 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1277 | IOClass 1278 | BroadcomBluetoothHostControllerUSBTransport 1279 | IOProbeScore 1280 | 3000 1281 | IOProviderClass 1282 | IOUSBHostDevice 1283 | idProduct 1284 | 13331 1285 | idVendor 1286 | 5075 1287 | 1288 | 13d3_3418 1289 | 1290 | CFBundleIdentifier 1291 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1292 | IOClass 1293 | BroadcomBluetoothHostControllerUSBTransport 1294 | IOProbeScore 1295 | 3000 1296 | IOProviderClass 1297 | IOUSBHostDevice 1298 | idProduct 1299 | 13336 1300 | idVendor 1301 | 5075 1302 | 1303 | 13d3_3427 1304 | 1305 | CFBundleIdentifier 1306 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1307 | IOClass 1308 | BroadcomBluetoothHostControllerUSBTransport 1309 | IOProbeScore 1310 | 3000 1311 | IOProviderClass 1312 | IOUSBHostDevice 1313 | idProduct 1314 | 13351 1315 | idVendor 1316 | 5075 1317 | 1318 | 13d3_3435 1319 | 1320 | CFBundleIdentifier 1321 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1322 | IOClass 1323 | BroadcomBluetoothHostControllerUSBTransport 1324 | IOProbeScore 1325 | 3000 1326 | IOProviderClass 1327 | IOUSBHostDevice 1328 | idProduct 1329 | 13365 1330 | idVendor 1331 | 5075 1332 | 1333 | 13d3_3456 1334 | 1335 | CFBundleIdentifier 1336 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1337 | IOClass 1338 | BroadcomBluetoothHostControllerUSBTransport 1339 | IOProbeScore 1340 | 3000 1341 | IOProviderClass 1342 | IOUSBHostDevice 1343 | idProduct 1344 | 13398 1345 | idVendor 1346 | 5075 1347 | 1348 | 13d3_3482 1349 | 1350 | CFBundleIdentifier 1351 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1352 | IOClass 1353 | BroadcomBluetoothHostControllerUSBTransport 1354 | IOProbeScore 1355 | 3000 1356 | IOProviderClass 1357 | IOUSBHostDevice 1358 | idProduct 1359 | 13442 1360 | idVendor 1361 | 5075 1362 | 1363 | 13d3_3484 1364 | 1365 | CFBundleIdentifier 1366 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1367 | IOClass 1368 | BroadcomBluetoothHostControllerUSBTransport 1369 | IOProbeScore 1370 | 3000 1371 | IOProviderClass 1372 | IOUSBHostDevice 1373 | idProduct 1374 | 13444 1375 | idVendor 1376 | 5075 1377 | 1378 | 13d3_3504 1379 | 1380 | CFBundleIdentifier 1381 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1382 | IOClass 1383 | BroadcomBluetoothHostControllerUSBTransport 1384 | IOProbeScore 1385 | 3000 1386 | IOProviderClass 1387 | IOUSBHostDevice 1388 | idProduct 1389 | 13572 1390 | idVendor 1391 | 5075 1392 | 1393 | 13d3_3508 1394 | 1395 | CFBundleIdentifier 1396 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1397 | IOClass 1398 | BroadcomBluetoothHostControllerUSBTransport 1399 | IOProbeScore 1400 | 3000 1401 | IOProviderClass 1402 | IOUSBHostDevice 1403 | idProduct 1404 | 13576 1405 | idVendor 1406 | 5075 1407 | 1408 | 13d3_3517 1409 | 1410 | CFBundleIdentifier 1411 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1412 | IOClass 1413 | BroadcomBluetoothHostControllerUSBTransport 1414 | IOProbeScore 1415 | 3000 1416 | IOProviderClass 1417 | IOUSBHostDevice 1418 | idProduct 1419 | 13591 1420 | idVendor 1421 | 5075 1422 | 1423 | 145f_01a3 1424 | 1425 | CFBundleIdentifier 1426 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1427 | IOClass 1428 | BroadcomBluetoothHostControllerUSBTransport 1429 | IOProbeScore 1430 | 3000 1431 | IOProviderClass 1432 | IOUSBHostDevice 1433 | idProduct 1434 | 419 1435 | idVendor 1436 | 5215 1437 | 1438 | 19ff_0239 1439 | 1440 | CFBundleIdentifier 1441 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1442 | IOClass 1443 | BroadcomBluetoothHostControllerUSBTransport 1444 | IOProbeScore 1445 | 3000 1446 | IOProviderClass 1447 | IOUSBHostDevice 1448 | idProduct 1449 | 569 1450 | idVendor 1451 | 6655 1452 | 1453 | 33ba_03e8 no firmware 1454 | 1455 | CFBundleIdentifier 1456 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1457 | IOClass 1458 | BroadcomBluetoothHostControllerUSBTransport 1459 | IOProbeScore 1460 | 3000 1461 | IOProviderClass 1462 | IOUSBHostDevice 1463 | idProduct 1464 | 1000 1465 | idVendor 1466 | 13242 1467 | 1468 | 33ba_03e9 no firmware 1469 | 1470 | CFBundleIdentifier 1471 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1472 | IOClass 1473 | BroadcomBluetoothHostControllerUSBTransport 1474 | IOProbeScore 1475 | 3000 1476 | IOProviderClass 1477 | IOUSBHostDevice 1478 | idProduct 1479 | 1001 1480 | idVendor 1481 | 13242 1482 | 1483 | 413c_8143 1484 | 1485 | CFBundleIdentifier 1486 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1487 | IOClass 1488 | BroadcomBluetoothHostControllerUSBTransport 1489 | IOProbeScore 1490 | 3000 1491 | IOProviderClass 1492 | IOUSBHostDevice 1493 | idProduct 1494 | 33091 1495 | idVendor 1496 | 16700 1497 | 1498 | 413c_8197 1499 | 1500 | CFBundleIdentifier 1501 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 1502 | IOClass 1503 | BroadcomBluetoothHostControllerUSBTransport 1504 | IOProbeScore 1505 | 3000 1506 | IOProviderClass 1507 | IOUSBHostDevice 1508 | idProduct 1509 | 33175 1510 | idVendor 1511 | 16700 1512 | 1513 | 1514 | LSMinimumSystemVersion 1515 | 10.8 1516 | OSBundleRequired 1517 | Root 1518 | 1519 | 1520 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G817 7 | CFBundleExecutable 8 | BrcmFirmwareData 9 | CFBundleIdentifier 10 | as.acidanthera.BrcmFirmwareStore 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | BrcmFirmwareData 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 2.6.4 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | BrcmFirmwareStore 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BrcmFirmwareStore 49 | IOClass 50 | BrcmFirmwareStore 51 | IOMatchCategory 52 | BrcmFirmwareStore 53 | IOProviderClass 54 | IOResources 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.8 59 | OSBundleCompatibleVersion 60 | 2.6.4 61 | OSBundleLibraries 62 | 63 | com.apple.kpi.iokit 64 | 9.0 65 | com.apple.kpi.libkern 66 | 9.0 67 | com.apple.kpi.mach 68 | 9.0 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G817 7 | CFBundleExecutable 8 | BrcmPatchRAM 9 | CFBundleIdentifier 10 | as.acidanthera.BrcmPatchRAM 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | BrcmPatchRAM 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 2.6.4 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 13C100 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 12.1 35 | DTSDKBuild 36 | 21C46 37 | DTSDKName 38 | macosx12.1 39 | DTXcode 40 | 1321 41 | DTXcodeBuild 42 | 13C100 43 | IOKitPersonalities 44 | 45 | 0489_e032 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BrcmPatchRAM 49 | DisplayName 50 | Broadcom Bluetooth 4.0 USB 51 | FirmwareKey 52 | BCM20702A1_001.002.014.1443.1485_v5581 53 | IOClass 54 | BrcmPatchRAM 55 | IOMatchCategory 56 | BrcmPatchRAM 57 | IOProbeScore 58 | 4000 59 | IOProviderClass 60 | IOUSBDevice 61 | idProduct 62 | 57394 63 | idVendor 64 | 1161 65 | 66 | 0489_e042 67 | 68 | CFBundleIdentifier 69 | as.acidanthera.BrcmPatchRAM 70 | DisplayName 71 | Broadcom Bluetooth 4.0 USB 72 | FirmwareKey 73 | BCM20702A1_001.002.014.1443.1484_v5580 74 | IOClass 75 | BrcmPatchRAM 76 | IOMatchCategory 77 | BrcmPatchRAM 78 | IOProbeScore 79 | 4000 80 | IOProviderClass 81 | IOUSBDevice 82 | idProduct 83 | 57410 84 | idVendor 85 | 1161 86 | 87 | 0489_e046 88 | 89 | CFBundleIdentifier 90 | as.acidanthera.BrcmPatchRAM 91 | DisplayName 92 | Bluetooth USB module 93 | FirmwareKey 94 | BCM20702A1_001.002.014.1443.1465_v5561 95 | IOClass 96 | BrcmPatchRAM 97 | IOMatchCategory 98 | BrcmPatchRAM 99 | IOProbeScore 100 | 4000 101 | IOProviderClass 102 | IOUSBDevice 103 | idProduct 104 | 57414 105 | idVendor 106 | 1161 107 | 108 | 0489_e04f 109 | 110 | CFBundleIdentifier 111 | as.acidanthera.BrcmPatchRAM 112 | DisplayName 113 | Broadcom Bluetooth 4.0 USB 114 | FirmwareKey 115 | BCM20702A1_001.002.014.1443.1486_v5582 116 | IOClass 117 | BrcmPatchRAM 118 | IOMatchCategory 119 | BrcmPatchRAM 120 | IOProbeScore 121 | 4000 122 | IOProviderClass 123 | IOUSBDevice 124 | idProduct 125 | 57423 126 | idVendor 127 | 1161 128 | 129 | 0489_e052 130 | 131 | CFBundleIdentifier 132 | as.acidanthera.BrcmPatchRAM 133 | DisplayName 134 | Broadcom BCM20702 Bluetooth USB Device 135 | FirmwareKey 136 | BCM20702A1_001.002.014.1502.1758_v5854 137 | IOClass 138 | BrcmPatchRAM 139 | IOMatchCategory 140 | BrcmPatchRAM 141 | IOProbeScore 142 | 4000 143 | IOProviderClass 144 | IOUSBDevice 145 | idProduct 146 | 57426 147 | idVendor 148 | 1161 149 | 150 | 0489_e055 151 | 152 | CFBundleIdentifier 153 | as.acidanthera.BrcmPatchRAM 154 | DisplayName 155 | Bluetooth USB module 156 | FirmwareKey 157 | BCM43142A0_001.001.011.0311.0331_v4427 158 | IOClass 159 | BrcmPatchRAM 160 | IOMatchCategory 161 | BrcmPatchRAM 162 | IOProbeScore 163 | 4000 164 | IOProviderClass 165 | IOUSBDevice 166 | idProduct 167 | 57429 168 | idVendor 169 | 1161 170 | 171 | 0489_e059 172 | 173 | CFBundleIdentifier 174 | as.acidanthera.BrcmPatchRAM 175 | DisplayName 176 | Bluetooth USB module 177 | FirmwareKey 178 | BCM20702A1_001.002.014.1443.1466_v5562 179 | IOClass 180 | BrcmPatchRAM 181 | IOMatchCategory 182 | BrcmPatchRAM 183 | IOProbeScore 184 | 4000 185 | IOProviderClass 186 | IOUSBDevice 187 | idProduct 188 | 57433 189 | idVendor 190 | 1161 191 | 192 | 0489_e062 193 | 194 | CFBundleIdentifier 195 | as.acidanthera.BrcmPatchRAM 196 | DisplayName 197 | BCM43142 Bluetooth Adapter 198 | FirmwareKey 199 | BCM43142A0_001.001.011.0277.0280_v4376 200 | IOClass 201 | BrcmPatchRAM 202 | IOMatchCategory 203 | BrcmPatchRAM 204 | IOProbeScore 205 | 4000 206 | IOProviderClass 207 | IOUSBDevice 208 | idProduct 209 | 57442 210 | idVendor 211 | 1161 212 | 213 | 0489_e079 214 | 215 | CFBundleIdentifier 216 | as.acidanthera.BrcmPatchRAM 217 | DisplayName 218 | Broadcom Bluetooth 4.0 USB 219 | FirmwareKey 220 | BCM4335C0_003.001.009.0066.0115_v4211 221 | IOClass 222 | BrcmPatchRAM 223 | IOMatchCategory 224 | BrcmPatchRAM 225 | IOProbeScore 226 | 4000 227 | IOProviderClass 228 | IOUSBDevice 229 | idProduct 230 | 57465 231 | idVendor 232 | 1161 233 | 234 | 0489_e07a 235 | 236 | CFBundleIdentifier 237 | as.acidanthera.BrcmPatchRAM 238 | DisplayName 239 | Broadcom Bluetooth 4.0 USB 240 | FirmwareKey 241 | BCM20702A1_001.002.014.1483.1651_v5747 242 | IOClass 243 | BrcmPatchRAM 244 | IOMatchCategory 245 | BrcmPatchRAM 246 | IOProbeScore 247 | 4000 248 | IOProviderClass 249 | IOUSBDevice 250 | idProduct 251 | 57466 252 | idVendor 253 | 1161 254 | 255 | 0489_e087 256 | 257 | CFBundleIdentifier 258 | as.acidanthera.BrcmPatchRAM 259 | DisplayName 260 | Bluetooth USB module 261 | FirmwareKey 262 | BCM20702A1_001.002.014.1443.1532_v5628 263 | IOClass 264 | BrcmPatchRAM 265 | IOMatchCategory 266 | BrcmPatchRAM 267 | IOProbeScore 268 | 4000 269 | IOProviderClass 270 | IOUSBDevice 271 | idProduct 272 | 57479 273 | idVendor 274 | 1161 275 | 276 | 0489_e096 277 | 278 | CFBundleIdentifier 279 | as.acidanthera.BrcmPatchRAM 280 | DisplayName 281 | Broadcom Bluetooth 4.0 USB 282 | FirmwareKey 283 | BCM43142A0_001.001.011.0311.0340_v4436 284 | IOClass 285 | BrcmPatchRAM 286 | IOMatchCategory 287 | BrcmPatchRAM 288 | IOProbeScore 289 | 4000 290 | IOProviderClass 291 | IOUSBDevice 292 | idProduct 293 | 57494 294 | idVendor 295 | 1161 296 | 297 | 0489_e0a1 298 | 299 | CFBundleIdentifier 300 | as.acidanthera.BrcmPatchRAM 301 | DisplayName 302 | Broadcom Bluetooth 4.1 USB 303 | FirmwareKey 304 | BCM20703A1_001.001.005.0214.0414_v4510 305 | IOClass 306 | BrcmPatchRAM 307 | IOMatchCategory 308 | BrcmPatchRAM 309 | IOProbeScore 310 | 4000 311 | IOProviderClass 312 | IOUSBDevice 313 | idProduct 314 | 57505 315 | idVendor 316 | 1161 317 | 318 | 04ca_2003 319 | 320 | CFBundleIdentifier 321 | as.acidanthera.BrcmPatchRAM 322 | DisplayName 323 | Broadcom Bluetooth 4.0 USB 324 | FirmwareKey 325 | BCM20702A1_001.002.014.1443.1488_v5584 326 | IOClass 327 | BrcmPatchRAM 328 | IOMatchCategory 329 | BrcmPatchRAM 330 | IOProbeScore 331 | 4000 332 | IOProviderClass 333 | IOUSBDevice 334 | idProduct 335 | 8195 336 | idVendor 337 | 1226 338 | 339 | 04ca_2004 340 | 341 | CFBundleIdentifier 342 | as.acidanthera.BrcmPatchRAM 343 | DisplayName 344 | Bluetooth USB module 345 | FirmwareKey 346 | BCM20702A1_001.002.014.1443.1489_v5585 347 | IOClass 348 | BrcmPatchRAM 349 | IOMatchCategory 350 | BrcmPatchRAM 351 | IOProbeScore 352 | 4000 353 | IOProviderClass 354 | IOUSBDevice 355 | idProduct 356 | 8196 357 | idVendor 358 | 1226 359 | 360 | 04ca_2005 361 | 362 | CFBundleIdentifier 363 | as.acidanthera.BrcmPatchRAM 364 | DisplayName 365 | Bluetooth Module 366 | FirmwareKey 367 | BCM20702A1_001.002.014.1443.1490_v5586 368 | IOClass 369 | BrcmPatchRAM 370 | IOMatchCategory 371 | BrcmPatchRAM 372 | IOProbeScore 373 | 4000 374 | IOProviderClass 375 | IOUSBDevice 376 | idProduct 377 | 8197 378 | idVendor 379 | 1226 380 | 381 | 04ca_2006 382 | 383 | CFBundleIdentifier 384 | as.acidanthera.BrcmPatchRAM 385 | DisplayName 386 | Bluetooth Module 387 | FirmwareKey 388 | BCM43142A0_001.001.011.0311.0327_v4423 389 | IOClass 390 | BrcmPatchRAM 391 | IOMatchCategory 392 | BrcmPatchRAM 393 | IOProbeScore 394 | 4000 395 | IOProviderClass 396 | IOUSBDevice 397 | idProduct 398 | 8198 399 | idVendor 400 | 1226 401 | 402 | 04ca_2007 403 | 404 | CFBundleIdentifier 405 | as.acidanthera.BrcmPatchRAM 406 | DisplayName 407 | Broadcom Bluetooth 4.0 408 | FirmwareKey 409 | BCM43142A0_001.001.011.0277.0279_v4375 410 | IOClass 411 | BrcmPatchRAM 412 | IOMatchCategory 413 | BrcmPatchRAM 414 | IOProbeScore 415 | 4000 416 | IOProviderClass 417 | IOUSBDevice 418 | idProduct 419 | 8199 420 | idVendor 421 | 1226 422 | 423 | 04ca_2009 424 | 425 | CFBundleIdentifier 426 | as.acidanthera.BrcmPatchRAM 427 | DisplayName 428 | Bluetooth USB module 429 | FirmwareKey 430 | BCM43142A0_001.001.011.0311.0330_v4426 431 | IOClass 432 | BrcmPatchRAM 433 | IOMatchCategory 434 | BrcmPatchRAM 435 | IOProbeScore 436 | 4000 437 | IOProviderClass 438 | IOUSBDevice 439 | idProduct 440 | 8201 441 | idVendor 442 | 1226 443 | 444 | 04ca_200a 445 | 446 | CFBundleIdentifier 447 | as.acidanthera.BrcmPatchRAM 448 | DisplayName 449 | Bluetooth USB module 450 | FirmwareKey 451 | BCM20702A1_001.002.014.1443.1492_v5588 452 | IOClass 453 | BrcmPatchRAM 454 | IOMatchCategory 455 | BrcmPatchRAM 456 | IOProbeScore 457 | 4000 458 | IOProviderClass 459 | IOUSBDevice 460 | idProduct 461 | 8202 462 | idVendor 463 | 1226 464 | 465 | 04ca_200b 466 | 467 | CFBundleIdentifier 468 | as.acidanthera.BrcmPatchRAM 469 | DisplayName 470 | Broadcom Bluetooth 4.0 USB 471 | FirmwareKey 472 | BCM20702A1_001.002.014.1443.1493_v5589 473 | IOClass 474 | BrcmPatchRAM 475 | IOMatchCategory 476 | BrcmPatchRAM 477 | IOProbeScore 478 | 4000 479 | IOProviderClass 480 | IOUSBDevice 481 | idProduct 482 | 8203 483 | idVendor 484 | 1226 485 | 486 | 04ca_200c 487 | 488 | CFBundleIdentifier 489 | as.acidanthera.BrcmPatchRAM 490 | DisplayName 491 | Broadcom Bluetooth 4.0 USB 492 | FirmwareKey 493 | BCM20702A1_001.002.014.1443.1494_v5590 494 | IOClass 495 | BrcmPatchRAM 496 | IOMatchCategory 497 | BrcmPatchRAM 498 | IOProbeScore 499 | 4000 500 | IOProviderClass 501 | IOUSBDevice 502 | idProduct 503 | 8204 504 | idVendor 505 | 1226 506 | 507 | 04ca_200e 508 | 509 | CFBundleIdentifier 510 | as.acidanthera.BrcmPatchRAM 511 | DisplayName 512 | Bluetooth USB module 513 | FirmwareKey 514 | BCM20702A1_001.002.014.1443.1499_v5595 515 | IOClass 516 | BrcmPatchRAM 517 | IOMatchCategory 518 | BrcmPatchRAM 519 | IOProbeScore 520 | 4000 521 | IOProviderClass 522 | IOUSBDevice 523 | idProduct 524 | 8206 525 | idVendor 526 | 1226 527 | 528 | 04ca_200f 529 | 530 | CFBundleIdentifier 531 | as.acidanthera.BrcmPatchRAM 532 | DisplayName 533 | Broadcom Bluetooth 4.0 USB 534 | FirmwareKey 535 | BCM20702A1_001.002.014.1443.1521_v5617 536 | IOClass 537 | BrcmPatchRAM 538 | IOMatchCategory 539 | BrcmPatchRAM 540 | IOProbeScore 541 | 4000 542 | IOProviderClass 543 | IOUSBDevice 544 | idProduct 545 | 8207 546 | idVendor 547 | 1226 548 | 549 | 04ca_2012 550 | 551 | CFBundleIdentifier 552 | as.acidanthera.BrcmPatchRAM 553 | DisplayName 554 | Broadcom Bluetooth 4.0 USB 555 | FirmwareKey 556 | BCM43142A0_001.001.011.0311.0339_v4435 557 | IOClass 558 | BrcmPatchRAM 559 | IOMatchCategory 560 | BrcmPatchRAM 561 | IOProbeScore 562 | 4000 563 | IOProviderClass 564 | IOUSBDevice 565 | idProduct 566 | 8210 567 | idVendor 568 | 1226 569 | 570 | 04ca_2016 571 | 572 | CFBundleIdentifier 573 | as.acidanthera.BrcmPatchRAM 574 | DisplayName 575 | Broadcom Bluetooth 4.0 USB 576 | FirmwareKey 577 | BCM4335C0_003.001.009.0066.0121_v4217 578 | IOClass 579 | BrcmPatchRAM 580 | IOMatchCategory 581 | BrcmPatchRAM 582 | IOProbeScore 583 | 4000 584 | IOProviderClass 585 | IOUSBDevice 586 | idProduct 587 | 8214 588 | idVendor 589 | 1226 590 | 591 | 04f2_b49d 592 | 593 | CFBundleIdentifier 594 | as.acidanthera.BrcmPatchRAM 595 | DisplayName 596 | Bluetooth USB module 597 | FirmwareKey 598 | BCM43142A0_001.001.011.0277.0308_v4404 599 | IOClass 600 | BrcmPatchRAM 601 | IOMatchCategory 602 | BrcmPatchRAM 603 | IOProbeScore 604 | 4000 605 | IOProviderClass 606 | IOUSBDevice 607 | idProduct 608 | 46237 609 | idVendor 610 | 1266 611 | 612 | 04f2_b4a1 613 | 614 | CFBundleIdentifier 615 | as.acidanthera.BrcmPatchRAM 616 | DisplayName 617 | Bluetooth USB module 618 | FirmwareKey 619 | BCM43142A0_001.001.011.0311.0316_v4412 620 | IOClass 621 | BrcmPatchRAM 622 | IOMatchCategory 623 | BrcmPatchRAM 624 | IOProbeScore 625 | 4000 626 | IOProviderClass 627 | IOUSBDevice 628 | idProduct 629 | 46241 630 | idVendor 631 | 1266 632 | 633 | 050d_065a 634 | 635 | CFBundleIdentifier 636 | as.acidanthera.BrcmPatchRAM 637 | DisplayName 638 | Belkin Bluetooth 4.0 USB Adapter 639 | FirmwareKey 640 | BCM20702A1_001.002.014.1443.1482_v5578 641 | IOClass 642 | BrcmPatchRAM 643 | IOMatchCategory 644 | BrcmPatchRAM 645 | IOProbeScore 646 | 4000 647 | IOProviderClass 648 | IOUSBDevice 649 | idProduct 650 | 1626 651 | idVendor 652 | 1293 653 | 654 | 0930_021e 655 | 656 | CFBundleIdentifier 657 | as.acidanthera.BrcmPatchRAM 658 | DisplayName 659 | Broadcom BCM20702 Bluetooth USB Device 660 | FirmwareKey 661 | BCM20702A1_001.002.014.1502.1759_v5855 662 | IOClass 663 | BrcmPatchRAM 664 | IOMatchCategory 665 | BrcmPatchRAM 666 | IOProbeScore 667 | 4000 668 | IOProviderClass 669 | IOUSBDevice 670 | idProduct 671 | 542 672 | idVendor 673 | 2352 674 | 675 | 0930_021f 676 | 677 | CFBundleIdentifier 678 | as.acidanthera.BrcmPatchRAM 679 | DisplayName 680 | Bluetooth USB module 681 | FirmwareKey 682 | BCM43142A0_001.001.011.0311.0335_v4431 683 | IOClass 684 | BrcmPatchRAM 685 | IOMatchCategory 686 | BrcmPatchRAM 687 | IOProbeScore 688 | 4000 689 | IOProviderClass 690 | IOUSBDevice 691 | idProduct 692 | 543 693 | idVendor 694 | 2352 695 | 696 | 0930_0221 697 | 698 | CFBundleIdentifier 699 | as.acidanthera.BrcmPatchRAM 700 | DisplayName 701 | Broadcom BCM20702 Bluetooth 4.0 USB Device 702 | FirmwareKey 703 | BCM20702A1_001.002.014.1502.1762_v5858 704 | IOClass 705 | BrcmPatchRAM 706 | IOMatchCategory 707 | BrcmPatchRAM 708 | IOProbeScore 709 | 4000 710 | IOProviderClass 711 | IOUSBDevice 712 | idProduct 713 | 545 714 | idVendor 715 | 2352 716 | 717 | 0930_0223 718 | 719 | CFBundleIdentifier 720 | as.acidanthera.BrcmPatchRAM 721 | DisplayName 722 | Broadcom BCM20702 Bluetooth 4.0 USB Device 723 | FirmwareKey 724 | BCM20702A1_001.002.014.1502.1763_v5859 725 | IOClass 726 | BrcmPatchRAM 727 | IOMatchCategory 728 | BrcmPatchRAM 729 | IOProbeScore 730 | 4000 731 | IOProviderClass 732 | IOUSBDevice 733 | idProduct 734 | 547 735 | idVendor 736 | 2352 737 | 738 | 0930_0225 739 | 740 | CFBundleIdentifier 741 | as.acidanthera.BrcmPatchRAM 742 | DisplayName 743 | Broadcom Bluetooth 4.0 USB Device 744 | FirmwareKey 745 | BCM43142A0_001.001.011.0311.0334_v4430 746 | IOClass 747 | BrcmPatchRAM 748 | IOMatchCategory 749 | BrcmPatchRAM 750 | IOProbeScore 751 | 4000 752 | IOProviderClass 753 | IOUSBDevice 754 | idProduct 755 | 549 756 | idVendor 757 | 2352 758 | 759 | 0930_0226 760 | 761 | CFBundleIdentifier 762 | as.acidanthera.BrcmPatchRAM 763 | DisplayName 764 | Broadcom Bluetooth 4.0 USB Device 765 | FirmwareKey 766 | BCM43142A0_001.001.011.0311.0334_v4430 767 | IOClass 768 | BrcmPatchRAM 769 | IOMatchCategory 770 | BrcmPatchRAM 771 | IOProbeScore 772 | 4000 773 | IOProviderClass 774 | IOUSBDevice 775 | idProduct 776 | 550 777 | idVendor 778 | 2352 779 | 780 | 0930_0229 781 | 782 | CFBundleIdentifier 783 | as.acidanthera.BrcmPatchRAM 784 | DisplayName 785 | Broadcom Bluetooth 4.0 USB Device 786 | FirmwareKey 787 | BCM4335C0_003.001.009.0066.0104_v4200 788 | IOClass 789 | BrcmPatchRAM 790 | IOMatchCategory 791 | BrcmPatchRAM 792 | IOProbeScore 793 | 4000 794 | IOProviderClass 795 | IOUSBDevice 796 | idProduct 797 | 553 798 | idVendor 799 | 2352 800 | 801 | 0a5c_2167 802 | 803 | CFBundleIdentifier 804 | as.acidanthera.BrcmPatchRAM 805 | DisplayName 806 | BCM43142 Bluetooth 4.0 +HS USB Device 807 | FirmwareKey 808 | BCM43142A0_001.001.011.0249.0265_v4361 809 | IOClass 810 | BrcmPatchRAM 811 | IOMatchCategory 812 | BrcmPatchRAM 813 | IOProbeScore 814 | 4000 815 | IOProviderClass 816 | IOUSBDevice 817 | idProduct 818 | 8551 819 | idVendor 820 | 2652 821 | 822 | 0a5c_2168 823 | 824 | CFBundleIdentifier 825 | as.acidanthera.BrcmPatchRAM 826 | DisplayName 827 | BCM43162 Bluetooth 4.0 +HS USB Device 828 | FirmwareKey 829 | BCM4335C0_003.001.009.0066.0108_v4204 830 | IOClass 831 | BrcmPatchRAM 832 | IOMatchCategory 833 | BrcmPatchRAM 834 | IOProbeScore 835 | 4000 836 | IOProviderClass 837 | IOUSBDevice 838 | idProduct 839 | 8552 840 | idVendor 841 | 2652 842 | 843 | 0a5c_2169 844 | 845 | CFBundleIdentifier 846 | as.acidanthera.BrcmPatchRAM 847 | DisplayName 848 | Broadcom BCM20702 Bluetooth USB Device 849 | FirmwareKey 850 | BCM20702A1_001.002.014.1443.1462_v5558 851 | IOClass 852 | BrcmPatchRAM 853 | IOMatchCategory 854 | BrcmPatchRAM 855 | IOProbeScore 856 | 4000 857 | IOProviderClass 858 | IOUSBDevice 859 | idProduct 860 | 8553 861 | idVendor 862 | 2652 863 | 864 | 0a5c_216a 865 | 866 | CFBundleIdentifier 867 | as.acidanthera.BrcmPatchRAM 868 | DisplayName 869 | Dell Wireless 1708 Bluetooth 4.0 LE Device 870 | FirmwareKey 871 | BCM43142A0_001.001.011.0311.0336_v4432 872 | IOClass 873 | BrcmPatchRAM 874 | IOMatchCategory 875 | BrcmPatchRAM 876 | IOProbeScore 877 | 4000 878 | IOProviderClass 879 | IOUSBDevice 880 | idProduct 881 | 8554 882 | idVendor 883 | 2652 884 | 885 | 0a5c_216b 886 | 887 | CFBundleIdentifier 888 | as.acidanthera.BrcmPatchRAM 889 | DisplayName 890 | Broadcom 20702 Bluetooth 4.0 Adapter 891 | FirmwareKey 892 | BCM20702A1_001.002.014.1502.1768_v5864 893 | IOClass 894 | BrcmPatchRAM 895 | IOMatchCategory 896 | BrcmPatchRAM 897 | IOProbeScore 898 | 4000 899 | IOProviderClass 900 | IOUSBDevice 901 | idProduct 902 | 8555 903 | idVendor 904 | 2652 905 | 906 | 0a5c_216c 907 | 908 | CFBundleIdentifier 909 | as.acidanthera.BrcmPatchRAM 910 | DisplayName 911 | Broadcom 43142 Bluetooth 4.0 Adapter 912 | FirmwareKey 913 | BCM43142A0_001.001.011.0311.0328_v4424 914 | IOClass 915 | BrcmPatchRAM 916 | IOMatchCategory 917 | BrcmPatchRAM 918 | IOProbeScore 919 | 4000 920 | IOProviderClass 921 | IOUSBDevice 922 | idProduct 923 | 8556 924 | idVendor 925 | 2652 926 | 927 | 0a5c_216d 928 | 929 | CFBundleIdentifier 930 | as.acidanthera.BrcmPatchRAM 931 | DisplayName 932 | Broadcom 43142 Bluetooth 4.0 Adapter 933 | FirmwareKey 934 | BCM43142A0_001.001.011.0311.0329_v4425 935 | IOClass 936 | BrcmPatchRAM 937 | IOMatchCategory 938 | BrcmPatchRAM 939 | IOProbeScore 940 | 4000 941 | IOProviderClass 942 | IOUSBDevice 943 | idProduct 944 | 8557 945 | idVendor 946 | 2652 947 | 948 | 0a5c_216e 949 | 950 | CFBundleIdentifier 951 | as.acidanthera.BrcmPatchRAM 952 | DisplayName 953 | Broadcom 43162 Bluetooth 4.0 Adapter 954 | FirmwareKey 955 | BCM4335C0_003.001.009.0066.0105_v4201 956 | IOClass 957 | BrcmPatchRAM 958 | IOMatchCategory 959 | BrcmPatchRAM 960 | IOProbeScore 961 | 4000 962 | IOProviderClass 963 | IOUSBDevice 964 | idProduct 965 | 8558 966 | idVendor 967 | 2652 968 | 969 | 0a5c_216f 970 | 971 | CFBundleIdentifier 972 | as.acidanthera.BrcmPatchRAM 973 | DisplayName 974 | DW1560 Bluetooth 4.0 LE 975 | FirmwareKey 976 | BCM20702A1_001.002.014.1443.1572_v5668 977 | IOClass 978 | BrcmPatchRAM 979 | IOMatchCategory 980 | BrcmPatchRAM 981 | IOProbeScore 982 | 4000 983 | IOProviderClass 984 | IOUSBDevice 985 | idProduct 986 | 8559 987 | idVendor 988 | 2652 989 | 990 | 0a5c_21d3 991 | 992 | CFBundleIdentifier 993 | as.acidanthera.BrcmPatchRAM 994 | DisplayName 995 | BCM43142 Bluetooth 4.0 +HS USB Device 996 | FirmwareKey 997 | BCM43142A0_001.001.011.0197.0218_v4314 998 | IOClass 999 | BrcmPatchRAM 1000 | IOMatchCategory 1001 | BrcmPatchRAM 1002 | IOProbeScore 1003 | 4000 1004 | IOProviderClass 1005 | IOUSBDevice 1006 | idProduct 1007 | 8659 1008 | idVendor 1009 | 2652 1010 | 1011 | 0a5c_21d6 1012 | 1013 | CFBundleIdentifier 1014 | as.acidanthera.BrcmPatchRAM 1015 | DisplayName 1016 | BCM43142 Bluetooth 4.0 +HS USB Device 1017 | FirmwareKey 1018 | BCM43142A0_001.001.011.0197.0220_v4316 1019 | IOClass 1020 | BrcmPatchRAM 1021 | IOMatchCategory 1022 | BrcmPatchRAM 1023 | IOProbeScore 1024 | 4000 1025 | IOProviderClass 1026 | IOUSBDevice 1027 | idProduct 1028 | 8662 1029 | idVendor 1030 | 2652 1031 | 1032 | 0a5c_21d7 1033 | 1034 | CFBundleIdentifier 1035 | as.acidanthera.BrcmPatchRAM 1036 | DisplayName 1037 | Dell Wireless 1704 Bluetooth v4.0+HS 1038 | FirmwareKey 1039 | BCM43142A0_001.001.011.0311.0341_v4437 1040 | IOClass 1041 | BrcmPatchRAM 1042 | IOMatchCategory 1043 | BrcmPatchRAM 1044 | IOProbeScore 1045 | 4000 1046 | IOProviderClass 1047 | IOUSBDevice 1048 | idProduct 1049 | 8663 1050 | idVendor 1051 | 2652 1052 | 1053 | 0a5c_21d8 1054 | 1055 | CFBundleIdentifier 1056 | as.acidanthera.BrcmPatchRAM 1057 | DisplayName 1058 | BCM43142 Bluetooth 4.0 +HS USB Device 1059 | FirmwareKey 1060 | BCM43142A0_001.001.011.0197.0222_v4318 1061 | IOClass 1062 | BrcmPatchRAM 1063 | IOMatchCategory 1064 | BrcmPatchRAM 1065 | IOProbeScore 1066 | 4000 1067 | IOProviderClass 1068 | IOUSBDevice 1069 | idProduct 1070 | 8664 1071 | idVendor 1072 | 2652 1073 | 1074 | 0a5c_21dc 1075 | 1076 | CFBundleIdentifier 1077 | as.acidanthera.BrcmPatchRAM 1078 | DisplayName 1079 | Broadcom 43142 Bluetooth 4.0 Adapter 1080 | FirmwareKey 1081 | BCM43142A0_001.001.011.0161.0187_v4283 1082 | IOClass 1083 | BrcmPatchRAM 1084 | IOMatchCategory 1085 | BrcmPatchRAM 1086 | IOProbeScore 1087 | 4000 1088 | IOProviderClass 1089 | IOUSBDevice 1090 | idProduct 1091 | 8668 1092 | idVendor 1093 | 2652 1094 | 1095 | 0a5c_21de 1096 | 1097 | CFBundleIdentifier 1098 | as.acidanthera.BrcmPatchRAM 1099 | DisplayName 1100 | Broadcom BCM20702 Bluetooth 4.0 +HS USB Device 1101 | FirmwareKey 1102 | BCM20702A1_001.002.014.1443.1461_v5557 1103 | IOClass 1104 | BrcmPatchRAM 1105 | IOMatchCategory 1106 | BrcmPatchRAM 1107 | IOProbeScore 1108 | 4000 1109 | IOProviderClass 1110 | IOUSBDevice 1111 | idProduct 1112 | 8670 1113 | idVendor 1114 | 2652 1115 | 1116 | 0a5c_21e1 1117 | 1118 | CFBundleIdentifier 1119 | as.acidanthera.BrcmPatchRAM 1120 | DisplayName 1121 | Broadcom 20702 Bluetooth 4.0 Adapter 1122 | FirmwareKey 1123 | BCM20702A1_001.002.014.1502.1770_v5866 1124 | IOClass 1125 | BrcmPatchRAM 1126 | IOMatchCategory 1127 | BrcmPatchRAM 1128 | IOProbeScore 1129 | 4000 1130 | IOProviderClass 1131 | IOUSBDevice 1132 | idProduct 1133 | 8673 1134 | idVendor 1135 | 2652 1136 | 1137 | 0a5c_21e3 1138 | 1139 | CFBundleIdentifier 1140 | as.acidanthera.BrcmPatchRAM 1141 | DisplayName 1142 | Broadcom 20702 Bluetooth 4.0 Adapter 1143 | FirmwareKey 1144 | BCM20702A1_001.002.014.1502.1767_v5863 1145 | IOClass 1146 | BrcmPatchRAM 1147 | IOMatchCategory 1148 | BrcmPatchRAM 1149 | IOProbeScore 1150 | 4000 1151 | IOProviderClass 1152 | IOUSBDevice 1153 | idProduct 1154 | 8675 1155 | idVendor 1156 | 2652 1157 | 1158 | 0a5c_21e6 1159 | 1160 | CFBundleIdentifier 1161 | as.acidanthera.BrcmPatchRAM 1162 | DisplayName 1163 | ThinkPad Bluetooth 4.0 1164 | FirmwareKey 1165 | BCM20702A1_001.002.014.1502.1757_v5853 1166 | IOClass 1167 | BrcmPatchRAM 1168 | IOMatchCategory 1169 | BrcmPatchRAM 1170 | IOProbeScore 1171 | 4000 1172 | IOProviderClass 1173 | IOUSBDevice 1174 | idProduct 1175 | 8678 1176 | idVendor 1177 | 2652 1178 | 1179 | 0a5c_21e8 1180 | 1181 | CFBundleIdentifier 1182 | as.acidanthera.BrcmPatchRAM 1183 | DisplayName 1184 | Broadcom BCM20702 Bluetooth 4.0 USB Device 1185 | FirmwareKey 1186 | BCM20702A1_001.002.014.1502.1764_v5860 1187 | IOClass 1188 | BrcmPatchRAM 1189 | IOMatchCategory 1190 | BrcmPatchRAM 1191 | IOProbeScore 1192 | 4000 1193 | IOProviderClass 1194 | IOUSBDevice 1195 | idProduct 1196 | 8680 1197 | idVendor 1198 | 2652 1199 | 1200 | 0a5c_21ec 1201 | 1202 | CFBundleIdentifier 1203 | as.acidanthera.BrcmPatchRAM 1204 | DisplayName 1205 | Broadcom BCM20702 Bluetooth 4.0 USB Device 1206 | FirmwareKey 1207 | BCM20702A1_001.002.014.1443.1460_v5556 1208 | IOClass 1209 | BrcmPatchRAM 1210 | IOMatchCategory 1211 | BrcmPatchRAM 1212 | IOProbeScore 1213 | 4000 1214 | IOProviderClass 1215 | IOUSBDevice 1216 | idProduct 1217 | 8684 1218 | idVendor 1219 | 2652 1220 | 1221 | 0a5c_21f1 1222 | 1223 | CFBundleIdentifier 1224 | as.acidanthera.BrcmPatchRAM 1225 | DisplayName 1226 | Broadcom Bluetooth 4.0 Adapter 1227 | FirmwareKey 1228 | BCM20702A1_001.002.014.1502.1765_v5861 1229 | IOClass 1230 | BrcmPatchRAM 1231 | IOMatchCategory 1232 | BrcmPatchRAM 1233 | IOProbeScore 1234 | 4000 1235 | IOProviderClass 1236 | IOUSBDevice 1237 | idProduct 1238 | 8689 1239 | idVendor 1240 | 2652 1241 | 1242 | 0a5c_21f3 1243 | 1244 | CFBundleIdentifier 1245 | as.acidanthera.BrcmPatchRAM 1246 | DisplayName 1247 | Broadcom Bluetooth 4.0 1248 | FirmwareKey 1249 | BCM20702A1_001.002.014.1502.1761_v5857 1250 | IOClass 1251 | BrcmPatchRAM 1252 | IOMatchCategory 1253 | BrcmPatchRAM 1254 | IOProbeScore 1255 | 4000 1256 | IOProviderClass 1257 | IOUSBDevice 1258 | idProduct 1259 | 8691 1260 | idVendor 1261 | 2652 1262 | 1263 | 0a5c_21f4 1264 | 1265 | CFBundleIdentifier 1266 | as.acidanthera.BrcmPatchRAM 1267 | DisplayName 1268 | Broadcom Bluetooth 4.0 1269 | FirmwareKey 1270 | BCM20702A1_001.002.014.1502.1760_v5856 1271 | IOClass 1272 | BrcmPatchRAM 1273 | IOMatchCategory 1274 | BrcmPatchRAM 1275 | IOProbeScore 1276 | 4000 1277 | IOProviderClass 1278 | IOUSBDevice 1279 | idProduct 1280 | 8692 1281 | idVendor 1282 | 2652 1283 | 1284 | 0a5c_21fb 1285 | 1286 | CFBundleIdentifier 1287 | as.acidanthera.BrcmPatchRAM 1288 | DisplayName 1289 | Broadcom 20702 Bluetooth 4.0 Adapter 1290 | FirmwareKey 1291 | BCM20702A1_001.002.014.1502.1766_v5862 1292 | IOClass 1293 | BrcmPatchRAM 1294 | IOMatchCategory 1295 | BrcmPatchRAM 1296 | IOProbeScore 1297 | 4000 1298 | IOProviderClass 1299 | IOUSBDevice 1300 | idProduct 1301 | 8699 1302 | idVendor 1303 | 2652 1304 | 1305 | 0a5c_21fd 1306 | 1307 | CFBundleIdentifier 1308 | as.acidanthera.BrcmPatchRAM 1309 | DisplayName 1310 | Broadcom BCM20702 Bluetooth 4.0 +HS USB Device 1311 | FirmwareKey 1312 | BCM20702A1_001.002.014.1443.1463_v5559 1313 | IOClass 1314 | BrcmPatchRAM 1315 | IOMatchCategory 1316 | BrcmPatchRAM 1317 | IOProbeScore 1318 | 4000 1319 | IOProviderClass 1320 | IOUSBDevice 1321 | idProduct 1322 | 8701 1323 | idVendor 1324 | 2652 1325 | 1326 | 0a5c_21fe 1327 | 1328 | CFBundleIdentifier 1329 | as.acidanthera.BrcmPatchRAM 1330 | DisplayName 1331 | Broadcom 43142 Bluetooth 4.0 Adapter 1332 | FirmwareKey 1333 | BCM43142A0_001.001.011.0161.0186_v4282 1334 | IOClass 1335 | BrcmPatchRAM 1336 | IOMatchCategory 1337 | BrcmPatchRAM 1338 | IOProbeScore 1339 | 4000 1340 | IOProviderClass 1341 | IOUSBDevice 1342 | idProduct 1343 | 8702 1344 | idVendor 1345 | 2652 1346 | 1347 | 0a5c_640b 1348 | 1349 | CFBundleIdentifier 1350 | as.acidanthera.BrcmPatchRAM 1351 | DisplayName 1352 | Broadcom Bluetooth 4.0 Adapter 1353 | FirmwareKey 1354 | BCM20702A1_001.002.014.1502.1769_v5865 1355 | IOClass 1356 | BrcmPatchRAM 1357 | IOMatchCategory 1358 | BrcmPatchRAM 1359 | IOProbeScore 1360 | 4000 1361 | IOProviderClass 1362 | IOUSBDevice 1363 | idProduct 1364 | 25611 1365 | idVendor 1366 | 2652 1367 | 1368 | 0a5c_6410 1369 | 1370 | CFBundleIdentifier 1371 | as.acidanthera.BrcmPatchRAM 1372 | DisplayName 1373 | Dell Wireless 1830 Bluetooth 4.1 LE 1374 | FirmwareKey 1375 | BCM20703A1_001.001.005.0214.0422_v4518 1376 | IOClass 1377 | BrcmPatchRAM 1378 | IOMatchCategory 1379 | BrcmPatchRAM 1380 | IOProbeScore 1381 | 4000 1382 | IOProviderClass 1383 | IOUSBDevice 1384 | idProduct 1385 | 25616 1386 | idVendor 1387 | 2652 1388 | 1389 | 0a5c_6412 1390 | 1391 | CFBundleIdentifier 1392 | as.acidanthera.BrcmPatchRAM 1393 | DisplayName 1394 | Dell Wireless 1820A Bluetooth 4.1 LE 1395 | FirmwareKey 1396 | BCM4350C5_003.006.007.0222.4689_v4689 1397 | IOClass 1398 | BrcmPatchRAM 1399 | IOMatchCategory 1400 | BrcmPatchRAM 1401 | IOProbeScore 1402 | 4000 1403 | IOProviderClass 1404 | IOUSBDevice 1405 | idProduct 1406 | 25618 1407 | idVendor 1408 | 2652 1409 | 1410 | 0a5c_6413 1411 | 1412 | CFBundleIdentifier 1413 | as.acidanthera.BrcmPatchRAM 1414 | DisplayName 1415 | Broadcom Bluetooth 4.0 USB Device 1416 | FirmwareKey 1417 | BCM4350C5_003.006.007.0120.2118_v6214 1418 | IOClass 1419 | BrcmPatchRAM 1420 | IOMatchCategory 1421 | BrcmPatchRAM 1422 | IOProbeScore 1423 | 4000 1424 | IOProviderClass 1425 | IOUSBDevice 1426 | idProduct 1427 | 25619 1428 | idVendor 1429 | 2652 1430 | 1431 | 0a5c_6414 1432 | 1433 | CFBundleIdentifier 1434 | as.acidanthera.BrcmPatchRAM 1435 | DisplayName 1436 | Broadcom Bluetooth 4.1 USB 1437 | FirmwareKey 1438 | BCM4350C5_003.006.007.0145.2724_v6820 1439 | IOClass 1440 | BrcmPatchRAM 1441 | IOMatchCategory 1442 | BrcmPatchRAM 1443 | IOProbeScore 1444 | 4000 1445 | IOProviderClass 1446 | IOUSBDevice 1447 | idProduct 1448 | 25620 1449 | idVendor 1450 | 2652 1451 | 1452 | 0a5c_6417 1453 | 1454 | CFBundleIdentifier 1455 | as.acidanthera.BrcmPatchRAM 1456 | DisplayName 1457 | Broadcom 20702 Bluetooth 4.0 1458 | FirmwareKey 1459 | BCM20702A1_001.002.014.1502.1780_v5876 1460 | IOClass 1461 | BrcmPatchRAM 1462 | IOMatchCategory 1463 | BrcmPatchRAM 1464 | IOProbeScore 1465 | 4000 1466 | IOProviderClass 1467 | IOUSBDevice 1468 | idProduct 1469 | 25623 1470 | idVendor 1471 | 2652 1472 | 1473 | 0a5c_6418 1474 | 1475 | CFBundleIdentifier 1476 | as.acidanthera.BrcmPatchRAM 1477 | DisplayName 1478 | Broadcom 4371 Bluetooth 4.1 Adapter 1479 | FirmwareKey 1480 | BCM4371C2_001.003.015.0093.0116_v4212 1481 | IOClass 1482 | BrcmPatchRAM 1483 | IOMatchCategory 1484 | BrcmPatchRAM 1485 | IOProbeScore 1486 | 4000 1487 | IOProviderClass 1488 | IOUSBDevice 1489 | idProduct 1490 | 25624 1491 | idVendor 1492 | 2652 1493 | 1494 | 0a5c_7460 1495 | 1496 | CFBundleIdentifier 1497 | as.acidanthera.BrcmPatchRAM 1498 | DisplayName 1499 | Broadcom BCM20703 Bluetooth USB Device 1500 | FirmwareKey 1501 | BCM20703A1_001.001.005.0214.0473_v4569 1502 | IOClass 1503 | BrcmPatchRAM 1504 | IOMatchCategory 1505 | BrcmPatchRAM 1506 | IOProbeScore 1507 | 4000 1508 | IOProviderClass 1509 | IOUSBDevice 1510 | idProduct 1511 | 29792 1512 | idVendor 1513 | 2652 1514 | 1515 | 0b05_17b5 1516 | 1517 | CFBundleIdentifier 1518 | as.acidanthera.BrcmPatchRAM 1519 | DisplayName 1520 | Bluetooth Module 1521 | FirmwareKey 1522 | BCM20702A1_001.002.014.1443.1468_v5564 1523 | IOClass 1524 | BrcmPatchRAM 1525 | IOMatchCategory 1526 | BrcmPatchRAM 1527 | IOProbeScore 1528 | 4000 1529 | IOProviderClass 1530 | IOUSBDevice 1531 | idProduct 1532 | 6069 1533 | idVendor 1534 | 2821 1535 | 1536 | 0b05_17cb 1537 | 1538 | CFBundleIdentifier 1539 | as.acidanthera.BrcmPatchRAM 1540 | DisplayName 1541 | ASUS USB-BT400 1542 | FirmwareKey 1543 | BCM20702A1_001.002.014.1443.1467_v5563 1544 | IOClass 1545 | BrcmPatchRAM 1546 | IOMatchCategory 1547 | BrcmPatchRAM 1548 | IOProbeScore 1549 | 4000 1550 | IOProviderClass 1551 | IOUSBDevice 1552 | idProduct 1553 | 6091 1554 | idVendor 1555 | 2821 1556 | 1557 | 0b05_17cf 1558 | 1559 | CFBundleIdentifier 1560 | as.acidanthera.BrcmPatchRAM 1561 | DisplayName 1562 | Bluetooth USB module 1563 | FirmwareKey 1564 | BCM20702A1_001.002.014.1443.1469_v5565 1565 | IOClass 1566 | BrcmPatchRAM 1567 | IOMatchCategory 1568 | BrcmPatchRAM 1569 | IOProbeScore 1570 | 4000 1571 | IOProviderClass 1572 | IOUSBDevice 1573 | idProduct 1574 | 6095 1575 | idVendor 1576 | 2821 1577 | 1578 | 0b05_180a 1579 | 1580 | CFBundleIdentifier 1581 | as.acidanthera.BrcmPatchRAM 1582 | DisplayName 1583 | Bluetooth USB module 1584 | FirmwareKey 1585 | BCM20702A1_001.002.014.1443.1714_v5810 1586 | IOClass 1587 | BrcmPatchRAM 1588 | IOMatchCategory 1589 | BrcmPatchRAM 1590 | IOProbeScore 1591 | 4000 1592 | IOProviderClass 1593 | IOUSBDevice 1594 | idProduct 1595 | 6154 1596 | idVendor 1597 | 2821 1598 | 1599 | 0bb4_0306 1600 | 1601 | CFBundleIdentifier 1602 | as.acidanthera.BrcmPatchRAM 1603 | DisplayName 1604 | Broadcom BCM20703 Bluetooth USB Device 1605 | FirmwareKey 1606 | BCM20703A1_001.001.005.0214.0481_v4577 1607 | IOClass 1608 | BrcmPatchRAM 1609 | IOMatchCategory 1610 | BrcmPatchRAM 1611 | IOProbeScore 1612 | 4000 1613 | IOProviderClass 1614 | IOUSBDevice 1615 | idProduct 1616 | 774 1617 | idVendor 1618 | 2996 1619 | 1620 | 105b_e065 1621 | 1622 | CFBundleIdentifier 1623 | as.acidanthera.BrcmPatchRAM 1624 | DisplayName 1625 | Broadcom Bluetooth 4.0 1626 | FirmwareKey 1627 | BCM43142A0_001.001.011.0311.0312_v4408 1628 | IOClass 1629 | BrcmPatchRAM 1630 | IOMatchCategory 1631 | BrcmPatchRAM 1632 | IOProbeScore 1633 | 4000 1634 | IOProviderClass 1635 | IOUSBDevice 1636 | idProduct 1637 | 57445 1638 | idVendor 1639 | 4187 1640 | 1641 | 105b_e066 1642 | 1643 | CFBundleIdentifier 1644 | as.acidanthera.BrcmPatchRAM 1645 | DisplayName 1646 | Broadcom Bluetooth 4.0 USB 1647 | FirmwareKey 1648 | BCM20702A1_001.002.014.1443.1487_v5583 1649 | IOClass 1650 | BrcmPatchRAM 1651 | IOMatchCategory 1652 | BrcmPatchRAM 1653 | IOProbeScore 1654 | 4000 1655 | IOProviderClass 1656 | IOUSBDevice 1657 | idProduct 1658 | 57446 1659 | idVendor 1660 | 4187 1661 | 1662 | 13d3_3384 1663 | 1664 | CFBundleIdentifier 1665 | as.acidanthera.BrcmPatchRAM 1666 | DisplayName 1667 | Bluetooth USB module 1668 | FirmwareKey 1669 | BCM20702A1_001.002.014.1443.1477_v5573 1670 | IOClass 1671 | BrcmPatchRAM 1672 | IOMatchCategory 1673 | BrcmPatchRAM 1674 | IOProbeScore 1675 | 4000 1676 | IOProviderClass 1677 | IOUSBDevice 1678 | idProduct 1679 | 13188 1680 | idVendor 1681 | 5075 1682 | 1683 | 13d3_3388 1684 | 1685 | CFBundleIdentifier 1686 | as.acidanthera.BrcmPatchRAM 1687 | DisplayName 1688 | BCM43142 Bluetooth 4.0 +HS USB Device 1689 | FirmwareKey 1690 | BCM43142A0_001.001.011.0311.0332_v4428 1691 | IOClass 1692 | BrcmPatchRAM 1693 | IOMatchCategory 1694 | BrcmPatchRAM 1695 | IOProbeScore 1696 | 4000 1697 | IOProviderClass 1698 | IOUSBDevice 1699 | idProduct 1700 | 13192 1701 | idVendor 1702 | 5075 1703 | 1704 | 13d3_3389 1705 | 1706 | CFBundleIdentifier 1707 | as.acidanthera.BrcmPatchRAM 1708 | DisplayName 1709 | BCM43142 Bluetooth 4.0 +HS USB Device 1710 | FirmwareKey 1711 | BCM43142A0_001.001.011.0311.0333_v4429 1712 | IOClass 1713 | BrcmPatchRAM 1714 | IOMatchCategory 1715 | BrcmPatchRAM 1716 | IOProbeScore 1717 | 4000 1718 | IOProviderClass 1719 | IOUSBDevice 1720 | idProduct 1721 | 13193 1722 | idVendor 1723 | 5075 1724 | 1725 | 13d3_3392 1726 | 1727 | CFBundleIdentifier 1728 | as.acidanthera.BrcmPatchRAM 1729 | DisplayName 1730 | Bluetooth Module 1731 | FirmwareKey 1732 | BCM20702A1_001.002.014.1443.1478_v5574 1733 | IOClass 1734 | BrcmPatchRAM 1735 | IOMatchCategory 1736 | BrcmPatchRAM 1737 | IOProbeScore 1738 | 4000 1739 | IOProviderClass 1740 | IOUSBDevice 1741 | idProduct 1742 | 13202 1743 | idVendor 1744 | 5075 1745 | 1746 | 13d3_3404 1747 | 1748 | CFBundleIdentifier 1749 | as.acidanthera.BrcmPatchRAM 1750 | DisplayName 1751 | Bluetooth Module 1752 | FirmwareKey 1753 | BCM20702A1_001.002.014.1443.1479_v5575 1754 | IOClass 1755 | BrcmPatchRAM 1756 | IOMatchCategory 1757 | BrcmPatchRAM 1758 | IOProbeScore 1759 | 4000 1760 | IOProviderClass 1761 | IOUSBDevice 1762 | idProduct 1763 | 13316 1764 | idVendor 1765 | 5075 1766 | 1767 | 13d3_3411 1768 | 1769 | CFBundleIdentifier 1770 | as.acidanthera.BrcmPatchRAM 1771 | DisplayName 1772 | Broadcom BCM20702 Bluetooth 4.0 +HS USB Device 1773 | FirmwareKey 1774 | BCM20702A1_001.002.014.1443.1450_v5546 1775 | IOClass 1776 | BrcmPatchRAM 1777 | IOMatchCategory 1778 | BrcmPatchRAM 1779 | IOProbeScore 1780 | 4000 1781 | IOProviderClass 1782 | IOUSBDevice 1783 | idProduct 1784 | 13329 1785 | idVendor 1786 | 5075 1787 | 1788 | 13d3_3413 1789 | 1790 | CFBundleIdentifier 1791 | as.acidanthera.BrcmPatchRAM 1792 | DisplayName 1793 | Bluetooth USB module 1794 | FirmwareKey 1795 | BCM20702A1_001.002.014.1443.1481_v5577 1796 | IOClass 1797 | BrcmPatchRAM 1798 | IOMatchCategory 1799 | BrcmPatchRAM 1800 | IOProbeScore 1801 | 4000 1802 | IOProviderClass 1803 | IOUSBDevice 1804 | idProduct 1805 | 13331 1806 | idVendor 1807 | 5075 1808 | 1809 | 13d3_3418 1810 | 1811 | CFBundleIdentifier 1812 | as.acidanthera.BrcmPatchRAM 1813 | DisplayName 1814 | Bluetooth USB module 1815 | FirmwareKey 1816 | BCM20702A1_001.002.014.1443.1480_v5576 1817 | IOClass 1818 | BrcmPatchRAM 1819 | IOMatchCategory 1820 | BrcmPatchRAM 1821 | IOProbeScore 1822 | 4000 1823 | IOProviderClass 1824 | IOUSBDevice 1825 | idProduct 1826 | 13336 1827 | idVendor 1828 | 5075 1829 | 1830 | 13d3_3427 1831 | 1832 | CFBundleIdentifier 1833 | as.acidanthera.BrcmPatchRAM 1834 | DisplayName 1835 | Broadcom Bluetooth 4.0 USB Device 1836 | FirmwareKey 1837 | BCM43142A0_001.001.011.0311.0334_v4430 1838 | IOClass 1839 | BrcmPatchRAM 1840 | IOMatchCategory 1841 | BrcmPatchRAM 1842 | IOProbeScore 1843 | 4000 1844 | IOProviderClass 1845 | IOUSBDevice 1846 | idProduct 1847 | 13351 1848 | idVendor 1849 | 5075 1850 | 1851 | 13d3_3435 1852 | 1853 | CFBundleIdentifier 1854 | as.acidanthera.BrcmPatchRAM 1855 | DisplayName 1856 | Bluetooth USB module 1857 | FirmwareKey 1858 | BCM20702A1_001.002.014.1443.1501_v5597 1859 | IOClass 1860 | BrcmPatchRAM 1861 | IOMatchCategory 1862 | BrcmPatchRAM 1863 | IOProbeScore 1864 | 4000 1865 | IOProviderClass 1866 | IOUSBDevice 1867 | idProduct 1868 | 13365 1869 | idVendor 1870 | 5075 1871 | 1872 | 13d3_3456 1873 | 1874 | CFBundleIdentifier 1875 | as.acidanthera.BrcmPatchRAM 1876 | DisplayName 1877 | Bluetooth USB module 1878 | FirmwareKey 1879 | BCM20702A1_001.002.014.1443.1502_v5598 1880 | IOClass 1881 | BrcmPatchRAM 1882 | IOMatchCategory 1883 | BrcmPatchRAM 1884 | IOProbeScore 1885 | 4000 1886 | IOProviderClass 1887 | IOUSBDevice 1888 | idProduct 1889 | 13398 1890 | idVendor 1891 | 5075 1892 | 1893 | 13d3_3482 1894 | 1895 | CFBundleIdentifier 1896 | as.acidanthera.BrcmPatchRAM 1897 | DisplayName 1898 | Bluetooth USB module 1899 | FirmwareKey 1900 | BCM43142A0_001.001.011.0311.0346_v4442 1901 | IOClass 1902 | BrcmPatchRAM 1903 | IOMatchCategory 1904 | BrcmPatchRAM 1905 | IOProbeScore 1906 | 4000 1907 | IOProviderClass 1908 | IOUSBDevice 1909 | idProduct 1910 | 13442 1911 | idVendor 1912 | 5075 1913 | 1914 | 13d3_3484 1915 | 1916 | CFBundleIdentifier 1917 | as.acidanthera.BrcmPatchRAM 1918 | DisplayName 1919 | Bluetooth USB module 1920 | FirmwareKey 1921 | BCM43142A0_001.001.011.0311.0347_v4443 1922 | IOClass 1923 | BrcmPatchRAM 1924 | IOMatchCategory 1925 | BrcmPatchRAM 1926 | IOProbeScore 1927 | 4000 1928 | IOProviderClass 1929 | IOUSBDevice 1930 | idProduct 1931 | 13444 1932 | idVendor 1933 | 5075 1934 | 1935 | 13d3_3504 1936 | 1937 | CFBundleIdentifier 1938 | as.acidanthera.BrcmPatchRAM 1939 | DisplayName 1940 | Bluetooth USB module 1941 | FirmwareKey 1942 | BCM4371C2_001.003.015.0093.0118_v4214 1943 | IOClass 1944 | BrcmPatchRAM 1945 | IOMatchCategory 1946 | BrcmPatchRAM 1947 | IOProbeScore 1948 | 4000 1949 | IOProviderClass 1950 | IOUSBDevice 1951 | idProduct 1952 | 13572 1953 | idVendor 1954 | 5075 1955 | 1956 | 13d3_3508 1957 | 1958 | CFBundleIdentifier 1959 | as.acidanthera.BrcmPatchRAM 1960 | DisplayName 1961 | Bluetooth USB module 1962 | FirmwareKey 1963 | BCM4371C2_001.003.015.0093.0117_v4213 1964 | IOClass 1965 | BrcmPatchRAM 1966 | IOMatchCategory 1967 | BrcmPatchRAM 1968 | IOProbeScore 1969 | 4000 1970 | IOProviderClass 1971 | IOUSBDevice 1972 | idProduct 1973 | 13576 1974 | idVendor 1975 | 5075 1976 | 1977 | 13d3_3517 1978 | 1979 | CFBundleIdentifier 1980 | as.acidanthera.BrcmPatchRAM 1981 | DisplayName 1982 | Bluetooth USB module 1983 | FirmwareKey 1984 | BCM20702A1_001.002.014.1502.1786_v5882 1985 | IOClass 1986 | BrcmPatchRAM 1987 | IOMatchCategory 1988 | BrcmPatchRAM 1989 | IOProbeScore 1990 | 4000 1991 | IOProviderClass 1992 | IOUSBDevice 1993 | idProduct 1994 | 13591 1995 | idVendor 1996 | 5075 1997 | 1998 | 145f_01a3 1999 | 2000 | CFBundleIdentifier 2001 | as.acidanthera.BrcmPatchRAM 2002 | DisplayName 2003 | Trust Bluetooth 4.0 Adapter 2004 | FirmwareKey 2005 | BCM20702A1_001.002.014.1443.1483_v5579 2006 | IOClass 2007 | BrcmPatchRAM 2008 | IOMatchCategory 2009 | BrcmPatchRAM 2010 | IOProbeScore 2011 | 4000 2012 | IOProviderClass 2013 | IOUSBDevice 2014 | idProduct 2015 | 419 2016 | idVendor 2017 | 5215 2018 | 2019 | 185f_2167 2020 | 2021 | CFBundleIdentifier 2022 | as.acidanthera.BrcmPatchRAM 2023 | DisplayName 2024 | Broadcom Bluetooth 4.0 USB 2025 | FirmwareKey 2026 | BCM43142A0_001.001.011.0277.0292_v4388 2027 | IOClass 2028 | BrcmPatchRAM 2029 | IOMatchCategory 2030 | BrcmPatchRAM 2031 | IOProbeScore 2032 | 4000 2033 | IOProviderClass 2034 | IOUSBDevice 2035 | idProduct 2036 | 8551 2037 | idVendor 2038 | 6239 2039 | 2040 | 19ff_0239 2041 | 2042 | CFBundleIdentifier 2043 | as.acidanthera.BrcmPatchRAM 2044 | DisplayName 2045 | Micro size USB to Bluetooth Dongle 2046 | FirmwareKey 2047 | BCM20702B0_002.001.014.0527.0557_v4653 2048 | IOClass 2049 | BrcmPatchRAM 2050 | IOMatchCategory 2051 | BrcmPatchRAM 2052 | IOProbeScore 2053 | 4000 2054 | IOProviderClass 2055 | IOUSBDevice 2056 | idProduct 2057 | 569 2058 | idVendor 2059 | 6655 2060 | 2061 | 413c_8143 2062 | 2063 | CFBundleIdentifier 2064 | as.acidanthera.BrcmPatchRAM 2065 | DisplayName 2066 | DW1550 Bluetooth 4.0 LE 2067 | FirmwareKey 2068 | BCM20702A1_001.002.014.1443.1449_v5545 2069 | IOClass 2070 | BrcmPatchRAM 2071 | IOMatchCategory 2072 | BrcmPatchRAM 2073 | IOProbeScore 2074 | 4000 2075 | IOProviderClass 2076 | IOUSBDevice 2077 | idProduct 2078 | 33091 2079 | idVendor 2080 | 16700 2081 | 2082 | 413c_8197 2083 | 2084 | CFBundleIdentifier 2085 | as.acidanthera.BrcmPatchRAM 2086 | DisplayName 2087 | Dell Wireless 380 Bluetooth 4.0 Module 2088 | FirmwareKey 2089 | BCM20702A1_001.002.014.1443.1447_v5543 2090 | IOClass 2091 | BrcmPatchRAM 2092 | IOMatchCategory 2093 | BrcmPatchRAM 2094 | IOProbeScore 2095 | 4000 2096 | IOProviderClass 2097 | IOUSBDevice 2098 | idProduct 2099 | 33175 2100 | idVendor 2101 | 16700 2102 | 2103 | 2104 | LSMinimumSystemVersion 2105 | 10.8 2106 | OSBundleLibraries 2107 | 2108 | as.acidanthera.BrcmFirmwareStore 2109 | 2.6.4 2110 | com.apple.iokit.IOUSBFamily 2111 | 1.8 2112 | com.apple.kpi.iokit 2113 | 9.0 2114 | com.apple.kpi.libkern 2115 | 9.0 2116 | com.apple.kpi.mach 2117 | 9.0 2118 | 2119 | 2120 | 2121 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM.kext/Contents/MacOS/BrcmPatchRAM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/BrcmPatchRAM.kext/Contents/MacOS/BrcmPatchRAM -------------------------------------------------------------------------------- /EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3 -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G730 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.6.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOBSD 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kernel.6.0 70 | 7.9.9 71 | com.apple.kpi.bsd 72 | 8.0.0 73 | com.apple.kpi.iokit 74 | 8.0.0 75 | com.apple.kpi.libkern 76 | 8.0.0 77 | com.apple.kpi.mach 78 | 8.0.0 79 | com.apple.kpi.unsupported 80 | 8.0.0 81 | 82 | OSBundleLibraries_x86_64 83 | 84 | com.apple.kpi.bsd 85 | 10.0.0 86 | com.apple.kpi.dsep 87 | 10.0.0 88 | com.apple.kpi.iokit 89 | 10.0.0 90 | com.apple.kpi.libkern 91 | 10.0.0 92 | com.apple.kpi.mach 93 | 10.0.0 94 | com.apple.kpi.unsupported 95 | 10.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/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/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 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.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | 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/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/USBInjectAll.kext/Contents/MacOS/USBInjectAll -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBInjectAll.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBToolBox.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G527 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | USBToolBox 11 | CFBundleIdentifier 12 | com.dhinakg.USBToolBox.kext 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | USBToolBox 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSupportedPlatforms 20 | 21 | MacOSX 22 | 23 | CFBundleVersion 24 | 1.1.1 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 12E507 29 | DTPlatformName 30 | macosx 31 | DTPlatformVersion 32 | 11.3 33 | DTSDKBuild 34 | 20E214 35 | DTSDKName 36 | macosx11.3 37 | DTXcode 38 | 1251 39 | DTXcodeBuild 40 | 12E507 41 | IOKitPersonalities 42 | 43 | LSMinimumSystemVersion 44 | 10.11 45 | NSHumanReadableCopyright 46 | Copyright © 2020-2021 Dhinak G. All rights reserved. 47 | OSBundleCompatibleVersion 48 | 1.0.0 49 | OSBundleLibraries 50 | 51 | com.apple.driver.AppleUSBHostMergeProperties 52 | 1.0 53 | com.apple.iokit.IOPCIFamily 54 | 2.9 55 | com.apple.kpi.iokit 56 | 15.0.0 57 | com.apple.kpi.libkern 58 | 15.0.0 59 | 60 | OSBundleRequired 61 | Root 62 | 63 | 64 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBToolBox.kext/Contents/MacOS/USBToolBox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/USBToolBox.kext/Contents/MacOS/USBToolBox -------------------------------------------------------------------------------- /EFI/OC/Kexts/UTBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | v1.1 9 | CFBundleIdentifier 10 | com.dhinakg.USBToolBox.map 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | UTBMap 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.1 23 | IOKitPersonalities 24 | 25 | XHC 26 | 27 | CFBundleIdentifier 28 | com.dhinakg.USBToolBox.kext 29 | IOClass 30 | USBToolBox 31 | IOMatchCategory 32 | USBToolBox 33 | IONameMatch 34 | XHC 35 | IOProviderClass 36 | IOPCIDevice 37 | IOProviderMergeProperties 38 | 39 | port-count 40 | 41 | GgAAAA== 42 | 43 | ports 44 | 45 | HS01 46 | 47 | UsbConnector 48 | 3 49 | port 50 | 51 | AQAAAA== 52 | 53 | 54 | HS02 55 | 56 | UsbConnector 57 | 3 58 | port 59 | 60 | AgAAAA== 61 | 62 | 63 | HS03 64 | 65 | UsbConnector 66 | 3 67 | port 68 | 69 | AwAAAA== 70 | 71 | 72 | HS04 73 | 74 | UsbConnector 75 | 255 76 | port 77 | 78 | BgAAAA== 79 | 80 | 81 | HS05 82 | 83 | UsbConnector 84 | 3 85 | port 86 | 87 | BwAAAA== 88 | 89 | 90 | HS06 91 | 92 | UsbConnector 93 | 3 94 | port 95 | 96 | CAAAAA== 97 | 98 | 99 | HS07 100 | 101 | UsbConnector 102 | 3 103 | port 104 | 105 | CgAAAA== 106 | 107 | 108 | HS08 109 | 110 | UsbConnector 111 | 255 112 | port 113 | 114 | CwAAAA== 115 | 116 | 117 | HS09 118 | 119 | UsbConnector 120 | 0 121 | port 122 | 123 | DAAAAA== 124 | 125 | 126 | HS10 127 | 128 | UsbConnector 129 | 0 130 | port 131 | 132 | DQAAAA== 133 | 134 | 135 | HS11 136 | 137 | UsbConnector 138 | 255 139 | port 140 | 141 | DgAAAA== 142 | 143 | 144 | SS01 145 | 146 | UsbConnector 147 | 3 148 | port 149 | 150 | EQAAAA== 151 | 152 | 153 | SS02 154 | 155 | UsbConnector 156 | 3 157 | port 158 | 159 | EgAAAA== 160 | 161 | 162 | SS03 163 | 164 | UsbConnector 165 | 3 166 | port 167 | 168 | EwAAAA== 169 | 170 | 171 | SS04 172 | 173 | UsbConnector 174 | 3 175 | port 176 | 177 | FwAAAA== 178 | 179 | 180 | SS05 181 | 182 | UsbConnector 183 | 3 184 | port 185 | 186 | GAAAAA== 187 | 188 | 189 | SS06 190 | 191 | UsbConnector 192 | 3 193 | port 194 | 195 | GgAAAA== 196 | 197 | 198 | 199 | 200 | 201 | 202 | OSBundleLibraries 203 | 204 | com.dhinakg.USBToolBox.kext 205 | 1.0.0 206 | 207 | OSBundleRequired 208 | Root 209 | 210 | 211 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G624 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.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.0 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | as.vit9696.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/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 20G730 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.6.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.6.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 13C100 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 12.1 37 | DTSDKBuild 38 | 21C46 39 | DTSDKName 40 | macosx12.1 41 | DTXcode 42 | 1321 43 | DTXcodeBuild 44 | 13C100 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.6 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 10.0.0 92 | com.apple.kpi.dsep 93 | 10.0.0 94 | com.apple.kpi.iokit 95 | 10.0.0 96 | com.apple.kpi.libkern 97 | 10.0.0 98 | com.apple.kpi.mach 99 | 10.0.0 100 | com.apple.kpi.unsupported 101 | 10.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/BootKicker.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/BootKicker.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ChipTune.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/ChipTune.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/CleanNvram.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/CleanNvram.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ControlMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/ControlMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/CsrUtil.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/CsrUtil.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/GopStop.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/GopStop.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/KeyTester.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/KeyTester.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/MmapDump.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/MmapDump.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenControl.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/OpenControl.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/ResetSystem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/ResetSystem.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/RtcRw.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/RtcRw.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/TpmInfo.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/EFI/OC/Tools/TpmInfo.efi -------------------------------------------------------------------------------- /EFI/OC/config.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | #WARNING - 1 6 | This is just a sample. Do NOT try loading it. 7 | #WARNING - 2 8 | Ensure you understand EVERY field before booting. 9 | #WARNING - 3 10 | In most cases recommended to use Sample.plist 11 | #WARNING - 4 12 | Use SampleCustom.plist only for special cases. 13 | ACPI 14 | 15 | Add 16 | 17 | 18 | Comment 19 | 20 | Enabled 21 | 22 | Path 23 | SSDT-AWAC.aml 24 | 25 | 26 | Comment 27 | 28 | Enabled 29 | 30 | Path 31 | SSDT-EC-USBX-DESKTOP.aml 32 | 33 | 34 | Comment 35 | 36 | Enabled 37 | 38 | Path 39 | SSDT-PLUG-DRTNIA.aml 40 | 41 | 42 | Comment 43 | 44 | Enabled 45 | 46 | Path 47 | SSDT-I225V.aml 48 | 49 | 50 | Delete 51 | 52 | Patch 53 | 54 | 55 | Base 56 | 57 | BaseSkip 58 | 0 59 | Comment 60 | Fix RTC _STA bug 61 | Count 62 | 0 63 | Enabled 64 | 65 | Find 66 | oAqTU1RBUwE= 67 | Limit 68 | 0 69 | Mask 70 | 71 | OemTableId 72 | 73 | Replace 74 | oAqRCv8L//8= 75 | ReplaceMask 76 | 77 | Skip 78 | 0 79 | TableLength 80 | 0 81 | TableSignature 82 | RFNEVA== 83 | 84 | 85 | Quirks 86 | 87 | FadtEnableReset 88 | 89 | NormalizeHeaders 90 | 91 | RebaseRegions 92 | 93 | ResetHwSig 94 | 95 | ResetLogoStatus 96 | 97 | SyncTableIds 98 | 99 | 100 | 101 | Booter 102 | 103 | MmioWhitelist 104 | 105 | Patch 106 | 107 | Quirks 108 | 109 | AllowRelocationBlock 110 | 111 | AvoidRuntimeDefrag 112 | 113 | DevirtualiseMmio 114 | 115 | DisableSingleUser 116 | 117 | DisableVariableWrite 118 | 119 | DiscardHibernateMap 120 | 121 | EnableSafeModeSlide 122 | 123 | EnableWriteUnprotector 124 | 125 | ForceBooterSignature 126 | 127 | ForceExitBootServices 128 | 129 | ProtectMemoryRegions 130 | 131 | ProtectSecureBoot 132 | 133 | ProtectUefiServices 134 | 135 | ProvideCustomSlide 136 | 137 | ProvideMaxSlide 138 | 0 139 | RebuildAppleMemoryMap 140 | 141 | ResizeAppleGpuBars 142 | -1 143 | SetupVirtualMap 144 | 145 | SignalAppleOS 146 | 147 | SyncRuntimePermissions 148 | 149 | 150 | 151 | DeviceProperties 152 | 153 | Add 154 | 155 | PciRoot(0x0)/Pci(0x1C,0x4)/Pci(0x0,0x0) 156 | 157 | built-in 158 | AQ== 159 | 160 | PciRoot(0x0)/Pci(0x1F,0x3) 161 | 162 | AAPL,slot-name 163 | Internal@0,31,3 164 | device-id 165 | cKEAAA== 166 | device_type 167 | Audio device 168 | hda-gfx 169 | onboard-2 170 | layout-id 171 | 7 172 | model 173 | ROG Z490 SupremeFX S1220A 174 | 175 | PciRoot(0x0)/Pci(0x2,0x0) 176 | 177 | AAPL,ig-platform-id 178 | AwDImw== 179 | AAPL,slot-name 180 | Internal@0,2,0 181 | device-id 182 | mD4AAA== 183 | device_type 184 | Display controller 185 | framebuffer-patch-enable 186 | AQAAAA== 187 | hda-gfx 188 | onboard-1 189 | model 190 | Intel UHD Graphics 630 191 | 192 | 193 | Delete 194 | 195 | 196 | Kernel 197 | 198 | Add 199 | 200 | 201 | Arch 202 | x86_64 203 | BundlePath 204 | Lilu.kext 205 | Comment 206 | 207 | Enabled 208 | 209 | ExecutablePath 210 | Contents/MacOS/Lilu 211 | MaxKernel 212 | 213 | MinKernel 214 | 215 | PlistPath 216 | Contents/Info.plist 217 | 218 | 219 | Arch 220 | Any 221 | BundlePath 222 | AppleIntelI210Ethernet.kext 223 | Comment 224 | 225 | Enabled 226 | 227 | ExecutablePath 228 | Contents/MacOS/AppleIntelI210Ethernet 229 | MaxKernel 230 | 231 | MinKernel 232 | 233 | PlistPath 234 | Contents/Info.plist 235 | 236 | 237 | Arch 238 | x86_64 239 | BundlePath 240 | NVMeFix.kext 241 | Comment 242 | 243 | Enabled 244 | 245 | ExecutablePath 246 | Contents/MacOS/NVMeFix 247 | MaxKernel 248 | 249 | MinKernel 250 | 251 | PlistPath 252 | Contents/Info.plist 253 | 254 | 255 | Arch 256 | x86_64 257 | BundlePath 258 | VirtualSMC.kext 259 | Comment 260 | 261 | Enabled 262 | 263 | ExecutablePath 264 | Contents/MacOS/VirtualSMC 265 | MaxKernel 266 | 267 | MinKernel 268 | 269 | PlistPath 270 | Contents/Info.plist 271 | 272 | 273 | Arch 274 | Any 275 | BundlePath 276 | AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext 277 | Comment 278 | 279 | Enabled 280 | 281 | ExecutablePath 282 | 283 | MaxKernel 284 | 285 | MinKernel 286 | 287 | PlistPath 288 | Contents/Info.plist 289 | 290 | 291 | Arch 292 | x86_64 293 | BundlePath 294 | SMCProcessor.kext 295 | Comment 296 | 297 | Enabled 298 | 299 | ExecutablePath 300 | Contents/MacOS/SMCProcessor 301 | MaxKernel 302 | 303 | MinKernel 304 | 305 | PlistPath 306 | Contents/Info.plist 307 | 308 | 309 | Arch 310 | x86_64 311 | BundlePath 312 | SMCSuperIO.kext 313 | Comment 314 | 315 | Enabled 316 | 317 | ExecutablePath 318 | Contents/MacOS/SMCSuperIO 319 | MaxKernel 320 | 321 | MinKernel 322 | 323 | PlistPath 324 | Contents/Info.plist 325 | 326 | 327 | Arch 328 | x86_64 329 | BundlePath 330 | WhateverGreen.kext 331 | Comment 332 | 333 | Enabled 334 | 335 | ExecutablePath 336 | Contents/MacOS/WhateverGreen 337 | MaxKernel 338 | 339 | MinKernel 340 | 341 | PlistPath 342 | Contents/Info.plist 343 | 344 | 345 | Arch 346 | x86_64 347 | BundlePath 348 | AppleALC.kext 349 | Comment 350 | 351 | Enabled 352 | 353 | ExecutablePath 354 | Contents/MacOS/AppleALC 355 | MaxKernel 356 | 357 | MinKernel 358 | 359 | PlistPath 360 | Contents/Info.plist 361 | 362 | 363 | Arch 364 | Any 365 | BundlePath 366 | BrcmPatchRAM.kext 367 | Comment 368 | 369 | Enabled 370 | 371 | ExecutablePath 372 | Contents/MacOS/BrcmPatchRAM 373 | MaxKernel 374 | 375 | MinKernel 376 | 377 | PlistPath 378 | Contents/Info.plist 379 | 380 | 381 | Arch 382 | Any 383 | BundlePath 384 | BrcmBluetoothInjector.kext 385 | Comment 386 | 387 | Enabled 388 | 389 | ExecutablePath 390 | 391 | MaxKernel 392 | 393 | MinKernel 394 | 395 | PlistPath 396 | Contents/Info.plist 397 | 398 | 399 | Arch 400 | Any 401 | BundlePath 402 | USBToolBox.kext 403 | Comment 404 | 405 | Enabled 406 | 407 | ExecutablePath 408 | Contents/MacOS/USBToolBox 409 | MaxKernel 410 | 411 | MinKernel 412 | 413 | PlistPath 414 | Contents/Info.plist 415 | 416 | 417 | Arch 418 | Any 419 | BundlePath 420 | BlueToolFixup.kext 421 | Comment 422 | 423 | Enabled 424 | 425 | ExecutablePath 426 | Contents/MacOS/BlueToolFixup 427 | MaxKernel 428 | 429 | MinKernel 430 | 431 | PlistPath 432 | Contents/Info.plist 433 | 434 | 435 | Arch 436 | Any 437 | BundlePath 438 | UTBMap.kext 439 | Comment 440 | 441 | Enabled 442 | 443 | ExecutablePath 444 | 445 | MaxKernel 446 | 447 | MinKernel 448 | 449 | PlistPath 450 | Contents/Info.plist 451 | 452 | 453 | Block 454 | 455 | Emulate 456 | 457 | Cpuid1Data 458 | 459 | Cpuid1Mask 460 | 461 | DummyPowerManagement 462 | 463 | MaxKernel 464 | 465 | MinKernel 466 | 467 | 468 | Force 469 | 470 | Patch 471 | 472 | Quirks 473 | 474 | AppleCpuPmCfgLock 475 | 476 | AppleXcpmCfgLock 477 | 478 | AppleXcpmExtraMsrs 479 | 480 | AppleXcpmForceBoost 481 | 482 | CustomSMBIOSGuid 483 | 484 | DisableIoMapper 485 | 486 | DisableLinkeditJettison 487 | 488 | DisableRtcChecksum 489 | 490 | ExtendBTFeatureFlags 491 | 492 | ExternalDiskIcons 493 | 494 | ForceSecureBootScheme 495 | 496 | IncreasePciBarSize 497 | 498 | LapicKernelPanic 499 | 500 | LegacyCommpage 501 | 502 | PanicNoKextDump 503 | 504 | PowerTimeoutKernelPanic 505 | 506 | ProvideCurrentCpuInfo 507 | 508 | SetApfsTrimTimeout 509 | -1 510 | ThirdPartyDrives 511 | 512 | XhciPortLimit 513 | 514 | 515 | Scheme 516 | 517 | CustomKernel 518 | 519 | FuzzyMatch 520 | 521 | KernelArch 522 | Auto 523 | KernelCache 524 | Auto 525 | 526 | 527 | Misc 528 | 529 | BlessOverride 530 | 531 | Boot 532 | 533 | ConsoleAttributes 534 | 0 535 | HibernateMode 536 | None 537 | HideAuxiliary 538 | 539 | LauncherOption 540 | Disabled 541 | LauncherPath 542 | Default 543 | PickerAttributes 544 | 1 545 | PickerAudioAssist 546 | 547 | PickerMode 548 | Builtin 549 | PickerVariant 550 | Auto 551 | PollAppleHotKeys 552 | 553 | ShowPicker 554 | 555 | TakeoffDelay 556 | 0 557 | Timeout 558 | 3 559 | 560 | Debug 561 | 562 | AppleDebug 563 | 564 | ApplePanic 565 | 566 | DisableWatchDog 567 | 568 | DisplayDelay 569 | 0 570 | DisplayLevel 571 | 2147483650 572 | SerialInit 573 | 574 | SysReport 575 | 576 | Target 577 | 3 578 | 579 | Entries 580 | 581 | Security 582 | 583 | AllowNvramReset 584 | 585 | AllowSetDefault 586 | 587 | AllowToggleSip 588 | 589 | ApECID 590 | 0 591 | AuthRestart 592 | 593 | BlacklistAppleUpdate 594 | 595 | DmgLoading 596 | Signed 597 | EnablePassword 598 | 599 | ExposeSensitiveData 600 | 6 601 | HaltLevel 602 | 2147483648 603 | PasswordHash 604 | 605 | PasswordSalt 606 | 607 | ScanPolicy 608 | 0 609 | SecureBootModel 610 | Disabled 611 | Vault 612 | Optional 613 | 614 | Tools 615 | 616 | 617 | NVRAM 618 | 619 | Add 620 | 621 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 622 | 623 | DefaultBackgroundColor 624 | AAAAAA== 625 | UIScale 626 | AQ== 627 | 628 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 629 | 630 | rtc-blacklist 631 | 632 | 633 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 634 | 635 | SystemAudioVolume 636 | Rg== 637 | boot-args 638 | -lilubetaall ScanPolicy=0 keepsyms=1 agdpmod=pikera alcid=69 npci=0x2000 e1000=0 639 | csr-active-config 640 | AAAAAA== 641 | prev-lang:kbd 642 | ZW4tVVM6MA== 643 | run-efi-updater 644 | No 645 | 646 | 647 | Delete 648 | 649 | 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14 650 | 651 | UIScale 652 | DefaultBackgroundColor 653 | 654 | 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 655 | 656 | rtc-blacklist 657 | 658 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 659 | 660 | boot-args 661 | 662 | 663 | LegacyEnable 664 | 665 | LegacyOverwrite 666 | 667 | LegacySchema 668 | 669 | 7C436110-AB2A-4BBB-A880-FE41995C9F82 670 | 671 | EFILoginHiDPI 672 | EFIBluetoothDelay 673 | LocationServicesEnabled 674 | SystemAudioVolume 675 | SystemAudioVolumeDB 676 | SystemAudioVolumeSaved 677 | bluetoothActiveControllerInfo 678 | bluetoothInternalControllerInfo 679 | flagstate 680 | fmm-computer-name 681 | fmm-mobileme-token-FMM 682 | fmm-mobileme-token-FMM-BridgeHasAccount 683 | nvda_drv 684 | prev-lang:kbd 685 | 686 | 8BE4DF61-93CA-11D2-AA0D-00E098032B8C 687 | 688 | Boot0080 689 | Boot0081 690 | Boot0082 691 | BootNext 692 | BootOrder 693 | 694 | 695 | WriteFlash 696 | 697 | 698 | PlatformInfo 699 | 700 | Automatic 701 | 702 | CustomMemory 703 | 704 | Generic 705 | 706 | AdviseFeatures 707 | 708 | MaxBIOSVersion 709 | 710 | MLB 711 | C02951303CDLNV91M 712 | ProcessorType 713 | 4105 714 | ROM 715 | wRYj0bd6 716 | SpoofVendor 717 | 718 | SystemMemoryStatus 719 | Auto 720 | SystemProductName 721 | iMac19,1 722 | SystemSerialNumber 723 | C02ZVKZLJV3Q 724 | SystemUUID 725 | D8DFC245-A491-4373-A6B8-35653E556E51 726 | 727 | UpdateDataHub 728 | 729 | UpdateNVRAM 730 | 731 | UpdateSMBIOS 732 | 733 | UpdateSMBIOSMode 734 | Create 735 | UseRawUuidEncoding 736 | 737 | 738 | UEFI 739 | 740 | APFS 741 | 742 | EnableJumpstart 743 | 744 | GlobalConnect 745 | 746 | HideVerbose 747 | 748 | JumpstartHotPlug 749 | 750 | MinDate 751 | 0 752 | MinVersion 753 | 0 754 | 755 | AppleInput 756 | 757 | AppleEvent 758 | Builtin 759 | CustomDelays 760 | 761 | GraphicsInputMirroring 762 | 763 | KeyInitialDelay 764 | 50 765 | KeySubsequentDelay 766 | 5 767 | PointerPollMask 768 | -1 769 | PointerPollMin 770 | 0 771 | PointerPollMax 772 | 0 773 | PointerSpeedDiv 774 | 1 775 | PointerSpeedMul 776 | 1 777 | 778 | Audio 779 | 780 | AudioCodec 781 | 0 782 | AudioDevice 783 | PciRoot(0x0)/Pci(0x1b,0x0) 784 | AudioOutMask 785 | -1 786 | AudioSupport 787 | 788 | DisconnectHda 789 | 790 | MaximumGain 791 | -15 792 | MinimumAssistGain 793 | -30 794 | MinimumAudibleGain 795 | -128 796 | PlayChime 797 | Auto 798 | ResetTrafficClass 799 | 800 | SetupDelay 801 | 0 802 | 803 | ConnectDrivers 804 | 805 | Drivers 806 | 807 | 808 | Arguments 809 | 810 | Comment 811 | HFS+ Driver 812 | Enabled 813 | 814 | Path 815 | HfsPlus.efi 816 | 817 | 818 | Arguments 819 | 820 | Comment 821 | 822 | Enabled 823 | 824 | Path 825 | OpenRuntime.efi 826 | 827 | 828 | Input 829 | 830 | KeyFiltering 831 | 832 | KeyForgetThreshold 833 | 5 834 | KeySupport 835 | 836 | KeySupportMode 837 | Auto 838 | KeySwap 839 | 840 | PointerSupport 841 | 842 | PointerSupportMode 843 | ASUS 844 | TimerResolution 845 | 50000 846 | 847 | Output 848 | 849 | ClearScreenOnModeSwitch 850 | 851 | ConsoleMode 852 | 853 | DirectGopRendering 854 | 855 | ForceResolution 856 | 857 | GopPassThrough 858 | Disabled 859 | IgnoreTextInGraphics 860 | 861 | ProvideConsoleGop 862 | 863 | ReconnectGraphicsOnConnect 864 | 865 | ReconnectOnResChange 866 | 867 | ReplaceTabWithSpace 868 | 869 | Resolution 870 | Max 871 | SanitiseClearScreen 872 | 873 | TextRenderer 874 | BuiltinGraphics 875 | UgaPassThrough 876 | 877 | UIScale 878 | -1 879 | 880 | ProtocolOverrides 881 | 882 | AppleAudio 883 | 884 | AppleBootPolicy 885 | 886 | AppleDebugLog 887 | 888 | AppleEg2Info 889 | 890 | AppleFramebufferInfo 891 | 892 | AppleImageConversion 893 | 894 | AppleImg4Verification 895 | 896 | AppleKeyMap 897 | 898 | AppleRtcRam 899 | 900 | AppleSecureBoot 901 | 902 | AppleSmcIo 903 | 904 | AppleUserInterfaceTheme 905 | 906 | DataHub 907 | 908 | DeviceProperties 909 | 910 | FirmwareVolume 911 | 912 | HashServices 913 | 914 | OSInfo 915 | 916 | UnicodeCollation 917 | 918 | 919 | Quirks 920 | 921 | ActivateHpetSupport 922 | 923 | DisableSecurityPolicy 924 | 925 | EnableVectorAcceleration 926 | 927 | EnableVmx 928 | 929 | ExitBootServicesDelay 930 | 0 931 | ForceOcWriteFlash 932 | 933 | ForgeUefiSupport 934 | 935 | IgnoreInvalidFlexRatio 936 | 937 | ReleaseUsbOwnership 938 | 939 | ReloadOptionRoms 940 | 941 | RequestBootVarRouting 942 | 943 | ResizeGpuBars 944 | -1 945 | TscSyncTimeout 946 | 0 947 | UnblockFsConnect 948 | 949 | 950 | ReservedMemory 951 | 952 | 953 | Address 954 | 268435456 955 | Comment 956 | HD3000: IGPU memory corruption errata 957 | Enabled 958 | 959 | Size 960 | 268435456 961 | Type 962 | Reserved 963 | 964 | 965 | Address 966 | 569344 967 | Comment 968 | Fix black screen on wake from hibernation for Lenovo Thinkpad T490 969 | Enabled 970 | 971 | Size 972 | 4096 973 | Type 974 | RuntimeCode 975 | 976 | 977 | 978 | 979 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | ## 配置清单 2 | 3 | 参考文档:[OpenCore](https://dortania.github.io/OpenCore-Install-Guide/) 4 | 5 | CPU:[i7 10700K](https://ark.intel.com/content/www/us/en/ark/products/199335/intel-core-i710700k-processor-16m-cache-up-to-5-10-ghz.html) 6 | 7 | 主板:[ROG STRIX Z490-A GAMING](https://rog.asus.com/tw/motherboards/rog-strix/rog-strix-z490-a-gaming-model/spec/) 8 | 9 | 内存: 128G DDR4 10 | 11 | 硬盘:[西部数据 SN 750 500G](https://www.westerndigital.com/products/internal-drives/wd-black-sn750-nvme-ssd#WDS500G3XHC) 12 | 13 | 显卡: [RX580 8G](https://www.gigabyte.com/tw/Graphics-Card/GV-RX580GAMING-8GD-rev-10-11-12#kf) 14 | 15 | 无线模块:BCM943602CS 16 | 17 | 键盘:秒控键盘第三代(A1314) (两节五号电池 🔋) 18 | 19 | 鼠标:妙控板(两节五号电池 🔋) 20 | 21 | 显示器:[Redmi 27 显示器](https://www.mi.com/redmi-mon27?product_id=1222200038) 22 | 23 | ![bigsur](img/macos.png) 24 | 25 | ## 功能 26 | 27 | - 随航 28 | - 隔空投送 29 | - Apple 解锁 Mac 30 | - AirPlay to Mac 31 | - 通用粘贴板、接力 32 | - 通用控制 33 | 34 | -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/img/.DS_Store -------------------------------------------------------------------------------- /img/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangyongcun/OpenCore-EFI/923c750dc979ecb3719d128e716a116754915284/img/macos.png --------------------------------------------------------------------------------