mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-23 11:30:15 +10:00
Temp work-around botched download
This commit is contained in:
@@ -30,6 +30,8 @@ class Constants:
|
|||||||
self.cpufriend_version = "1.2.3"
|
self.cpufriend_version = "1.2.3"
|
||||||
self.nightshift_version = "1.1.0"
|
self.nightshift_version = "1.1.0"
|
||||||
self.smcspoof_version = "1.0.0"
|
self.smcspoof_version = "1.0.0"
|
||||||
|
self.cputscsync = "1.0.3"
|
||||||
|
self.hibernationfixup = "1.3.9"
|
||||||
|
|
||||||
# Get resource path
|
# Get resource path
|
||||||
self.current_path = Path(__file__).parent.parent.resolve()
|
self.current_path = Path(__file__).parent.parent.resolve()
|
||||||
@@ -132,6 +134,10 @@ class Constants:
|
|||||||
def nightshift_path(self): return self.payload_kexts_path / Path(f"Misc/NightShiftEnabler-v{self.nightshift_version}.zip")
|
def nightshift_path(self): return self.payload_kexts_path / Path(f"Misc/NightShiftEnabler-v{self.nightshift_version}.zip")
|
||||||
@property
|
@property
|
||||||
def smcspoof_path(self): return self.payload_kexts_path / Path(f"Misc/SMC-Spoof-v{self.smcspoof_version}.zip")
|
def smcspoof_path(self): return self.payload_kexts_path / Path(f"Misc/SMC-Spoof-v{self.smcspoof_version}.zip")
|
||||||
|
@property
|
||||||
|
def cputscsync_path(self): return self.payload_kexts_path / Path(f"Acidanthera/CpuTscSync-v{self.cputscsync}.zip")
|
||||||
|
@property
|
||||||
|
def hibernationfixup_path(self): return self.payload_kexts_path / Path(f"Acidanthera/HibernationFixup-v{self.hibernationfixup}.zip")
|
||||||
|
|
||||||
# Build Location
|
# Build Location
|
||||||
@property
|
@property
|
||||||
@@ -196,10 +202,12 @@ class Constants:
|
|||||||
|
|
||||||
# Apple Paylods Paths
|
# Apple Paylods Paths
|
||||||
@property
|
@property
|
||||||
def payload_apple_root_path(self): return self.payload_path / Path("Apple-Binaries-OCLP-main")
|
def payload_apple_root_path_unzip(self): return self.payload_path / Path("Apple-Binaries-OCLP-main")
|
||||||
@property
|
@property
|
||||||
def payload_apple_root_path_zip(self): return self.payload_path / Path("Apple.zip")
|
def payload_apple_root_path_zip(self): return self.payload_path / Path("Apple.zip")
|
||||||
@property
|
@property
|
||||||
|
def payload_apple_root_path(self): return self.payload_path / Path("Apple")
|
||||||
|
@property
|
||||||
def payload_apple_kexts_path(self): return self.payload_apple_root_path / Path("Extensions")
|
def payload_apple_kexts_path(self): return self.payload_apple_root_path / Path("Extensions")
|
||||||
@property
|
@property
|
||||||
def payload_apple_frameworks_path(self): return self.payload_apple_root_path / Path("Frameworks")
|
def payload_apple_frameworks_path(self): return self.payload_apple_root_path / Path("Frameworks")
|
||||||
|
|||||||
@@ -243,6 +243,10 @@ class PatchSysVolume:
|
|||||||
print("- Unzipping download...")
|
print("- Unzipping download...")
|
||||||
try:
|
try:
|
||||||
zipfile.ZipFile(self.constants.payload_apple_root_path_zip).extractall(self.constants.payload_path)
|
zipfile.ZipFile(self.constants.payload_apple_root_path_zip).extractall(self.constants.payload_path)
|
||||||
|
print("- Renaming folder")
|
||||||
|
os.rename(self.constants.payload_apple_root_path_unzip, self.constants.payload_apple_root_path)
|
||||||
|
print("- Binaries downloaded to:")
|
||||||
|
print(self.constants.payload_path)
|
||||||
except zipfile.BadZipFile:
|
except zipfile.BadZipFile:
|
||||||
print("- Couldn't unzip")
|
print("- Couldn't unzip")
|
||||||
os.remove(self.constants.payload_apple_root_path_zip)
|
os.remove(self.constants.payload_apple_root_path_zip)
|
||||||
|
|||||||
@@ -91,6 +91,9 @@ class BuildOpenCore:
|
|||||||
#("VoodooHDA.kext", self.constants.voodoohda_version, self.constants.voodoohda_path, lambda: self.model in ModelArray.LegacyAudio),
|
#("VoodooHDA.kext", self.constants.voodoohda_version, self.constants.voodoohda_path, lambda: self.model in ModelArray.LegacyAudio),
|
||||||
# IDE patch
|
# IDE patch
|
||||||
("AppleIntelPIIXATA.kext", self.constants.piixata_version, self.constants.piixata_path, lambda: self.model in ModelArray.IDEPatch),
|
("AppleIntelPIIXATA.kext", self.constants.piixata_version, self.constants.piixata_path, lambda: self.model in ModelArray.IDEPatch),
|
||||||
|
# Hibernation Tests
|
||||||
|
#("CpuTscSync.kext", self.constants.cputscsync, self.constants.cputscsync_path, lambda: True),
|
||||||
|
#("HibernationFixup.kext", self.constants.hibernationfixup, self.constants.hibernationfixup_path, lambda: True),
|
||||||
]:
|
]:
|
||||||
self.enable_kext(name, version, path, check)
|
self.enable_kext(name, version, path, check)
|
||||||
|
|
||||||
|
|||||||
@@ -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.
@@ -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>
|
||||||
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
@@ -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>
|
||||||
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
@@ -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>
|
||||||
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
@@ -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>
|
||||||
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
@@ -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>
|
||||||
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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