Don't know what to say...

This commit is contained in:
Echo
2019-12-17 00:44:05 +08:00
parent f3f8905120
commit 57aada9d0c
516 changed files with 13597 additions and 5371 deletions
@@ -1 +0,0 @@
Versions/Current/Python
@@ -1 +0,0 @@
Versions/Current/Resources
@@ -1,28 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>Python</string>
<key>CFBundleGetInfoString</key>
<string>Python Runtime and Library</string>
<key>CFBundleIdentifier</key>
<string>org.python.python</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Python</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.7.5, (c) 2001-2019 Python Software Foundation.</string>
<key>CFBundleLongVersionString</key>
<string>3.7.5, (c) 2001-2019 Python Software Foundation.</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.7.5</string>
</dict>
</plist>
@@ -1,88 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>AddDW1820A</string>
<key>CFBundleExecutable</key>
<string>AddDW1820A</string>
<key>CFBundleIconFile</key>
<string>PythonApplet.icns</string>
<key>CFBundleIdentifier</key>
<string>org.pythonmac.unspecified.AddDW1820A</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>AddDW1820A</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.0.0</string>
<key>LSHasLocalizedDisplayName</key>
<false/>
<key>NSAppleScriptEnabled</key>
<false/>
<key>NSHumanReadableCopyright</key>
<string>Copyright not specified</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>PyMainFileNames</key>
<array>
<string>__boot__</string>
</array>
<key>PyOptions</key>
<dict>
<key>alias</key>
<false/>
<key>argv_emulation</key>
<false/>
<key>emulate_shell_environment</key>
<false/>
<key>no_chdir</key>
<false/>
<key>prefer_ppc</key>
<false/>
<key>site_packages</key>
<false/>
<key>use_faulthandler</key>
<false/>
<key>use_pythonpath</key>
<false/>
<key>verbose</key>
<false/>
</dict>
<key>PyResourcePackages</key>
<array/>
<key>PyRuntimeLocations</key>
<array>
<string>@executable_path/../Frameworks/Python.framework/Versions/3.7/Python</string>
</array>
<key>PythonInfoDict</key>
<dict>
<key>PythonExecutable</key>
<string>/Users/echo/Documents/Development/Projects/Scripts/venv/bin/python</string>
<key>PythonLongVersion</key>
<string>3.7.5 (default, Nov 1 2019, 02:16:23)
[Clang 11.0.0 (clang-1100.0.33.8)]</string>
<key>PythonShortVersion</key>
<string>3.7</string>
<key>py2app</key>
<dict>
<key>alias</key>
<false/>
<key>template</key>
<string>app</string>
<key>version</key>
<string>0.19</string>
</dict>
</dict>
</dict>
</plist>
Binary file not shown.
Binary file not shown.
-1
View File
@@ -1 +0,0 @@
APPL????
@@ -1,49 +0,0 @@
import os
from biplist import *
airports = bts = None
try:
data = readPlist("./Data.plist")
airports = data["Airport"]
bts = data["Bluetooth"]
except InvalidPlistException as e:
print("Error:", e)
os.chdir("../../../")
os.system("cp -r /System/Library/Extensions/IO80211Family.kext ./")
os.system("cp -r /System/Library/Extensions/IOBluetoothFamily.kext ./")
os.system("cp -r ./IO80211Family.kext ./IO80211Family_Backup.kext")
os.system("cp -r ./IOBluetoothFamily.kext ./IOBluetoothFamily_Backup.kext")
airport_plist = "./IO80211Family.kext/Contents/PlugIns/AirPortBrcm4360.kext/Contents/Info.plist"
bt_plist = "./IOBluetoothFamily.kext/Contents/PlugIns/BroadcomBluetoothHostControllerUSBTransport.kext/Contents/Info.plist"
try:
# add wifi info
airport = readPlist(airport_plist)
for data in airports:
airport["IOKitPersonalities"]["Broadcom 802.11 PCI"]["IONameMatch"].append(f"pci{data}")
writePlist(airport, airport_plist)
# add bt info
bluetooth = readPlist(bt_plist)
for bt in bts:
vid_hex_str, pid_hex_str = bt.split(',')
vid = int(vid_hex_str, 16)
pid = int(pid_hex_str, 16)
vid_hex = ("%#X" % vid)[2:]
pid_hex = ("%#X" % pid)[2:]
bluetooth["IOKitPersonalities"][f"PID {pid} 0x{pid_hex} VID {vid} 0x{vid_hex}"] = \
{'CFBundleIdentifier': 'com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport',
'IOClass': 'BroadcomBluetoothHostControllerUSBTransport',
'IOProviderClass': 'IOUSBHostDevice',
'LMPLoggingEnabled': True,
'idProduct': pid,
'idVendor': vid}
writePlist(bluetooth, bt_plist)
except (InvalidPlistException, NotBinaryPlistException) as e:
print("Error:", e)
@@ -1,16 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Airport</key>
<array>
<string>14e4,43a3</string>
</array>
<key>Bluetooth</key>
<array>
<string>0a5c,6412</string>
<string>0a5c,6413</string>
<string>0a5c,6414</string>
</array>
</dict>
</plist>
@@ -1,98 +0,0 @@
def _reset_sys_path():
# Clear generic sys.path[0]
import sys
import os
resources = os.environ['RESOURCEPATH']
while sys.path[0] == resources:
del sys.path[0]
_reset_sys_path()
def _chdir_resource():
import os
os.chdir(os.environ['RESOURCEPATH'])
_chdir_resource()
def _disable_linecache():
import linecache
def fake_getline(*args, **kwargs):
return ''
linecache.orig_getline = linecache.getline
linecache.getline = fake_getline
_disable_linecache()
import re
import sys
cookie_re = re.compile(b"coding[:=]\s*([-\w.]+)")
if sys.version_info[0] == 2:
default_encoding = 'ascii'
else:
default_encoding = 'utf-8'
def guess_encoding(fp):
for i in range(2):
ln = fp.readline()
m = cookie_re.search(ln)
if m is not None:
return m.group(1).decode('ascii')
return default_encoding
def _run():
global __file__
import os
import site # noqa: F401
sys.frozen = 'macosx_app'
base = os.environ['RESOURCEPATH']
argv0 = os.path.basename(os.environ['ARGVZERO'])
script = SCRIPT_MAP.get(argv0, DEFAULT_SCRIPT) # noqa: F821
path = os.path.join(base, script)
sys.argv[0] = __file__ = path
if sys.version_info[0] == 2:
with open(path, 'rU') as fp:
source = fp.read() + "\n"
else:
with open(path, 'rb') as fp:
encoding = guess_encoding(fp)
with open(path, 'r', encoding=encoding) as fp:
source = fp.read() + '\n'
BOM = b'\xef\xbb\xbf'.decode('utf-8')
if source.startswith(BOM):
source = source[1:]
exec(compile(source, path, 'exec'), globals(), globals())
def _setup_ctypes():
from ctypes.macholib import dyld
import os
frameworks = os.path.join(os.environ['RESOURCEPATH'], '..', 'Frameworks')
dyld.DEFAULT_FRAMEWORK_FALLBACK.insert(0, frameworks)
dyld.DEFAULT_LIBRARY_FALLBACK.insert(0, frameworks)
_setup_ctypes()
DEFAULT_SCRIPT='AddDW1820A.py'
SCRIPT_MAP={}
_run()
@@ -1,19 +0,0 @@
#!/bin/sh
#
# This is the default apptemplate error script
#
if ( test -n "$2" ) ; then
echo "$1 Error"
echo "An unexpected error has occurred during execution of the main script"
echo ""
echo "$2: $3"
echo ""
echo "See the Console for a detailed traceback."
else
echo "$1 Error"
# Usage: ERRORURL <anURL> <a button label>, this is used by the
# bundle runner to put up a dialog.
#echo "ERRORURL: http://www.python.org/ Visit the Python Website
# echo "ERRORURL: http://homepages.cwi.nl/~jack/macpython/index.html Visit the MacPython Website"
fi
File diff suppressed because it is too large Load Diff
@@ -1 +0,0 @@
../../site.pyc
Binary file not shown.
File diff suppressed because it is too large Load Diff
-20
View File
@@ -2,23 +2,3 @@ DW1820A: 00JT494 (Lenovo)
WiFi: pci14e4,43a3
bluetooth: 0a5c:6414
I've found out that using BrcmBluetoothInjector.kext inject bluetooth id will cause bluetooth unstable and unable to connect devices. And inject wifi id might also cause wifi no speed. It may look like drivers has been correctly loaded, but they just won't work.
The only way to make wifi and bluetooth work perfectly seems to be modify IO80211Family.kext and IOBluetoothFamily.kext, So I made this app to automatically modify and backup your IO80211Family.kext and IOBluetoothFamily.kext, I've only tested this on my computer, and it works fine.
Execute replace.sh script, it will use AddDW1820A.app to automatically modify and replace S/L/E/ IO80211Family.kext and IOBluetoothFamily.kext.
Wifi and Bluetooth id listed in AddDW1820A.app/Contents/Resources/Data.plist
Hope this works.
我发现用BrcmBluetoothInjector.kext注入蓝牙的id之后,蓝牙虽然能驱动。但是不稳定,而且会出现无法连接设备的情况,类似于注入无线网卡之后出现的没有网速的问题。
在我这里,修改系统里的IO80211Family.kex和IOBluetoothFamily.kext,在里边加入你的id可以完美驱动无线网卡和蓝牙。
所以,我用Python写了个小脚本,打包成了AddDW1820A.app,用来备份和修改你系统里的IO80211Family.kex和IOBluetoothFamily.kext。
蓝牙id和无线id可以加入到AddDW1820A.app/Contents/Resources/Data.plist里。
运行install.command来自动处理,或者运行AddDW1820A.app之后手动将IO80211Family.kex和IOBluetoothFamily.kext替换到S/L/E,然后重建缓存,修复权限。
@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18A391019</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>IO80211Family</string>
<key>CFBundleGetInfoString</key>
<string>12.0, Copyright © 2005-2016 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.IO80211Family</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>IO80211Family</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1200.12.2b1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11M392v</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>10.15</string>
<key>DTSDKBuild</key>
<string>19C49</string>
<key>DTSDKName</key>
<string>macosx10.15internal</string>
<key>DTXcode</key>
<string>1100</string>
<key>DTXcodeBuild</key>
<string>11M392v</string>
<key>IOKitPersonalities</key>
<dict/>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>OSBundleCompatibleVersion</key>
<string>1.0</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.driver.AppleMobileFileIntegrity</key>
<string>1.0.1</string>
<key>com.apple.driver.corecapture</key>
<string>1.0.0</string>
<key>com.apple.iokit.IONetworkingFamily</key>
<string>3.0</string>
<key>com.apple.iokit.IOSkywalkFamily</key>
<string>1.0</string>
<key>com.apple.kec.corecrypto</key>
<string>1.0</string>
<key>com.apple.kpi.bsd</key>
<string>15.0.0</string>
<key>com.apple.kpi.iokit</key>
<string>15.0.0</string>
<key>com.apple.kpi.libkern</key>
<string>15.0.0</string>
<key>com.apple.kpi.mach</key>
<string>15.0.0</string>
<key>com.apple.kpi.private</key>
<string>15.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>15.0.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Network-Root</string>
</dict>
</plist>
Binary file not shown.
@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18A391019</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>AirPortBrcm4360</string>
<key>CFBundleGetInfoString</key>
<string>14.0, Copyright © 2006-2014 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AirPort.Brcm4360</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>AirPortBrcm4360</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>14.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1400.1.1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11M392v</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>10.15</string>
<key>DTSDKBuild</key>
<string>19C49</string>
<key>DTSDKName</key>
<string>macosx10.15internal</string>
<key>DTXcode</key>
<string>1100</string>
<key>DTXcodeBuild</key>
<string>11M392v</string>
<key>IOKitPersonalities</key>
<dict>
<key>Broadcom 802.11 PCI</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AirPort.Brcm4360</string>
<key>IOClass</key>
<string>AirPort_Brcm4360</string>
<key>IOMatchCategory</key>
<string>IODefaultMatchCategory</string>
<key>IONameMatch</key>
<array>
<string>pci14e4,4331</string>
<string>pci14e4,4353</string>
<string>pci14e4,43a3</string>
</array>
<key>IOProbeScore</key>
<integer>1400</integer>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>TruePowerOff</key>
<true/>
</dict>
</dict>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.driver.corecapture</key>
<string>1.0.0</string>
<key>com.apple.driver.mDNSOffloadUserClient</key>
<string>1.0.0d7</string>
<key>com.apple.iokit.IO80211Family</key>
<string>600.0</string>
<key>com.apple.iokit.IONetworkingFamily</key>
<string>3.1</string>
<key>com.apple.iokit.IOPCIFamily</key>
<string>2.8</string>
<key>com.apple.kpi.bsd</key>
<string>13.0.0</string>
<key>com.apple.kpi.iokit</key>
<string>13.0.0</string>
<key>com.apple.kpi.libkern</key>
<string>13.0.0</string>
<key>com.apple.kpi.mach</key>
<string>13.0.0</string>
<key>com.apple.kpi.private</key>
<string>14.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>13.0.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Network-Root</string>
</dict>
</plist>
@@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>version.plist</key>
<data>
0F/uy7bHiNRd6QzqyJ3ZSMjCgVQ=
</data>
</dict>
<key>files2</key>
<dict>
<key>version.plist</key>
<dict>
<key>hash2</key>
<data>
nwCVkngkSnbZIFttyeVZ49ZxFMdSgC7pz7bjCwgCTfY=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildAliasOf</key>
<string>AirPortDriverBrcm4360</string>
<key>BuildVersion</key>
<string>115</string>
<key>CFBundleShortVersionString</key>
<string>14.0</string>
<key>CFBundleVersion</key>
<string>1400.1.1</string>
<key>ProjectName</key>
<string>AirPortDriverBrcm4360</string>
<key>SourceVersion</key>
<string>1415000000000000</string>
</dict>
</plist>
@@ -0,0 +1,103 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18A391019</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>AirPortBrcmNIC</string>
<key>CFBundleGetInfoString</key>
<string>14.0, Copyright © 2006-2014 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AirPort.BrcmNIC</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>AirPortBrcmNIC</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>14.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1400.1.1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11M392v</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>10.15</string>
<key>DTSDKBuild</key>
<string>19C49</string>
<key>DTSDKName</key>
<string>macosx10.15internal</string>
<key>DTXcode</key>
<string>1100</string>
<key>DTXcodeBuild</key>
<string>11M392v</string>
<key>IOKitPersonalities</key>
<dict>
<key>Broadcom 802.11 PCI</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AirPort.BrcmNIC</string>
<key>IOClass</key>
<string>AirPort_BrcmNIC</string>
<key>IOMatchCategory</key>
<string>IODefaultMatchCategory</string>
<key>IONameMatch</key>
<array>
<string>pci14e4,43ba</string>
<string>pci14e4,43a3</string>
<string>pci14e4,43a0</string>
</array>
<key>IOProbeScore</key>
<integer>1400</integer>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>TruePowerOff</key>
<true/>
</dict>
</dict>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.driver.corecapture</key>
<string>1.0.0</string>
<key>com.apple.driver.mDNSOffloadUserClient</key>
<string>1.0.0d7</string>
<key>com.apple.iokit.IO80211Family</key>
<string>600.0</string>
<key>com.apple.iokit.IONetworkingFamily</key>
<string>3.1</string>
<key>com.apple.iokit.IOPCIFamily</key>
<string>2.8</string>
<key>com.apple.iokit.IOSkywalkFamily</key>
<string>1.0</string>
<key>com.apple.kpi.bsd</key>
<string>13.0.0</string>
<key>com.apple.kpi.iokit</key>
<string>13.0.0</string>
<key>com.apple.kpi.libkern</key>
<string>13.0.0</string>
<key>com.apple.kpi.mach</key>
<string>13.0.0</string>
<key>com.apple.kpi.private</key>
<string>14.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>13.0.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Network-Root</string>
</dict>
</plist>
@@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>version.plist</key>
<data>
8nynjfb79Y/EZQGUA6fiuPiZqX4=
</data>
</dict>
<key>files2</key>
<dict>
<key>version.plist</key>
<dict>
<key>hash2</key>
<data>
FC+ebAV1q/S4ooVNKi6Dvk4tUxQOnpkSyV21LddvtKM=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildAliasOf</key>
<string>AirPortDriverBrcmNIC</string>
<key>BuildVersion</key>
<string>208</string>
<key>CFBundleShortVersionString</key>
<string>14.0</string>
<key>CFBundleVersion</key>
<string>1400.1.1</string>
<key>ProjectName</key>
<string>AirPortDriverBrcmNIC</string>
<key>SourceVersion</key>
<string>1435003000000000</string>
</dict>
</plist>
@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18A391019</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>IO80211NetBooter</string>
<key>CFBundleGetInfoString</key>
<string>12.0, Copyright © 20052016 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.IO80211NetBooter</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>IO80211NetBooter</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1200.12.2b1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11M392v</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>10.15</string>
<key>DTSDKBuild</key>
<string>19C49</string>
<key>DTSDKName</key>
<string>macosx10.15internal</string>
<key>DTXcode</key>
<string>1100</string>
<key>DTXcodeBuild</key>
<string>11M392v</string>
<key>IOKitPersonalities</key>
<dict>
<key>IO80211NetBooter</key>
<dict>
<key>IOClass</key>
<string>IO80211NetBooter</string>
<key>IOProviderClass</key>
<string>IO80211NetBootNub</string>
</dict>
</dict>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.iokit.IO80211Family</key>
<string>1200.12.2b1</string>
<key>com.apple.iokit.IONetworkingFamily</key>
<string>3.0</string>
<key>com.apple.kpi.bsd</key>
<string>15.0.0</string>
<key>com.apple.kpi.iokit</key>
<string>15.0.0</string>
<key>com.apple.kpi.libkern</key>
<string>15.0.0</string>
<key>com.apple.kpi.mach</key>
<string>15.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>15.0.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Network-Root</string>
</dict>
</plist>
@@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>version.plist</key>
<data>
4Q7sQP5JFDcM7DQON0w665057xw=
</data>
</dict>
<key>files2</key>
<dict>
<key>version.plist</key>
<dict>
<key>hash2</key>
<data>
v4EDpHlglRU9SQ+i14dzTsF4yoGI0Oq3eftq7zqRfIg=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildAliasOf</key>
<string>AirPortFamily</string>
<key>BuildVersion</key>
<string>74</string>
<key>CFBundleShortVersionString</key>
<string>12.0</string>
<key>CFBundleVersion</key>
<string>1200.12.2b1</string>
<key>ProjectName</key>
<string>AirPortFamily_kexts</string>
<key>SourceVersion</key>
<string>1570001000000000</string>
</dict>
</plist>
@@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>version.plist</key>
<data>
4Q7sQP5JFDcM7DQON0w665057xw=
</data>
</dict>
<key>files2</key>
<dict>
<key>PlugIns/AirPortBrcm4360.kext</key>
<dict>
<key>cdhash</key>
<data>
ziIIRJdcgkztH3J0FMhlEonfpew=
</data>
<key>requirement</key>
<string>identifier "com.apple.driver.AirPort.Brcm4360" and anchor apple</string>
</dict>
<key>PlugIns/AirPortBrcmNIC.kext</key>
<dict>
<key>cdhash</key>
<data>
oxAOgAqFiAPPnT3QqJis8b6xXw4=
</data>
<key>requirement</key>
<string>identifier "com.apple.driver.AirPort.BrcmNIC" and anchor apple</string>
</dict>
<key>PlugIns/IO80211NetBooter.kext</key>
<dict>
<key>cdhash</key>
<data>
rbtx7Ue7ZWMpHFpMiU//vCdxaSw=
</data>
<key>requirement</key>
<string>identifier "com.apple.driver.IO80211NetBooter" and anchor apple</string>
</dict>
<key>version.plist</key>
<dict>
<key>hash2</key>
<data>
v4EDpHlglRU9SQ+i14dzTsF4yoGI0Oq3eftq7zqRfIg=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildAliasOf</key>
<string>AirPortFamily</string>
<key>BuildVersion</key>
<string>74</string>
<key>CFBundleShortVersionString</key>
<string>12.0</string>
<key>CFBundleVersion</key>
<string>1200.12.2b1</string>
<key>ProjectName</key>
<string>AirPortFamily_kexts</string>
<key>SourceVersion</key>
<string>1570001000000000</string>
</dict>
</plist>
@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18A391019</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>IOBluetoothFamily</string>
<key>CFBundleGetInfoString</key>
<string>7.0.2, Copyright © 2002-2019 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.IOBluetoothFamily</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>IOBluetoothFamily</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>7.0.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>7.0.2f4</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11M392v</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>10.15</string>
<key>DTSDKBuild</key>
<string>19C43</string>
<key>DTSDKName</key>
<string>macosx10.15internal</string>
<key>DTXcode</key>
<string>1100</string>
<key>DTXcodeBuild</key>
<string>11M392v</string>
<key>IOKitPersonalities</key>
<dict>
<key>IOBluetoothHCIController</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.IOBluetoothFamily</string>
<key>IOClass</key>
<string>IOBluetoothHCIController</string>
<key>IOMatchCategory</key>
<string>IOBluetoothHCIController</string>
<key>IOProviderClass</key>
<string>IOResources</string>
<key>IOResourceMatch</key>
<string>IOKit</string>
</dict>
<key>IOBluetoothRFCOMM</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.IOBluetoothFamily</string>
<key>IOClass</key>
<string>IOBluetoothRFCOMMConnection</string>
<key>IOPropertyMatch</key>
<dict>
<key>PSM</key>
<integer>3</integer>
</dict>
<key>IOProviderClass</key>
<string>IOBluetoothL2CAPChannel</string>
</dict>
</dict>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2002-2019 Apple Inc. All rights reserved.</string>
<key>OSBundleCompatibleVersion</key>
<string>1.2b9</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.iokit.IOACPIFamily</key>
<string>1.0.0</string>
<key>com.apple.iokit.IOBluetoothPacketLogger</key>
<string>2.0.0</string>
<key>com.apple.iokit.IOReportFamily</key>
<string>1.0</string>
<key>com.apple.iokit.IOUSBHostFamily</key>
<string>1.0.1</string>
<key>com.apple.kpi.bsd</key>
<string>9.0.0</string>
<key>com.apple.kpi.iokit</key>
<string>9.0.0</string>
<key>com.apple.kpi.libkern</key>
<string>9.0.0</string>
<key>com.apple.kpi.mach</key>
<string>9.0.0</string>
<key>com.apple.kpi.private</key>
<string>8.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>9.0.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Safe Boot</string>
</dict>
</plist>
Binary file not shown.
@@ -0,0 +1,243 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>18A391019</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>CFBundleGetInfoString</key>
<string>7.0.2, Copyright © 2002-2019 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>7.0.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>7.0.2f4</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>11M392v</string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>10.15</string>
<key>DTSDKBuild</key>
<string>19C43</string>
<key>DTSDKName</key>
<string>macosx10.15internal</string>
<key>DTXcode</key>
<string>1100</string>
<key>DTXcodeBuild</key>
<string>11M392v</string>
<key>IOKitPersonalities</key>
<dict>
<key>Bluetooth Entitlement</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleUSBHostMergeProperties</string>
<key>IOClass</key>
<string>AppleUSBHostMergeProperties</string>
<key>IOProviderClass</key>
<string>IOUSBHostDevice</string>
<key>IOProviderMergeProperties</key>
<dict>
<key>UsbUserClientEntitlementRequired</key>
<string>com.apple.bluetooth.control</string>
</dict>
<key>idProductArray</key>
<array>
<integer>33425</integer>
<integer>33428</integer>
<integer>33430</integer>
<integer>33424</integer>
</array>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X238</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostDevice</string>
<key>LMPLoggingEnabled</key>
<true/>
<key>idProduct</key>
<integer>33425</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X238D</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostDevice</string>
<key>LMPLoggingEnabled</key>
<true/>
<key>idProduct</key>
<integer>33428</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X238D_Interface</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostInterface</string>
<key>LMPLoggingEnabled</key>
<false/>
<key>bConfigurationValue</key>
<integer>1</integer>
<key>bInterfaceNumber</key>
<integer>2</integer>
<key>idProduct</key>
<integer>33428</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X238E</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostDevice</string>
<key>LMPLoggingEnabled</key>
<false/>
<key>idProduct</key>
<integer>33430</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X238E_Interface</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostInterface</string>
<key>LMPLoggingEnabled</key>
<false/>
<key>bConfigurationValue</key>
<integer>1</integer>
<key>bInterfaceNumber</key>
<integer>2</integer>
<key>idProduct</key>
<integer>33430</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X238_Interface</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostInterface</string>
<key>LMPLoggingEnabled</key>
<true/>
<key>bConfigurationValue</key>
<integer>1</integer>
<key>bInterfaceNumber</key>
<integer>2</integer>
<key>idProduct</key>
<integer>33425</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X87</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostDevice</string>
<key>LMPLoggingEnabled</key>
<true/>
<key>idProduct</key>
<integer>33424</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
<key>Broadcom2046FamilyUSBBluetoothHCIController_X87_Interface</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.BroadcomBluetooth20703USBTransport</string>
<key>IOClass</key>
<string>BroadcomBluetooth20703USBTransport</string>
<key>IOProviderClass</key>
<string>IOUSBHostInterface</string>
<key>LMPLoggingEnabled</key>
<false/>
<key>bConfigurationValue</key>
<integer>1</integer>
<key>bInterfaceNumber</key>
<integer>2</integer>
<key>idProduct</key>
<integer>33424</integer>
<key>idVendor</key>
<integer>1452</integer>
</dict>
</dict>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2002-2019 Apple Inc. All rights reserved.</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport</key>
<string>1.0.0</string>
<key>com.apple.iokit.IOACPIFamily</key>
<string>1.0.0</string>
<key>com.apple.iokit.IOBluetoothFamily</key>
<string>2.0.0</string>
<key>com.apple.iokit.IOBluetoothHostControllerTransport</key>
<string>1.0.0</string>
<key>com.apple.iokit.IOBluetoothHostControllerUSBTransport</key>
<string>1.0.0</string>
<key>com.apple.iokit.IOPCIFamily</key>
<string>1.0.0</string>
<key>com.apple.iokit.IOUSBHostFamily</key>
<string>1.0.1</string>
<key>com.apple.kpi.iokit</key>
<string>8.0</string>
<key>com.apple.kpi.libkern</key>
<string>8.0</string>
<key>com.apple.kpi.mach</key>
<string>8.0</string>
<key>com.apple.kpi.private</key>
<string>8.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>8.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Safe Boot</string>
</dict>
</plist>
@@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>version.plist</key>
<data>
acC8OFQjOELTufSVlsAut90aFFk=
</data>
</dict>
<key>files2</key>
<dict>
<key>version.plist</key>
<dict>
<key>hash2</key>
<data>
oS27st49hJydF4ynNRmXnJiKEnhw8ztasyuVdcb7KRc=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^Resources/</key>
<true/>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^.*</key>
<true/>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^Resources/.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^Resources/.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Resources/Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^[^/]+$</key>
<dict>
<key>nested</key>
<true/>
<key>weight</key>
<real>10</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildAliasOf</key>
<string>IOBluetoothFamily</string>
<key>BuildVersion</key>
<string>95</string>
<key>CFBundleShortVersionString</key>
<string>7.0.2</string>
<key>CFBundleVersion</key>
<string>7.0.2f4</string>
<key>ProjectName</key>
<string>IOBluetoothFamily_kexts</string>
<key>SourceVersion</key>
<string>7002004004000000</string>
</dict>
</plist>

Some files were not shown because too many files have changed in this diff Show More