mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-14 04:38:20 +10:00
Merge pull request #120 from dortania/remote-binaries
Support Remote binaries
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,8 +1,7 @@
|
||||
.DS_Store
|
||||
OCLP-GUI.command
|
||||
/payloads/Apple/Frameworks
|
||||
/payloads/Apple/LaunchDaemons
|
||||
/payloads/Apple/PrivateFrameworks
|
||||
/payloads/Apple-Binaries-OCLP-main
|
||||
/payloads/__MACOSX
|
||||
/App
|
||||
/Build-Folder
|
||||
/build
|
||||
|
||||
@@ -73,6 +73,7 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
[f"Set Vault Mode:\t\t\tCurrently {self.constants.vault}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).change_vault],
|
||||
[f"Set SIP and SecureBootModel:\tSIP: {self.constants.sip_status} SBM: {self.constants.secure_status}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).change_sip],
|
||||
[f"Set SMBIOS Mode:\t\t\tCurrently {self.constants.serial_settings}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).change_serial],
|
||||
[f"Set Custom Patch Repo", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).custom_repo],
|
||||
]
|
||||
|
||||
for option in options:
|
||||
|
||||
@@ -210,5 +210,30 @@ running, however this will enforce iMac Nvidia Build Patches.
|
||||
self.constants.imac_nvidia_build = True
|
||||
elif change_menu in {"n", "N", "no", "No"}:
|
||||
self.constants.imac_nvidia_build = False
|
||||
else:
|
||||
print("Invalid option")
|
||||
|
||||
def custom_repo(self):
|
||||
utilities.cls()
|
||||
utilities.header(["Swet custom patch repo"])
|
||||
print(f"""For users participating in OpenCore Patcher betas, this is
|
||||
where you can add custom repos such as Google Drive links.
|
||||
|
||||
Valid options:
|
||||
|
||||
1. Set custom location
|
||||
2. Reset repo location
|
||||
3. Exit
|
||||
|
||||
Current repo:
|
||||
{self.constants.url_apple_binaries}
|
||||
""")
|
||||
change_menu = input("Set custom location?: ")
|
||||
if change_menu == "1":
|
||||
self.constants.url_backup = self.constants.url_apple_binaries
|
||||
self.constants.url_apple_binaries = input("Enter new URL: ")
|
||||
elif change_menu == "2":
|
||||
if self.constants.url_backup != "":
|
||||
self.constants.url_apple_binaries = self.constants.url_backup
|
||||
else:
|
||||
print("Invalid option")
|
||||
@@ -74,6 +74,10 @@ class Constants:
|
||||
self.catalina = 19
|
||||
self.big_sur = 20
|
||||
|
||||
# External Files
|
||||
self.url_backup = ""
|
||||
self.url_apple_binaries = "https://github.com/dortania/Apple-Binaries-OCLP/archive/refs/heads/main.zip"
|
||||
|
||||
# Payload Location
|
||||
# OpenCore
|
||||
@property
|
||||
@@ -192,7 +196,9 @@ class Constants:
|
||||
|
||||
# Apple Paylods Paths
|
||||
@property
|
||||
def payload_apple_root_path(self): return self.payload_path / Path("Apple")
|
||||
def payload_apple_root_path(self): return self.payload_path / Path("Apple-Binaries-OCLP-main")
|
||||
@property
|
||||
def payload_apple_root_path_zip(self): return self.payload_path / Path("Apple.zip")
|
||||
@property
|
||||
def payload_apple_kexts_path(self): return self.payload_apple_root_path / Path("Extensions")
|
||||
@property
|
||||
@@ -204,22 +210,20 @@ class Constants:
|
||||
|
||||
# Apple Extensions
|
||||
@property
|
||||
def applebcm_path(self): return self.payload_apple_kexts_path / Path("misc-kexts/AppleBCM5701Ethernet.kext")
|
||||
@property
|
||||
def applehda_path(self): return self.payload_apple_kexts_path / Path("misc-kexts/AppleHDA.kext")
|
||||
@property
|
||||
def iosurface_path(self): return self.payload_apple_kexts_path / Path("misc-kexts/IOSurface.kext")
|
||||
def applehda_path(self): return self.payload_apple_kexts_path / Path("Audio/AppleHDA.kext")
|
||||
|
||||
|
||||
# GPU Kexts and Bundles
|
||||
@property
|
||||
def legacy_nvidia_path(self): return self.payload_apple_kexts_path / Path("legacy-nvidia")
|
||||
def legacy_graphics(self): return self.payload_apple_kexts_path / Path("Graphics-Acceleration")
|
||||
@property
|
||||
def legacy_amd_path(self): return self.payload_apple_kexts_path / Path("legacy-amd")
|
||||
def legacy_nvidia_path(self): return self.legacy_graphics / Path("Nvidia-Tesla-Fermi")
|
||||
@property
|
||||
def legacy_intel_gen1_path(self): return self.payload_apple_kexts_path / Path("intel-gen1")
|
||||
def legacy_amd_path(self): return self.legacy_graphics / Path("AMD-ATI")
|
||||
@property
|
||||
def legacy_intel_gen2_path(self): return self.payload_apple_kexts_path / Path("intel-gen2")
|
||||
def legacy_intel_gen1_path(self): return self.legacy_graphics / Path("Intel-Gen5-Iconlake")
|
||||
@property
|
||||
def legacy_intel_gen2_path(self): return self.legacy_graphics / Path("Intel-Gen6-SandyBridge")
|
||||
|
||||
# Apple Frameworks
|
||||
@property
|
||||
|
||||
@@ -13,6 +13,8 @@ import shutil
|
||||
import subprocess
|
||||
import uuid
|
||||
import zipfile
|
||||
import os
|
||||
import urllib.request
|
||||
from pathlib import Path
|
||||
from datetime import date
|
||||
|
||||
@@ -219,6 +221,35 @@ class PatchSysVolume:
|
||||
self.sip_patch_status = True
|
||||
self.csr_decode(self.sip_status, False)
|
||||
|
||||
def check_files(self):
|
||||
if Path(self.constants.payload_apple_root_path).exists():
|
||||
print("- Found Apple Binaries")
|
||||
patch_input = input("Would you like to redownload?(y/n): ")
|
||||
if patch_input in {"y", "Y", "yes", "Yes"}:
|
||||
shutil.rmtree(Path(self.constants.payload_apple_root_path))
|
||||
self.download_files()
|
||||
else:
|
||||
print("- Apple binaries missing")
|
||||
self.download_files()
|
||||
|
||||
def download_files(self):
|
||||
print("- Downloading Apple binaries")
|
||||
try:
|
||||
urllib.request.urlretrieve(self.constants.url_apple_binaries, self.constants.payload_apple_root_path_zip)
|
||||
except urllib.error.HTTPError:
|
||||
print("- Link invalid")
|
||||
if self.constants.payload_apple_root_path_zip.exists():
|
||||
print("- Download completed")
|
||||
print("- Unzipping download...")
|
||||
try:
|
||||
zipfile.ZipFile(self.constants.payload_apple_root_path_zip).extractall(self.constants.payload_path)
|
||||
except zipfile.BadZipFile:
|
||||
print("- Couldn't unzip")
|
||||
os.remove(self.constants.payload_apple_root_path_zip)
|
||||
else:
|
||||
print("- Download failed, please verify the below link works:")
|
||||
print(self.constants.url_apple_binaries)
|
||||
|
||||
def start_patch(self):
|
||||
# Check SIP
|
||||
if self.constants.custom_model is not None:
|
||||
@@ -235,10 +266,12 @@ class PatchSysVolume:
|
||||
if (self.sip_patch_status is False) and (self.smb_status is False):
|
||||
print("- Detected SIP and SecureBootModel are disabled, continuing")
|
||||
input("\nPress [ENTER] to continue")
|
||||
self.find_mount_root_vol(True)
|
||||
self.unmount_drive()
|
||||
print("- Patching complete")
|
||||
print("\nPlease reboot the machine for patches to take effect")
|
||||
self.check_files()
|
||||
if self.constants.payload_apple_root_path.exists():
|
||||
self.find_mount_root_vol(True)
|
||||
self.unmount_drive()
|
||||
print("- Patching complete")
|
||||
print("\nPlease reboot the machine for patches to take effect")
|
||||
if self.sip_patch_status is True:
|
||||
print("SIP set incorrectly, cannot patch on this machine!")
|
||||
print("Please disable SIP and SecureBootModel in Patcher Settings")
|
||||
|
||||
@@ -1,191 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>17F68</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelFramebufferAzul</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelFramebufferAzul 10.34.27</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferAzul</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferAzul</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.34.27</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.3.4</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>17F68</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>AppleIntelFramebufferController</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferAzul</string>
|
||||
<key>FBCControl</key>
|
||||
<dict>
|
||||
<key>Compression</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>FBMemControl</key>
|
||||
<integer>11</integer>
|
||||
<key>FeatureControl</key>
|
||||
<dict>
|
||||
<key>ASRDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>AllowAtomicCSCUpdates</key>
|
||||
<integer>0</integer>
|
||||
<key>CachedEDIDDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>DPM</key>
|
||||
<integer>1</integer>
|
||||
<key>DynamicRingTables</key>
|
||||
<integer>0</integer>
|
||||
<key>EDPDownSpreadDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>EnableConnectionState</key>
|
||||
<integer>1</integer>
|
||||
<key>EnableDeepDisplay</key>
|
||||
<integer>1</integer>
|
||||
<key>EnablePlaneRotation</key>
|
||||
<integer>1</integer>
|
||||
<key>FBC</key>
|
||||
<integer>1</integer>
|
||||
<key>FastDisplayDetectDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>GPUInterruptHandling</key>
|
||||
<integer>1</integer>
|
||||
<key>Gamma</key>
|
||||
<integer>1</integer>
|
||||
<key>GammaAdjustDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>IgnorePanelTimings</key>
|
||||
<integer>0</integer>
|
||||
<key>IsC8Permitted</key>
|
||||
<integer>0</integer>
|
||||
<key>MaximumSelfRefreshLevel</key>
|
||||
<integer>3</integer>
|
||||
<key>PowerStates</key>
|
||||
<integer>1</integer>
|
||||
<key>RCxEIModeEnable</key>
|
||||
<integer>1</integer>
|
||||
<key>RenderStandby</key>
|
||||
<integer>1</integer>
|
||||
<key>SetRC6Voltage</key>
|
||||
<integer>0</integer>
|
||||
<key>SpreadON</key>
|
||||
<integer>1</integer>
|
||||
<key>UseInterruptFilter</key>
|
||||
<integer>1</integer>
|
||||
<key>UseProgrammedCoefficients</key>
|
||||
<integer>0</integer>
|
||||
<key>Watermarks</key>
|
||||
<integer>1</integer>
|
||||
<key>enable8kmode</key>
|
||||
<integer>1</integer>
|
||||
<key>lp3enable</key>
|
||||
<integer>1</integer>
|
||||
<key>noapertureaccess</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelAzulController</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x0d268086 0x0a268086 0x0a2e8086 0x0d228086 0x04128086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
<key>RCxControl</key>
|
||||
<dict>
|
||||
<key>RC1_Threshold</key>
|
||||
<integer>260</integer>
|
||||
<key>RC6_Threshold</key>
|
||||
<integer>520</integer>
|
||||
<key>RC6p_Threshold</key>
|
||||
<integer>1300</integer>
|
||||
<key>RC_Eval_Interval</key>
|
||||
<integer>26000</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>FBClientController</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferAzul</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleMEClientController</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>AppleMEClientController</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AppleIntelAzulController</string>
|
||||
<key>IOUserClientClass</key>
|
||||
<string>AppleSNBFBUserClient</string>
|
||||
<key>RetryCount</key>
|
||||
<integer>3</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 1999-2013 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.AppleGraphicsDeviceControl</key>
|
||||
<string>1.0</string>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOAcceleratorFamily2</key>
|
||||
<string>2.0.0</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.1</string>
|
||||
<key>com.apple.iokit.IOReportFamily</key>
|
||||
<string>1.0</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.private</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.unsupported</key>
|
||||
<string>10.0.0</string>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
BgFD7p9WmjDRW+rw/P+eo7DMDkQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
ZyyYVw8n4rD0ZC7GwP3Sa7yiAd7qpipbshOhYTZ8uJw=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversIntel</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>5</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.34.27</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.3.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversIntel</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10034027000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,198 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>17F68</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelFramebufferCapri</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelFramebufferCapri 10.34.27</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferCapri</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferCapri</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.34.27</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.3.4</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>17F68</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>AppleIntelFramebufferController</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferCapri</string>
|
||||
<key>FBCControl</key>
|
||||
<dict>
|
||||
<key>Compression</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>FBMemControl</key>
|
||||
<integer>11</integer>
|
||||
<key>FeatureControl</key>
|
||||
<dict>
|
||||
<key>ASRDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>CachedEDIDDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>DPM</key>
|
||||
<integer>1</integer>
|
||||
<key>DeepRC6</key>
|
||||
<integer>1</integer>
|
||||
<key>DisableDynamicFBC</key>
|
||||
<integer>0</integer>
|
||||
<key>EDPDownSpreadDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>EnableConnectionState</key>
|
||||
<integer>1</integer>
|
||||
<key>EnableDeepDisplay</key>
|
||||
<integer>1</integer>
|
||||
<key>EnablePlaneRotation</key>
|
||||
<integer>1</integer>
|
||||
<key>FBC</key>
|
||||
<integer>1</integer>
|
||||
<key>FastDisplayDetectDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>GPUInterruptHandling</key>
|
||||
<integer>1</integer>
|
||||
<key>Gamma</key>
|
||||
<integer>1</integer>
|
||||
<key>GammaAdjustDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>IgnorePanelTimings</key>
|
||||
<integer>0</integer>
|
||||
<key>MaximumSelfRefreshLevel</key>
|
||||
<integer>3</integer>
|
||||
<key>PowerStates</key>
|
||||
<integer>1</integer>
|
||||
<key>RCxEIModeEnable</key>
|
||||
<integer>1</integer>
|
||||
<key>RenderStandby</key>
|
||||
<integer>1</integer>
|
||||
<key>SetRC6Voltage</key>
|
||||
<integer>0</integer>
|
||||
<key>SpreadON</key>
|
||||
<integer>1</integer>
|
||||
<key>UseInterruptFilter</key>
|
||||
<integer>1</integer>
|
||||
<key>UseProgrammedCoefficients</key>
|
||||
<integer>0</integer>
|
||||
<key>Watermarks</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelCapriController</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x01528086 0x01568086 0x01628086 0x01668086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
<key>RCxControl</key>
|
||||
<dict>
|
||||
<key>RC1_Threshold</key>
|
||||
<integer>260</integer>
|
||||
<key>RC6_Threshold</key>
|
||||
<integer>520</integer>
|
||||
<key>RC6p_Threshold</key>
|
||||
<integer>1300</integer>
|
||||
<key>RC_Eval_Interval</key>
|
||||
<integer>26000</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>AppleIntelMEIDriver</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferCapri</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelMEIDriver</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IODefaultMatchCategory</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x1E3A8086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
</dict>
|
||||
<key>FBClientController</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelFramebufferCapri</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleMEClientController</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>AppleMEClientController</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AppleIntelCapriController</string>
|
||||
<key>IOUserClientClass</key>
|
||||
<string>AppleSNBFBUserClient</string>
|
||||
<key>RetryCount</key>
|
||||
<integer>3</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 1999-2013 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.AppleGraphicsDeviceControl</key>
|
||||
<string>1.0</string>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOAcceleratorFamily2</key>
|
||||
<string>2.0.0</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.1</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.private</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.unsupported</key>
|
||||
<string>10.0.0</string>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
BgFD7p9WmjDRW+rw/P+eo7DMDkQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
ZyyYVw8n4rD0ZC7GwP3Sa7yiAd7qpipbshOhYTZ8uJw=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversIntel</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>5</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.34.27</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.3.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversIntel</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10034027000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,84 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHDGraphics</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHDGraphics 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphics</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple Embedded Graphics Kernel Extension</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>GPUCompanionBundles</key>
|
||||
<array>
|
||||
<string>AppleIntelHDGraphicsGA.plugin</string>
|
||||
<string>AppleIntelHDGraphicsGLDriver.bundle</string>
|
||||
<string>AppleIntelHDGraphicsVADriver.bundle</string>
|
||||
</array>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>Gen575</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphics</string>
|
||||
<key>IOCFPlugInTypes</key>
|
||||
<dict>
|
||||
<key>ACCF0000-0000-0000-0000-000a2789904e</key>
|
||||
<string>AppleIntelHDGraphicsGA.plugin</string>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>Gen575</string>
|
||||
<key>IODVDBundleName</key>
|
||||
<string>AppleIntelHDGraphicsVADriver</string>
|
||||
<key>IOGLBundleName</key>
|
||||
<string>AppleIntelHDGraphicsGLDriver</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOAccelerator</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000 0x04000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x00448086 0x00468086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>100</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
<key>IOVARendererID</key>
|
||||
<integer>17301504</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 1999-2012 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.0.0b1</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.0.0b1</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.unsupported</key>
|
||||
<string>8.0.0</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
KEXT????
|
||||
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,95 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHDGraphicsFB</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHDGraphicsFB 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphicsFB</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphicsFB</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>AppleIntelHDGraphicsFB</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphicsFB</string>
|
||||
<key>FBCControl</key>
|
||||
<dict>
|
||||
<key>Compression</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>FeatureControl</key>
|
||||
<dict>
|
||||
<key>FBC</key>
|
||||
<integer>1</integer>
|
||||
<key>GPUInterruptHandling</key>
|
||||
<integer>0</integer>
|
||||
<key>Gamma</key>
|
||||
<integer>1</integer>
|
||||
<key>MaximumSelfRefreshLevel</key>
|
||||
<integer>1</integer>
|
||||
<key>PowerStates</key>
|
||||
<integer>1</integer>
|
||||
<key>RSTimerTest</key>
|
||||
<integer>1</integer>
|
||||
<key>RenderStandby</key>
|
||||
<integer>1</integer>
|
||||
<key>Watermarks</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelHDGraphicsFB</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x468086 0x428086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>10.4.14</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 1999-2012 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</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.unsupported</key>
|
||||
<string>8.0.0</string>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHDGraphicsGA</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHDGraphicsGA 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphicsGA</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple Gen575 Graphics Driver</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>CFPlugInDynamicRegistration</key>
|
||||
<string>NO</string>
|
||||
<key>CFPlugInFactories</key>
|
||||
<dict>
|
||||
<key>80862582-0000-0000-0000-ffffffffffff</key>
|
||||
<string>Gen575GAFactory</string>
|
||||
</dict>
|
||||
<key>CFPlugInTypes</key>
|
||||
<dict>
|
||||
<key>ACCF0000-0000-0000-0000-000a2789904e</key>
|
||||
<array>
|
||||
<string>80862582-0000-0000-0000-ffffffffffff</string>
|
||||
</array>
|
||||
</dict>
|
||||
<key>NSExecutable</key>
|
||||
<string>AppleIntelHDGraphicsGA</string>
|
||||
<key>Personality</key>
|
||||
<dict>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOFramebuffer</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
BNDL????
|
||||
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,26 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHDGraphicsGLDriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHDGraphicsGLDriver 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHDGraphicsGLDriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Intel g575 OpenGL Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
BNDL????
|
||||
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,46 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHDGraphicsVADriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHDGraphicsVADriver 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.AppleIntelHDGraphicsVADriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>AppleIntelHDGraphicsVADriver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<string>yes</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>17F68</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx10.13internal</string>
|
||||
<key>DTXcode</key>
|
||||
<string>0930</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>9P107g</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,92 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHD3000Graphics</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHD3000Graphics 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHD3000Graphics</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple Embedded Graphics Kernel Extension</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>GPUCompanionBundles</key>
|
||||
<array>
|
||||
<string>AppleIntelHD3000GraphicsGA.plugin</string>
|
||||
<string>AppleIntelHD3000GraphicsGLDriver.bundle</string>
|
||||
<string>AppleIntelHD3000GraphicsVADriver.bundle</string>
|
||||
</array>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>Gen6</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHD3000Graphics</string>
|
||||
<key>IOCFPlugInTypes</key>
|
||||
<dict>
|
||||
<key>ACCF0000-0000-0000-0000-000a2789904e</key>
|
||||
<string>AppleIntelHD3000GraphicsGA.plugin</string>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>Gen6Accelerator</string>
|
||||
<key>IODVDBundleName</key>
|
||||
<string>AppleIntelHD3000GraphicsVADriver</string>
|
||||
<key>IOGLBundleName</key>
|
||||
<string>AppleIntelHD3000GraphicsGLDriver</string>
|
||||
<key>IOGVACodec</key>
|
||||
<string>Gen6</string>
|
||||
<key>IOGVAScaler</key>
|
||||
<string>Gen6</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOAccelerator</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x01068086 0x06018086 0x01168086 0x01028086 0x01268086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>100</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
<key>IOVARendererID</key>
|
||||
<integer>17301505</integer>
|
||||
<key>VRAMMethod</key>
|
||||
<integer>0</integer>
|
||||
<key>VRAMOverride</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 1999-2012 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.0.0b1</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.0.0b1</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.unsupported</key>
|
||||
<string>8.0.0</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
KEXT????
|
||||
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,41 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHD3000GraphicsGA</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHD3000GraphicsGA 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHD3000GraphicsGA</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple Gen6 Graphics Driver</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>CFPlugInDynamicRegistration</key>
|
||||
<string>NO</string>
|
||||
<key>CFPlugInFactories</key>
|
||||
<dict>
|
||||
<key>80862582-0000-0000-0000-ffffffffffff</key>
|
||||
<string>Gen6GAFactory</string>
|
||||
</dict>
|
||||
<key>CFPlugInTypes</key>
|
||||
<dict>
|
||||
<key>ACCF0000-0000-0000-0000-000a2789904e</key>
|
||||
<array>
|
||||
<string>80862582-0000-0000-0000-ffffffffffff</string>
|
||||
</array>
|
||||
</dict>
|
||||
<key>NSExecutable</key>
|
||||
<string>AppleIntelHD3000GraphicsGA</string>
|
||||
<key>Personality</key>
|
||||
<dict>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOFramebuffer</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
BNDL????
|
||||
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,26 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHD3000GraphicsGLDriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHD3000GraphicsGLDriver 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelHD3000GraphicsGLDriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Intel g575 OpenGL Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
BNDL????
|
||||
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,46 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelHD3000GraphicsVADriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelHD3000GraphicsVADriver 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.AppleIntelHD3000GraphicsVADriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>AppleIntelHD3000GraphicsVADriver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<string>yes</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>17F68</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx10.13internal</string>
|
||||
<key>DTXcode</key>
|
||||
<string>0930</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>9P107g</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,261 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelSNBGraphicsFB</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelSNBGraphicsFB 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</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>17F68</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>AppleIntelMEIDriver</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelMEIDriver</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IODefaultMatchCategory</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x1C3A8086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
</dict>
|
||||
<key>AppleIntelSNBGraphicsController</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>FBCControl</key>
|
||||
<dict>
|
||||
<key>Compression</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<key>FeatureControl</key>
|
||||
<dict>
|
||||
<key>DPM</key>
|
||||
<integer>1</integer>
|
||||
<key>FBC</key>
|
||||
<integer>0</integer>
|
||||
<key>GPUInterruptHandling</key>
|
||||
<integer>1</integer>
|
||||
<key>Gamma</key>
|
||||
<integer>1</integer>
|
||||
<key>IgnorePanelTimings</key>
|
||||
<integer>0</integer>
|
||||
<key>MaximumSelfRefreshLevel</key>
|
||||
<integer>3</integer>
|
||||
<key>PowerStates</key>
|
||||
<integer>0</integer>
|
||||
<key>RenderStandby</key>
|
||||
<integer>1</integer>
|
||||
<key>SetRC6Voltage</key>
|
||||
<integer>0</integer>
|
||||
<key>UseInterruptFilter</key>
|
||||
<integer>1</integer>
|
||||
<key>Watermarks</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelSNBGraphicsFB</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x04800000&0xfff00000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x010b8086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
</dict>
|
||||
<key>AppleIntelSNBGraphicsController2</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>FBCControl</key>
|
||||
<dict>
|
||||
<key>Compression</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<key>FeatureControl</key>
|
||||
<dict>
|
||||
<key>DPM</key>
|
||||
<integer>1</integer>
|
||||
<key>FBC</key>
|
||||
<integer>0</integer>
|
||||
<key>GPUInterruptHandling</key>
|
||||
<integer>1</integer>
|
||||
<key>Gamma</key>
|
||||
<integer>1</integer>
|
||||
<key>IgnorePanelTimings</key>
|
||||
<integer>0</integer>
|
||||
<key>MaximumSelfRefreshLevel</key>
|
||||
<integer>3</integer>
|
||||
<key>PowerStates</key>
|
||||
<integer>0</integer>
|
||||
<key>RenderStandby</key>
|
||||
<integer>1</integer>
|
||||
<key>SetRC6Voltage</key>
|
||||
<integer>0</integer>
|
||||
<key>ThreadingMode</key>
|
||||
<integer>0</integer>
|
||||
<key>UseInterruptFilter</key>
|
||||
<integer>1</integer>
|
||||
<key>Watermarks</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelSNBGraphicsFB</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x01028086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>0.0.0.0.0</string>
|
||||
</dict>
|
||||
<key>AppleIntelSNBGraphicsFB</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>FBCControl</key>
|
||||
<dict>
|
||||
<key>Compression</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<key>FeatureControl</key>
|
||||
<dict>
|
||||
<key>CachedEDIDDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>DPM</key>
|
||||
<integer>1</integer>
|
||||
<key>FBC</key>
|
||||
<integer>0</integer>
|
||||
<key>FastDisplayDetectDisable</key>
|
||||
<integer>0</integer>
|
||||
<key>GPUInterruptHandling</key>
|
||||
<integer>1</integer>
|
||||
<key>Gamma</key>
|
||||
<integer>1</integer>
|
||||
<key>IgnorePanelTimings</key>
|
||||
<integer>0</integer>
|
||||
<key>MaximumSelfRefreshLevel</key>
|
||||
<integer>3</integer>
|
||||
<key>PowerStates</key>
|
||||
<integer>1</integer>
|
||||
<key>RenderStandby</key>
|
||||
<integer>1</integer>
|
||||
<key>SetRC6Voltage</key>
|
||||
<integer>0</integer>
|
||||
<key>SpreadON</key>
|
||||
<integer>1</integer>
|
||||
<key>UseInterruptFilter</key>
|
||||
<integer>1</integer>
|
||||
<key>Watermarks</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>AppleIntelSNBGraphicsFB</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xff000000</string>
|
||||
<key>IOPCIPrimaryMatch</key>
|
||||
<string>0x01068086 0x11068086 0x16018086 01168086 01268086</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>80000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>10.4.14</string>
|
||||
</dict>
|
||||
<key>FBClientController</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleIntelSNBGraphicsFB</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleMEClientController</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>AppleMEClientController</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AppleIntelSNBGraphicsFB</string>
|
||||
<key>IOUserClientClass</key>
|
||||
<string>AppleSNBFBUserClient</string>
|
||||
<key>RetryCount</key>
|
||||
<integer>3</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 1999-2012 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.1</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.private</key>
|
||||
<string>10.0.0</string>
|
||||
<key>com.apple.kpi.unsupported</key>
|
||||
<string>10.0.0</string>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,56 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleIntelSNBFBVA</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AppleIntelSNBFBVA 10.4.14</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.AppleIntelSNBFBVA</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>com.apple.AppleIntelSNBFBVA</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<string>yes</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>17F68</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx10.13internal</string>
|
||||
<key>DTXcode</key>
|
||||
<string>0930</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>9P107g</string>
|
||||
<key>System Support</key>
|
||||
<dict>
|
||||
<key>TSNBCRB1,1</key>
|
||||
<dict>
|
||||
<key>boostIG</key>
|
||||
<true/>
|
||||
<key>preferredBGRA</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,137 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
jO7jFAIGmLkMJoD3qJvOPFEmR+U=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>MacOS/AppleIntelSNBVA</key>
|
||||
<dict>
|
||||
<key>cdhash</key>
|
||||
<data>
|
||||
HEbIExKkchYl/bjvu5btqa9wRI8=
|
||||
</data>
|
||||
<key>requirement</key>
|
||||
<string>identifier "com.apple.AppleIntelSNBVA" and anchor apple</string>
|
||||
</dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
Q2ubA6teiDS1V+WTD21+QgAnsKmpBPeZDAkLebhHX5c=
|
||||
</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>
|
||||
Binary file not shown.
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>1120</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>10.4.14</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>10.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>10004014000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,171 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD2400Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD2400Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD2400Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon HD 2400 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Iago</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_DACAFV</key>
|
||||
<data>
|
||||
AAACkQ==
|
||||
</data>
|
||||
<key>CFG_ICGB</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_LDITH</key>
|
||||
<data>
|
||||
ARAAAA==
|
||||
</data>
|
||||
<key>CFG_TAPADV</key>
|
||||
<data>
|
||||
AAMCHw==
|
||||
</data>
|
||||
<key>CFG_TAPASV</key>
|
||||
<data>
|
||||
AAMCHw==
|
||||
</data>
|
||||
<key>CFG_TATADV</key>
|
||||
<data>
|
||||
AAEDiA==
|
||||
</data>
|
||||
<key>CFG_TATASV</key>
|
||||
<data>
|
||||
AAEDiA==
|
||||
</data>
|
||||
<key>CFG_TVN_CMC</key>
|
||||
<data>
|
||||
gAABiA==
|
||||
</data>
|
||||
<key>CFG_TVN_YPG</key>
|
||||
<data>
|
||||
AQABMg==
|
||||
</data>
|
||||
<key>CFG_TVP_CMC</key>
|
||||
<data>
|
||||
hE8Bpw==
|
||||
</data>
|
||||
<key>CFG_TVP_LOL</key>
|
||||
<data>
|
||||
ACACSQ==
|
||||
</data>
|
||||
<key>CFG_TVP_YPG</key>
|
||||
<data>
|
||||
AQABMg==
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD2400Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD2400Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD2400Controller</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>pci1002,94c8</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
<key>CFG_PAA</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_QUAL_DEF</key>
|
||||
<integer>2</integer>
|
||||
<key>CFG_QUAL_EN_DEF</key>
|
||||
<false/>
|
||||
<key>CFG_SHARP_DEF</key>
|
||||
<integer>5</integer>
|
||||
<key>CFG_USE_SRRB</key>
|
||||
<false/>
|
||||
<key>CFG_USE_USCN</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_DynamicPCIEGen2Enabled</key>
|
||||
<integer>0</integer>
|
||||
<key>PP_GFXClockGatingEnabled</key>
|
||||
<integer>1</integer>
|
||||
<key>PP_R600LoweringHighPercentage</key>
|
||||
<integer>20</integer>
|
||||
<key>PP_R600LoweringMediumPercentage</key>
|
||||
<integer>5</integer>
|
||||
<key>PP_R600RaisingLowPercentage</key>
|
||||
<integer>12</integer>
|
||||
<key>PP_R600RaisingMediumPercentage</key>
|
||||
<integer>50</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,220 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD2600Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD2600Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD2600Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon HD 2600 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Hypoprion</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_DACAFV</key>
|
||||
<data>
|
||||
AAACkQ==
|
||||
</data>
|
||||
<key>CFG_ICGB</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_LDITH</key>
|
||||
<data>
|
||||
ARAAAA==
|
||||
</data>
|
||||
<key>CFG_TAPADV</key>
|
||||
<data>
|
||||
AAMCHw==
|
||||
</data>
|
||||
<key>CFG_TAPASV</key>
|
||||
<data>
|
||||
AAMCHw==
|
||||
</data>
|
||||
<key>CFG_TATADV</key>
|
||||
<data>
|
||||
AAEDiA==
|
||||
</data>
|
||||
<key>CFG_TATASV</key>
|
||||
<data>
|
||||
AAEDiA==
|
||||
</data>
|
||||
<key>CFG_TVN_CMC</key>
|
||||
<data>
|
||||
gAABig==
|
||||
</data>
|
||||
<key>CFG_TVN_LCTL</key>
|
||||
<data>
|
||||
AREADQ==
|
||||
</data>
|
||||
<key>CFG_TVP_CMC</key>
|
||||
<data>
|
||||
hE8BrA==
|
||||
</data>
|
||||
<key>CFG_TVP_LCTL</key>
|
||||
<data>
|
||||
AREADQ==
|
||||
</data>
|
||||
<key>CFG_TVP_LOL</key>
|
||||
<data>
|
||||
ACACSQ==
|
||||
</data>
|
||||
<key>CFG_TVP_YPG</key>
|
||||
<data>
|
||||
AQABMg==
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Lamna</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_LACFLAGS</key>
|
||||
<data>
|
||||
AAAABg==
|
||||
</data>
|
||||
<key>CFG_LACTLB</key>
|
||||
<data>
|
||||
AAAAAQ==
|
||||
</data>
|
||||
<key>CFG_LATADC</key>
|
||||
<data>
|
||||
AAAWAA==
|
||||
</data>
|
||||
<key>CFG_LATADI</key>
|
||||
<data>
|
||||
EAAWAA==
|
||||
</data>
|
||||
<key>CFG_MCIL_DEFER</key>
|
||||
<true/>
|
||||
<key>CFG_TACTLB</key>
|
||||
<data>
|
||||
AAAAAQ==
|
||||
</data>
|
||||
<key>CFG_TAPADV</key>
|
||||
<data>
|
||||
AAEECQ==
|
||||
</data>
|
||||
<key>CFG_TAPASV</key>
|
||||
<data>
|
||||
AAEEFQ==
|
||||
</data>
|
||||
<key>CFG_TATADV</key>
|
||||
<data>
|
||||
AAAAiA==
|
||||
</data>
|
||||
<key>CFG_VCLKEMI</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD2600Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD2600Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD2600Controller</string>
|
||||
<key>IONameMatch</key>
|
||||
<array>
|
||||
<string>pci1002,9588</string>
|
||||
<string>pci1002,9583</string>
|
||||
</array>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
<key>CFG_PAA</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_QUAL_DEF</key>
|
||||
<integer>2</integer>
|
||||
<key>CFG_QUAL_EN_DEF</key>
|
||||
<false/>
|
||||
<key>CFG_SHARP_DEF</key>
|
||||
<integer>5</integer>
|
||||
<key>CFG_USE_SRRB</key>
|
||||
<false/>
|
||||
<key>CFG_USE_USCN</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_DynamicPCIEGen2Enabled</key>
|
||||
<integer>0</integer>
|
||||
<key>PP_GFXClockGatingEnabled</key>
|
||||
<integer>1</integer>
|
||||
<key>PP_R600LoweringHighPercentage</key>
|
||||
<integer>20</integer>
|
||||
<key>PP_R600LoweringMediumPercentage</key>
|
||||
<integer>5</integer>
|
||||
<key>PP_R600RaisingLowPercentage</key>
|
||||
<integer>12</integer>
|
||||
<key>PP_R600RaisingMediumPercentage</key>
|
||||
<integer>50</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,191 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD3800Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD3800Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD3800Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon HD 3870 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Megalodon</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_LACTLB</key>
|
||||
<data>
|
||||
AAAAAQ==
|
||||
</data>
|
||||
<key>CFG_LAPCDC</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_LAPCDI</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_LAPCSCV</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_LAPCSIV</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_PCIE_DEMP</key>
|
||||
<true/>
|
||||
<key>CFG_PPDPM</key>
|
||||
<integer>117901063</integer>
|
||||
<key>CFG_QUAL_DEF</key>
|
||||
<integer>2</integer>
|
||||
<key>CFG_QUAL_EN_DEF</key>
|
||||
<true/>
|
||||
<key>CFG_SHARP_DEF</key>
|
||||
<integer>5</integer>
|
||||
<key>CFG_TACTLB</key>
|
||||
<data>
|
||||
AAAAAQ==
|
||||
</data>
|
||||
<key>CFG_USE_SM</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Triakis</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_LACTLB</key>
|
||||
<data>
|
||||
AAAAAQ==
|
||||
</data>
|
||||
<key>CFG_LAPCDC</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_LAPCDI</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_LAPCSCV</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_LAPCSIV</key>
|
||||
<data>
|
||||
AAAAAA==
|
||||
</data>
|
||||
<key>CFG_TACTLB</key>
|
||||
<data>
|
||||
AAAAAQ==
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD3800Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD3800Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD3800Controller</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>pci1002,9501</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_EFUSE</key>
|
||||
<true/>
|
||||
<key>CFG_PAA</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_QUAL_DEF</key>
|
||||
<integer>2</integer>
|
||||
<key>CFG_QUAL_EN_DEF</key>
|
||||
<false/>
|
||||
<key>CFG_SHARP_DEF</key>
|
||||
<integer>5</integer>
|
||||
<key>CFG_USE_SRRB</key>
|
||||
<false/>
|
||||
<key>CFG_USE_USCN</key>
|
||||
<false/>
|
||||
<key>CFG_VCLKEMI</key>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_GFXClockGatingEnabled</key>
|
||||
<integer>1</integer>
|
||||
<key>PP_R600LoweringHighPercentage</key>
|
||||
<integer>20</integer>
|
||||
<key>PP_R600LoweringMediumPercentage</key>
|
||||
<integer>5</integer>
|
||||
<key>PP_R600RaisingLowPercentage</key>
|
||||
<integer>12</integer>
|
||||
<key>PP_R600RaisingMediumPercentage</key>
|
||||
<integer>50</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,109 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD4600Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD4600Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD4600Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon HD 4600 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Gliff</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_USE_USCN</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD4600Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD4600Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD4600Controller</string>
|
||||
<key>IOPCIMatch</key>
|
||||
<string>0x94901002 0x94881002</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
<key>CFG_PAA</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_USE_USCN</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_GFXClockGatingEnabled</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,109 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD4800Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD4800Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD4800Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon HD 4800 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Cardinal</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD4800Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD4800Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD4800Controller</string>
|
||||
<key>IOPCIMatch</key>
|
||||
<string>0x94401002 0x944a1002</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
<key>CFG_PAA</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_USE_USCN</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_GFXClockGatingEnabled</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,145 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD5000Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD5000Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD5000Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon 5000 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Hoolock</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_FORCE_ICLK</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Langur</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_FORCE_ICLK</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Orangutan</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_GPIO_HIGH</key>
|
||||
<integer>131104</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Zonalis</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD5000Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD5000Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD5000Controller</string>
|
||||
<key>IOPCIMatch</key>
|
||||
<string>0x68981002 0x68991002 0x68E01002 0x68E11002 0x68D81002 0x68C01002 0x68C11002 0x68D91002 0x68B81002 0x68B01002 0x68B11002 0x68A01002 0x68A11002 </string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_ActivitySamplingInterval</key>
|
||||
<integer>1000</integer>
|
||||
<key>PP_DisableMCDownLoadFeature</key>
|
||||
<integer>1</integer>
|
||||
<key>PP_HighSamplingInterval</key>
|
||||
<integer>200000</integer>
|
||||
<key>PP_R600ActivityHysteresis</key>
|
||||
<integer>5</integer>
|
||||
<key>PP_R600LoweringHighPercentage</key>
|
||||
<integer>25</integer>
|
||||
<key>PP_R600LoweringMediumPercentage</key>
|
||||
<integer>10</integer>
|
||||
<key>PP_R600RaisingLowPercentage</key>
|
||||
<integer>10</integer>
|
||||
<key>PP_R600RaisingMediumPercentage</key>
|
||||
<integer>25</integer>
|
||||
<key>PP_UserMaxClockForMultiDisplays</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMD6000Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMD6000Controller 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD6000Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon HD 6000 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Gibba</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_NO_HDCP</key>
|
||||
<true/>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Lotus</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_GEN_FLAGS</key>
|
||||
<integer>1</integer>
|
||||
<key>CFG_USE_STUTTER</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>ATY,Muskgrass</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_GEN_FLAGS</key>
|
||||
<integer>1</integer>
|
||||
<key>CFG_USE_STUTTER</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMD6000Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMD6000Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>AMD6000Controller</string>
|
||||
<key>IOPCIMatch</key>
|
||||
<string>0x67681002 0x67701002 0x67791002 0x67601002 0x67611002 0x67501002 0x67581002 0x67591002 0x67401002 0x67411002 0x67451002 0x67381002 0x67391002 0x67201002 0x67221002 0x67181002 0x67191002 0x68401002 0x68411002 0x67041002</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_CAA</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_CAIL_CAPS</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_FB_LIMIT</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_GEN_FLAGS</key>
|
||||
<integer>0</integer>
|
||||
<key>CFG_GRPH_CONTROL_DIS</key>
|
||||
<integer>40964</integer>
|
||||
<key>CFG_INTERNAL_1080P</key>
|
||||
<true/>
|
||||
<key>CFG_INT_SSPC</key>
|
||||
<integer>25</integer>
|
||||
<key>CFG_NO_HDCP</key>
|
||||
<false/>
|
||||
<key>CFG_NO_PP</key>
|
||||
<false/>
|
||||
<key>CFG_SURFACE_INFO_DIS</key>
|
||||
<integer>1703936</integer>
|
||||
<key>CFG_USE_FBC</key>
|
||||
<false/>
|
||||
<key>CFG_USE_STUTTER</key>
|
||||
<false/>
|
||||
<key>DALReadDelayStutterOff</key>
|
||||
<integer>4</integer>
|
||||
<key>DALUseUrgencyWaterMarkOffset</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<key>aty_properties</key>
|
||||
<dict>
|
||||
<key>PP_ActivitySamplingInterval</key>
|
||||
<integer>1000</integer>
|
||||
<key>PP_DisablePowerContainment</key>
|
||||
<integer>0</integer>
|
||||
<key>PP_HighSamplingInterval</key>
|
||||
<integer>200000</integer>
|
||||
<key>PP_MCLKStutterModeThreshold</key>
|
||||
<integer>30000</integer>
|
||||
<key>PP_R600ActivityHysteresis</key>
|
||||
<integer>5</integer>
|
||||
<key>PP_R600LoweringHighPercentage</key>
|
||||
<integer>25</integer>
|
||||
<key>PP_R600LoweringMediumPercentage</key>
|
||||
<integer>10</integer>
|
||||
<key>PP_R600RaisingLowPercentage</key>
|
||||
<integer>10</integer>
|
||||
<key>PP_R600RaisingMediumPercentage</key>
|
||||
<integer>25</integer>
|
||||
<key>PP_R600VotingRightsClients</key>
|
||||
<integer>12583475</integer>
|
||||
<key>PP_UserMaxClockForMultiDisplays</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMDFramebuffer</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMDFramebuffer 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMDFramebuffer</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>"AMD Framebuffer"</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Framebuffer_Personality</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMDFramebuffer</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMDFramebuffer</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>display</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AtiFbStub</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDSupport</key>
|
||||
<string>1.6.6</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.unsupported</key>
|
||||
<string>8.0.0</string>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -1,128 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>files</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
A9y387T0SReW1NRnoHZLsxotku4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>files2</key>
|
||||
<dict>
|
||||
<key>version.plist</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KgBFB+8PKI9d6BxJgHeHNi0+Nb/SkPX8j/ri7sedwfM=
|
||||
</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>
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildAliasOf</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>BuildVersion</key>
|
||||
<string>11</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GPUDriversAMD</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>1066042000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -1,87 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>16B2657</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AMDLegacyFramebuffer</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>AMDLegacyFramebuffer 1.66.42 19699</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMDLegacyFramebuffer</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>AMD Legacy Framebuffer</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.66.42</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.6</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>17F68</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>Framebuffer_Personality</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.AMDLegacyFramebuffer</string>
|
||||
<key>IOClass</key>
|
||||
<string>AMDLegacyFramebuffer</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>display</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65050</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AMDLegacyStub</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>1.3</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.2</string>
|
||||
<key>com.apple.kext.AMDLegacySupport</key>
|
||||
<string>1.6.6</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.unsupported</key>
|
||||
<string>8.0.0</string>
|
||||
</dict>
|
||||
<key>OSBundleRequired</key>
|
||||
<string>Safe Boot</string>
|
||||
</dict>
|
||||
</plist>
|
||||
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