mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 14:40:52 +10:00
Implement backend for Root patching
Note: Currently non-functional for end-users
This commit is contained in:
@@ -1,4 +1,8 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
|
OCLP-GUI.command
|
||||||
|
/payloads/Apple/Frameworks
|
||||||
|
/payloads/Apple/LaunchDaemons
|
||||||
|
/payloads/Apple/PrivateFrameworks
|
||||||
/App
|
/App
|
||||||
/Build-Folder
|
/Build-Folder
|
||||||
/build
|
/build
|
||||||
|
|||||||
@@ -157,3 +157,51 @@ class Constants:
|
|||||||
def icon_path_internal(self): return self.payload_path / Path("Icon/Internal/.VolumeIcon.icns")
|
def icon_path_internal(self): return self.payload_path / Path("Icon/Internal/.VolumeIcon.icns")
|
||||||
@property
|
@property
|
||||||
def gui_path(self): return self.payload_path / Path("Icon/Resources.zip")
|
def gui_path(self): return self.payload_path / Path("Icon/Resources.zip")
|
||||||
|
|
||||||
|
# Apple Paylods Paths
|
||||||
|
@property
|
||||||
|
def payload_apple_kexts_path(self): return self.payload_path / Path("Apple/Extensions")
|
||||||
|
@property
|
||||||
|
def payload_apple_frameworks_path(self): return self.payload_path / Path("Apple/Frameworks")
|
||||||
|
@property
|
||||||
|
def payload_apple_lauchd_path(self): return self.payload_path / Path("Apple/LaunchDaemons")
|
||||||
|
@property
|
||||||
|
def payload_apple_private_frameworks_path(self): return self.payload_path / Path("Apple/PrivateFrameworks")
|
||||||
|
|
||||||
|
# Apple Extensions
|
||||||
|
@property
|
||||||
|
def applebcm_path(self): return self.payload_apple_kexts_path / Path("AppleBCM5701Ethernet.kext")
|
||||||
|
@property
|
||||||
|
def applehda_path(self): return self.payload_apple_kexts_path / Path("AppleHDA.kext")
|
||||||
|
@property
|
||||||
|
def geforcega_path(self): return self.payload_apple_kexts_path / Path("GeForceGA.bundle")
|
||||||
|
@property
|
||||||
|
def geforcetesla_path(self): return self.payload_apple_kexts_path / Path("GeForceTesla.kext")
|
||||||
|
@property
|
||||||
|
def geforceteslagl_path(self): return self.payload_apple_kexts_path / Path("GeForceTeslaGLDriver.bundle")
|
||||||
|
@property
|
||||||
|
def geforceteslava_path(self): return self.payload_apple_kexts_path / Path("GeForceTeslaVADriver.bundle")
|
||||||
|
@property
|
||||||
|
def iosurface_path(self): return self.payload_apple_kexts_path / Path("IOSurface.kext")
|
||||||
|
@property
|
||||||
|
def nvdanv50haltesla_path(self): return self.payload_apple_kexts_path / Path("NVDANV50HalTesla.kext")
|
||||||
|
@property
|
||||||
|
def nvdaresmantesla_path(self): return self.payload_apple_kexts_path / Path("NVDAResmanTesla.kext")
|
||||||
|
|
||||||
|
# Apple Frameworks
|
||||||
|
@property
|
||||||
|
def coredisplay_path(self): return self.payload_apple_frameworks_path / Path("CoreDisplay.framework")
|
||||||
|
@property
|
||||||
|
def iosurface_f_path(self): return self.payload_apple_frameworks_path / Path("IOSurface.framework")
|
||||||
|
@property
|
||||||
|
def opengl_path(self): return self.payload_apple_frameworks_path / Path("OpenGL.framework")
|
||||||
|
|
||||||
|
# Apple LaunchDaemons
|
||||||
|
@property
|
||||||
|
def hiddhack_path(self): return self.payload_apple_lauchd_path / Path("HiddHack.plist")
|
||||||
|
|
||||||
|
# Apple PrivateFrameworks
|
||||||
|
@property
|
||||||
|
def gpusupport_path(self): return self.payload_apple_private_frameworks_path / Path("GPUSupport.framework")
|
||||||
|
@property
|
||||||
|
def skylight_path(self): return self.payload_apple_private_frameworks_path / Path("SkyLight.framework")
|
||||||
@@ -0,0 +1,181 @@
|
|||||||
|
# Framework for mounting and patching macOS root volume
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import binascii
|
||||||
|
import plistlib
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
import uuid
|
||||||
|
import zipfile
|
||||||
|
from pathlib import Path
|
||||||
|
from datetime import date
|
||||||
|
|
||||||
|
from Resources import Constants, ModelArray, utilities
|
||||||
|
|
||||||
|
|
||||||
|
class PatchSysVolume:
|
||||||
|
def __init__(self, model, versions):
|
||||||
|
self.model = model
|
||||||
|
self.constants: Constants.Constants = versions
|
||||||
|
|
||||||
|
def find_mount_root_vol(self):
|
||||||
|
root_partition_info = plistlib.loads(subprocess.run("diskutil info -plist /".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode())
|
||||||
|
self.root_mount_path = root_partition_info["DeviceIdentifier"]
|
||||||
|
self.mount_location = "/System/Volumes/Update/mnt1"
|
||||||
|
self.mount_extensions = f"{self.mount_location}/System/Library/Extensions"
|
||||||
|
self.mount_frameworks = f"{self.mount_location}/System/Library/Frameworks"
|
||||||
|
self.mount_lauchd = f"{self.mount_location}/System/Library/LaunchDaemons"
|
||||||
|
self.mount_private_frameworks = f"{self.mount_location}/System/Library/PrivateFrameworks"
|
||||||
|
|
||||||
|
if self.root_mount_path.startswith("disk"):
|
||||||
|
self.root_mount_path = self.root_mount_path.replace("s1", "", 1)
|
||||||
|
print(f"- Found Root Volume at: {self.root_mount_path}")
|
||||||
|
if Path(self.mount_extensions).exists():
|
||||||
|
print("- Root Volume is already mounted")
|
||||||
|
self.patch_root_vol()
|
||||||
|
else:
|
||||||
|
print("- Mounting drive as writable")
|
||||||
|
subprocess.run(f"sudo mount -o nobrowse -t apfs /dev/{self.root_mount_path} {self.mount_location}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
if Path(self.mount_extensions).exists():
|
||||||
|
print("- Sucessfully mounted the Root Volume")
|
||||||
|
self.patch_root_vol()
|
||||||
|
else:
|
||||||
|
print("- Failed to mount the Root Volume")
|
||||||
|
else:
|
||||||
|
print("- Could not find root volume")
|
||||||
|
|
||||||
|
def gpu_accel_patches(self):
|
||||||
|
# Remove a *lot* of garbage
|
||||||
|
# Remove AMD Drivers
|
||||||
|
print("- Deleting unsupported Binaries")
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX4000.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX4000HWServices.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX5000.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX5000HWServices.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX6000.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX6000Framebuffer.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AMDRadeonX6000HWServices.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Remove Intel
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelBDWGraphics.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelBDWGraphicsFramebuffer.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelCFLGraphicsFramebuffer.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelHD4000Graphics.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelHD5000Graphics.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelICLGraphics.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelICLLPGraphicsFramebuffer.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelKBLGraphics.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelKBLGraphicsFramebuffer.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelSKLGraphics.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelSKLGraphicsFramebuffer.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelFramebufferAzul.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleIntelFramebufferCapri.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Paravirtualized GPU
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleParavirtGPU.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Nvidia
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/GeForce.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/IOAcceleratorFamily2.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/IOGPUFamily.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/IOSurface.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Frameworks
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_frameworks}/CoreDisplay.framework".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_frameworks}/IOSurface.framework".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_frameworks}/OpenGL.framework".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Private Framworks
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_private_frameworks}/GPUSupport.framework".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_private_frameworks}/SkyLight.framework".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
|
||||||
|
# Now add our trash
|
||||||
|
# Kexts
|
||||||
|
print("- Adding supported Binaries")
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcega_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcetesla_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforceteslagl_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforceteslava_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.iosurface_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.nvdanv50haltesla_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.nvdaresmantesla_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcega_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcega_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcega_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcega_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.geforcega_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# Frameworks
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.coredisplay_path} {self.mount_frameworks}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.iosurface_f_path} {self.mount_frameworks}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.opengl_path} {self.mount_frameworks}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# LaunchDaemons
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.hiddhack_path} {self.mount_lauchd}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
# PrivateFrameworks
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.gpusupport_path} {self.mount_private_frameworks}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.skylight_path} {self.mount_private_frameworks}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
print("- Disabling NSDefenestratorModeEnabled")
|
||||||
|
subprocess.run("defaults write -g NSDefenestratorModeEnabled -bool false".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
|
||||||
|
def patch_root_vol(self):
|
||||||
|
print(f"- Detecting patches for {self.model}")
|
||||||
|
|
||||||
|
# Start Patch engine
|
||||||
|
if self.model in ModelArray.LegacyAudio:
|
||||||
|
print("- Attempting AppleHDA Patch")
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/AppleHDA.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.applehda_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
rebuild_required = True
|
||||||
|
|
||||||
|
if self.model in ModelArray.EthernetBroadcom:
|
||||||
|
print("- Attempting AppleBCM5701Ethernet Patch")
|
||||||
|
subprocess.run(f"sudo rm -R {self.mount_extensions}/IONetworkingFamily.kext/Contents/PlugIns/AppleBCM5701Ethernet.kext".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
subprocess.run(f"sudo cp -R {self.constants.applebcm_path} {self.mount_extensions}".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
rebuild_required = True
|
||||||
|
|
||||||
|
if self.model in ModelArray.LegacyGPU:
|
||||||
|
print("- Attemping Legacy GPU Patches")
|
||||||
|
#TODO: Re-enable when GPU patches are public
|
||||||
|
#self.gpu_accel_patches()
|
||||||
|
|
||||||
|
if rebuild_required is True:
|
||||||
|
self.rebuild_snapshot()
|
||||||
|
|
||||||
|
def rebuild_snapshot(self):
|
||||||
|
input("Press [ENTER] to continue with cache rebuild and snapshotting")
|
||||||
|
print("- Rebuilding Kernel Cache (This may take some time)")
|
||||||
|
subprocess.run(f"sudo kmutil install --volume-root {self.mount_location} --update-all".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
print("- Creating new APFS snapshot")
|
||||||
|
subprocess.run(f"sudo bless --folder {self.mount_location}/System/Library/CoreServices --bootefi --create-snapshot".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode()
|
||||||
|
|
||||||
|
def start_patch(self):
|
||||||
|
# Check SIP
|
||||||
|
if self.constants.custom_model != None:
|
||||||
|
print("Cannot patch for another machine!")
|
||||||
|
elif self.model not in ModelArray.SupportedSMBIOS:
|
||||||
|
print("Cannot run on this machine!")
|
||||||
|
elif self.constants.detected_os < 10.16:
|
||||||
|
print(f"Cannot run on this OS: {self.constants.detected_os}")
|
||||||
|
else:
|
||||||
|
nvram_dump = plistlib.loads(subprocess.run("nvram -x -p".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode())
|
||||||
|
try:
|
||||||
|
sip_status = nvram_dump["csr-active-config"]
|
||||||
|
except KeyError:
|
||||||
|
print("- csr-active-config var is missing")
|
||||||
|
sip_status = "00000000"
|
||||||
|
print(sip_status)
|
||||||
|
if sip_status != "EF0F0000":
|
||||||
|
self.find_mount_root_vol()
|
||||||
|
print("- Patching complete")
|
||||||
|
print("\nPlease reboot the machine for patches to take effect")
|
||||||
|
else:
|
||||||
|
print("- SIP enabled, unable to patch")
|
||||||
|
print("\nPlease disable SIP in Patcher Settings, build OpenCore again and reinstall OpenCore")
|
||||||
|
input("Press [Enter] to go exit.")
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
<?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>18A391024</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>AppleBCM5701Ethernet</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>Apple Broadcom 57XX Ethernet 10.3.5, Copyright 2002-2013 Apple Inc.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.iokit.AppleBCM5701Ethernet</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>AppleBCM5701Ethernet</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>KEXT</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>10.3.5</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>10.3.5</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>11O62d</string>
|
||||||
|
<key>DTPlatformName</key>
|
||||||
|
<string>macosx</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>10.15.6</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>19G829</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.15internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>1140</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>11O62d</string>
|
||||||
|
<key>EXTMemorySupport</key>
|
||||||
|
<string></string>
|
||||||
|
<key>IOKitPersonalities</key>
|
||||||
|
<dict>
|
||||||
|
<key>PCI Matching</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.iokit.AppleBCM5701Ethernet</string>
|
||||||
|
<key>Configuration Data</key>
|
||||||
|
<dict>
|
||||||
|
<key>Batch_ARP_Enable</key>
|
||||||
|
<true/>
|
||||||
|
<key>EnableRxHwCksum</key>
|
||||||
|
<true/>
|
||||||
|
<key>EnableTxHwCksum</key>
|
||||||
|
<true/>
|
||||||
|
<key>JumboRcvThreshold</key>
|
||||||
|
<integer>5</integer>
|
||||||
|
<key>MTU</key>
|
||||||
|
<integer>9018</integer>
|
||||||
|
<key>PassUpCRC</key>
|
||||||
|
<false/>
|
||||||
|
<key>RxCoalescingTicks</key>
|
||||||
|
<integer>25</integer>
|
||||||
|
<key>RxCoalescingTicksDuringInt</key>
|
||||||
|
<integer>120</integer>
|
||||||
|
<key>RxJumboRcvBuffers</key>
|
||||||
|
<integer>128</integer>
|
||||||
|
<key>RxMaxCoalescedFrames</key>
|
||||||
|
<integer>15</integer>
|
||||||
|
<key>RxMaxCoalescedFramesDuringInt</key>
|
||||||
|
<integer>15</integer>
|
||||||
|
<key>RxStdRcvBuffers</key>
|
||||||
|
<integer>510</integer>
|
||||||
|
<key>StdRcvThreshold</key>
|
||||||
|
<integer>8</integer>
|
||||||
|
<key>TxCoalescingTicks</key>
|
||||||
|
<integer>150</integer>
|
||||||
|
<key>TxCoalescingTicksDuringInt</key>
|
||||||
|
<integer>150</integer>
|
||||||
|
<key>TxMaxCoalescedFrames</key>
|
||||||
|
<integer>64</integer>
|
||||||
|
<key>TxMaxCoalescedFramesDuringInt</key>
|
||||||
|
<integer>64</integer>
|
||||||
|
<key>TxPacketQueueSize</key>
|
||||||
|
<integer>1024</integer>
|
||||||
|
<key>TxSendBuffers</key>
|
||||||
|
<integer>500</integer>
|
||||||
|
<key>WOL</key>
|
||||||
|
<string>Enable</string>
|
||||||
|
</dict>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>BCM5701Enet</string>
|
||||||
|
<key>IOMatchCategory</key>
|
||||||
|
<string>IODefaultMatchCategory</string>
|
||||||
|
<key>IONameMatch</key>
|
||||||
|
<array>
|
||||||
|
<string>pci14e4,1684</string>
|
||||||
|
<string>pci14e4,16b0</string>
|
||||||
|
<string>pci14e4,16b4</string>
|
||||||
|
<string>pci14e4,1682</string>
|
||||||
|
<string>pci14e4,1686</string>
|
||||||
|
</array>
|
||||||
|
<key>IOPCITunnelCompatible</key>
|
||||||
|
<true/>
|
||||||
|
<key>IOPlatformPanicAction</key>
|
||||||
|
<integer>89000</integer>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>IOPCIDevice</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>LSMinimumSystemVersion</key>
|
||||||
|
<string>10.15</string>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>Copyright © 2002-2013 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>OSBundleLibraries</key>
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.driver.mDNSOffloadUserClient</key>
|
||||||
|
<string>1.0.0d6</string>
|
||||||
|
<key>com.apple.iokit.IOACPIFamily</key>
|
||||||
|
<string>1.2.0</string>
|
||||||
|
<key>com.apple.iokit.IOEthernetAVBController</key>
|
||||||
|
<string>1.0.3b2</string>
|
||||||
|
<key>com.apple.iokit.IONetworkingFamily</key>
|
||||||
|
<string>1.5.0</string>
|
||||||
|
<key>com.apple.iokit.IOPCIFamily</key>
|
||||||
|
<string>1.6</string>
|
||||||
|
<key>com.apple.kpi.bsd</key>
|
||||||
|
<string>8.0.0b2</string>
|
||||||
|
<key>com.apple.kpi.iokit</key>
|
||||||
|
<string>8.0.0b2</string>
|
||||||
|
<key>com.apple.kpi.libkern</key>
|
||||||
|
<string>8.0.0b2</string>
|
||||||
|
<key>com.apple.kpi.mach</key>
|
||||||
|
<string>8.0.0b2</string>
|
||||||
|
<key>com.apple.kpi.private</key>
|
||||||
|
<string>13.0.0</string>
|
||||||
|
</dict>
|
||||||
|
<key>OSBundleRequired</key>
|
||||||
|
<string>Network-Root</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
V+EvCNOJrCzRE72b2VJVdH1Vjx4=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
PVjFit3cgKhkY9C6TjRWp4Pj7Y4iPCeP8elbAFMOPRc=
|
||||||
|
</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>AppleBroadcom570X</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>113</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>10.3.5</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>10.3.5</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleBroadcom570X</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>1067120002000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
+156
@@ -0,0 +1,156 @@
|
|||||||
|
<?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>16B2657</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>AppleHDA</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>AppleHDA 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDA</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>Apple HDA Driver</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>KEXT</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>GM</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>17G55</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.13internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0930</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>IOKitPersonalities</key>
|
||||||
|
<dict>
|
||||||
|
<key>HDA Driver</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDA</string>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>AppleHDADriver</string>
|
||||||
|
<key>IOProbeScore</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>AppleHDACodec</string>
|
||||||
|
<key>InputSampleLatency</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>MultiDisplayPorts</key>
|
||||||
|
<array>
|
||||||
|
<integer>32</integer>
|
||||||
|
<integer>35</integer>
|
||||||
|
<integer>66</integer>
|
||||||
|
</array>
|
||||||
|
<key>OutputSampleLatency</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>SampleOffsetPad</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>SystemSpecificSampleOffsetPad</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>8</integer>
|
||||||
|
<key>SampleOffsetPad</key>
|
||||||
|
<integer>260</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>HDA Generic Codec Driver</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDA</string>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>AppleHDACodecGeneric</string>
|
||||||
|
<key>IOHDACodecFunctionGroupType</key>
|
||||||
|
<integer>1</integer>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>IOHDACodecFunction</string>
|
||||||
|
</dict>
|
||||||
|
<key>HDMI DP HDA Driver</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDA</string>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>AppleHDAHDMI_DPDriver</string>
|
||||||
|
<key>IOProbeScore</key>
|
||||||
|
<integer>1</integer>
|
||||||
|
<key>IOPropertyMatch</key>
|
||||||
|
<dict>
|
||||||
|
<key>HDMIDPAudioCapabilities</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>AppleHDACodec</string>
|
||||||
|
<key>InputSampleLatency</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>MultiDisplayPorts</key>
|
||||||
|
<array>
|
||||||
|
<integer>32</integer>
|
||||||
|
<integer>35</integer>
|
||||||
|
<integer>66</integer>
|
||||||
|
</array>
|
||||||
|
<key>OutputSampleLatency</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>SampleOffsetPad</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>SystemSpecificSampleOffsetPad</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>8</integer>
|
||||||
|
<key>SampleOffsetPad</key>
|
||||||
|
<integer>260</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>AppleHDA 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>OSBundleLibraries</key>
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.driver.AppleHDAController</key>
|
||||||
|
<string>1.7.2a1</string>
|
||||||
|
<key>com.apple.driver.DspFuncLib</key>
|
||||||
|
<string>1.5.2a1</string>
|
||||||
|
<key>com.apple.iokit.IOAudioFamily</key>
|
||||||
|
<string>200.5</string>
|
||||||
|
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||||
|
<string>2.0</string>
|
||||||
|
<key>com.apple.iokit.IOHDAFamily</key>
|
||||||
|
<string>265.88</string>
|
||||||
|
<key>com.apple.iokit.IONDRVSupport</key>
|
||||||
|
<string>2.0</string>
|
||||||
|
<key>com.apple.kpi.bsd</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.iokit</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.libkern</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.mach</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.private</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Binary file not shown.
payloads/Apple/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/Info.plist
Executable
+285
@@ -0,0 +1,285 @@
|
|||||||
|
<?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>16B2657</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>AppleHDAController</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>AppleHDAController 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDAController</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>HDA Controller Driver</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>KEXT</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>GM</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>17G55</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.13internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0930</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>IOKitPersonalities</key>
|
||||||
|
<dict>
|
||||||
|
<key>BuiltInHDA</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDAController</string>
|
||||||
|
<key>CodecAddressFilterArray</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CodecAddressMask</key>
|
||||||
|
<data>
|
||||||
|
AQAAAA==
|
||||||
|
</data>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>16392</integer>
|
||||||
|
<key>PCIVendorDeviceID</key>
|
||||||
|
<integer>282987200</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CodecAddressMask</key>
|
||||||
|
<data>
|
||||||
|
AQAAAA==
|
||||||
|
</data>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>PCIVendorDeviceID</key>
|
||||||
|
<integer>282987200</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CodecAddressMask</key>
|
||||||
|
<data>
|
||||||
|
CQAAAA==
|
||||||
|
</data>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>65</integer>
|
||||||
|
<key>PCIVendorDeviceID</key>
|
||||||
|
<integer>282987200</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CodecAddressMask</key>
|
||||||
|
<data>
|
||||||
|
AQAAAA==
|
||||||
|
</data>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>73</integer>
|
||||||
|
<key>PCIVendorDeviceID</key>
|
||||||
|
<integer>282987200</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>DPAlwaysDisplayRouting</key>
|
||||||
|
<array>
|
||||||
|
<integer>3</integer>
|
||||||
|
<integer>33</integer>
|
||||||
|
<integer>35</integer>
|
||||||
|
<integer>88</integer>
|
||||||
|
</array>
|
||||||
|
<key>DPAudioDeviceExclusion</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>ManufacturerID</key>
|
||||||
|
<integer>1552</integer>
|
||||||
|
<key>ProductID</key>
|
||||||
|
<integer>10130</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>HighFIFOLimitSupport</key>
|
||||||
|
<array/>
|
||||||
|
<key>HwFactoryPrefixTranslation</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>78</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43584</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>78</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43576</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>79</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43584</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>79</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43576</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>AppleHDAController</string>
|
||||||
|
<key>IOPCIClassMatch</key>
|
||||||
|
<string>0x04010000&0xFFFD0000</string>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>IOPCIDevice</string>
|
||||||
|
<key>RequireMaxBusStall</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Layouts</key>
|
||||||
|
<array/>
|
||||||
|
<key>MaxBusStall</key>
|
||||||
|
<integer>15000</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<key>BuiltInHDA9D70</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleHDAController</string>
|
||||||
|
<key>DPAlwaysDisplayRouting</key>
|
||||||
|
<array>
|
||||||
|
<integer>3</integer>
|
||||||
|
<integer>33</integer>
|
||||||
|
<integer>35</integer>
|
||||||
|
<integer>88</integer>
|
||||||
|
</array>
|
||||||
|
<key>DPAudioDeviceExclusion</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>ManufacturerID</key>
|
||||||
|
<integer>1552</integer>
|
||||||
|
<key>ProductID</key>
|
||||||
|
<integer>10130</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>HighFIFOLimitSupport</key>
|
||||||
|
<array/>
|
||||||
|
<key>HwFactoryPrefixTranslation</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>78</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43584</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>78</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43576</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>79</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43584</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>LayoutID</key>
|
||||||
|
<integer>79</integer>
|
||||||
|
<key>SourceDID</key>
|
||||||
|
<integer>43576</integer>
|
||||||
|
<key>StandInDID</key>
|
||||||
|
<integer>43568</integer>
|
||||||
|
<key>VID</key>
|
||||||
|
<integer>4098</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>AppleHDA8086_9D70Controller</string>
|
||||||
|
<key>IONameMatch</key>
|
||||||
|
<array>
|
||||||
|
<string>pci8086,9d70</string>
|
||||||
|
</array>
|
||||||
|
<key>IOProbeScore</key>
|
||||||
|
<integer>2</integer>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>IOPCIDevice</string>
|
||||||
|
<key>RequireMaxBusStall</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>Layouts</key>
|
||||||
|
<array/>
|
||||||
|
<key>MaxBusStall</key>
|
||||||
|
<integer>15000</integer>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>AppleHDAController 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>OSBundleCompatibleVersion</key>
|
||||||
|
<string>1.0.0d1</string>
|
||||||
|
<key>OSBundleLibraries</key>
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.iokit.IOAudioFamily</key>
|
||||||
|
<string>200.5</string>
|
||||||
|
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||||
|
<string>2.0</string>
|
||||||
|
<key>com.apple.iokit.IOHDAFamily</key>
|
||||||
|
<string>265.88</string>
|
||||||
|
<key>com.apple.iokit.IOPCIFamily</key>
|
||||||
|
<string>1.1</string>
|
||||||
|
<key>com.apple.kpi.bsd</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.iokit</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.libkern</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.mach</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.private</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.unsupported</key>
|
||||||
|
<string>12.0</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
MkagQ8RqPBVBLjUnVDMdBf0bdbA=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ=
|
||||||
|
</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>
|
||||||
+18
@@ -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>AppleHDA</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>603</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleHDA</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>281052000000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
+48
@@ -0,0 +1,48 @@
|
|||||||
|
<?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>16B2657</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>AppleHDAHALPlugIn</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>AppleHDAHALPlugIn 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.audio.AppleHDAHALPlugIn</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>Apple HDA HAL Plug-in</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>BNDL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>aaud</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>GM</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>17G1z</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.13internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0930</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>AppleHDAHALPlugIn 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
a5qT6AxomQnjhCdw2wlr7bw85F0=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
rz/HdLGPMBsupqNzQAn+OYfnsy1yG4sxFrDcxsshYUY=
|
||||||
|
</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>
|
||||||
+18
@@ -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>AppleHDA</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>186</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleHDA_frameworks</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>281052000000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
+1083
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
MkagQ8RqPBVBLjUnVDMdBf0bdbA=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ=
|
||||||
|
</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>
|
||||||
+18
@@ -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>AppleHDA</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>603</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleHDA</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>281052000000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Executable
+81
@@ -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>16B2657</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>AppleMikeyDriver</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>AppleMikeyDriver 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleMikeyDriver</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>Apple Mikey Driver</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>KEXT</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>GM</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>17G55</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.13internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0930</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>IOKitPersonalities</key>
|
||||||
|
<dict>
|
||||||
|
<key>AppleMikeyDriver</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.AppleMikeyDriver</string>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>AppleMikeyDriver</string>
|
||||||
|
<key>IONameMatch</key>
|
||||||
|
<array>
|
||||||
|
<string>mikey</string>
|
||||||
|
<string>MKY0</string>
|
||||||
|
<string>MKY1</string>
|
||||||
|
</array>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>AppleSMBusDevice</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>AppleMikeyDriver 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>OSBundleLibraries</key>
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.driver.AppleSMBusController</key>
|
||||||
|
<string>1.0.1d0</string>
|
||||||
|
<key>com.apple.iokit.IOACPIFamily</key>
|
||||||
|
<string>1.2.0a1</string>
|
||||||
|
<key>com.apple.kpi.bsd</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.iokit</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.libkern</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.mach</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
MkagQ8RqPBVBLjUnVDMdBf0bdbA=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ=
|
||||||
|
</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>
|
||||||
+18
@@ -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>AppleHDA</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>603</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleHDA</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>281052000000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Executable
+73
@@ -0,0 +1,73 @@
|
|||||||
|
<?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>16B2657</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>DspFuncLib</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>DspFuncLib 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.driver.DspFuncLib</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>Apple Dsp Function Library</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>KEXT</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>GM</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>17G55</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.13internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0930</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>IOKitPersonalities</key>
|
||||||
|
<dict/>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>DspFuncLib 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>OSBundleCompatibleVersion</key>
|
||||||
|
<string>1.0.0a1</string>
|
||||||
|
<key>OSBundleLibraries</key>
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.driver.AppleEFINVRAM</key>
|
||||||
|
<string>2.0.0</string>
|
||||||
|
<key>com.apple.iokit.IOAudioFamily</key>
|
||||||
|
<string>1.7.0fc16</string>
|
||||||
|
<key>com.apple.kext.OSvKernDSPLib</key>
|
||||||
|
<string>1.9</string>
|
||||||
|
<key>com.apple.kpi.bsd</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.iokit</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.libkern</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.mach</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.kpi.private</key>
|
||||||
|
<string>8.0.0b3</string>
|
||||||
|
<key>com.apple.vecLib.kext</key>
|
||||||
|
<string>1.0</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Executable
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
MkagQ8RqPBVBLjUnVDMdBf0bdbA=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ=
|
||||||
|
</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>
|
||||||
Executable
+18
@@ -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>AppleHDA</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>603</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleHDA</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>281052000000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Executable
+73
@@ -0,0 +1,73 @@
|
|||||||
|
<?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>16B2657</string>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>IOHDAFamily</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>IOHDAFamily 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.iokit.IOHDAFamily</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>I/O Kit High Definition Audio Family</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>KEXT</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
|
<array>
|
||||||
|
<string>MacOSX</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>DTCompiler</key>
|
||||||
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
|
<key>DTPlatformBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>DTPlatformVersion</key>
|
||||||
|
<string>GM</string>
|
||||||
|
<key>DTSDKBuild</key>
|
||||||
|
<string>17G55</string>
|
||||||
|
<key>DTSDKName</key>
|
||||||
|
<string>macosx10.13internal</string>
|
||||||
|
<key>DTXcode</key>
|
||||||
|
<string>0930</string>
|
||||||
|
<key>DTXcodeBuild</key>
|
||||||
|
<string>9P107g</string>
|
||||||
|
<key>IOKitPersonalities</key>
|
||||||
|
<dict>
|
||||||
|
<key>HD Audio Codec</key>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.iokit.IOHDAFamily</string>
|
||||||
|
<key>IOClass</key>
|
||||||
|
<string>IOHDACodecDriver</string>
|
||||||
|
<key>IOProviderClass</key>
|
||||||
|
<string>IOHDACodecDevice</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>IOHDAFamily 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved.</string>
|
||||||
|
<key>OSBundleCompatibleVersion</key>
|
||||||
|
<string>1.0.0d1</string>
|
||||||
|
<key>OSBundleLibraries</key>
|
||||||
|
<dict>
|
||||||
|
<key>com.apple.kpi.bsd</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.iokit</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.libkern</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
<key>com.apple.kpi.mach</key>
|
||||||
|
<string>8.0.0</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
payloads/Apple/Extensions/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/MacOS/IOHDAFamily
Executable
BIN
Binary file not shown.
+128
@@ -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>
|
||||||
|
MkagQ8RqPBVBLjUnVDMdBf0bdbA=
|
||||||
|
</data>
|
||||||
|
</dict>
|
||||||
|
<key>files2</key>
|
||||||
|
<dict>
|
||||||
|
<key>version.plist</key>
|
||||||
|
<dict>
|
||||||
|
<key>hash2</key>
|
||||||
|
<data>
|
||||||
|
8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ=
|
||||||
|
</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>
|
||||||
Executable
+18
@@ -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>AppleHDA</string>
|
||||||
|
<key>BuildVersion</key>
|
||||||
|
<string>603</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>281.52</string>
|
||||||
|
<key>ProjectName</key>
|
||||||
|
<string>AppleHDA</string>
|
||||||
|
<key>SourceVersion</key>
|
||||||
|
<string>281052000000000</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user