mirror of
https://github.com/thewesker/osx-patcher.git
synced 2025-12-24 14:21:06 -05:00
Initial commit
This commit is contained in:
58
resources/InstallerMenuAdditions.plist
Normal file
58
resources/InstallerMenuAdditions.plist
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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">
|
||||
<array>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/Startup Disk.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/Reset Password.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/Firmware Password Utility.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>isRAIDUtility</key>
|
||||
<true/>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/RAID Utility.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>isRAIDUtility</key>
|
||||
<true/>
|
||||
<key>Path</key>
|
||||
<string>/System/Library/CoreServices/Applications/RAID Utility.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/Disk Utility.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/Terminal.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/System Information.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Utilities/Network Utility.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/System/Library/CoreServices/Applications/Network Utility.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/System/Installation/CDIS/Time Machine System Restore.app</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Path</key>
|
||||
<string>/Applications/Safari.app</string>
|
||||
</dict>
|
||||
</array>
|
||||
</plist>
|
||||
BIN
resources/Kernels/10.10/kernel
Executable file
BIN
resources/Kernels/10.10/kernel
Executable file
Binary file not shown.
BIN
resources/Kernels/10.11/kernel
Executable file
BIN
resources/Kernels/10.11/kernel
Executable file
Binary file not shown.
BIN
resources/Kernels/10.9/mach_kernel
Executable file
BIN
resources/Kernels/10.9/mach_kernel
Executable file
Binary file not shown.
BIN
resources/PrelinkedKernel/10.11/prelinkedkernel
Normal file
BIN
resources/PrelinkedKernel/10.11/prelinkedkernel
Normal file
Binary file not shown.
BIN
resources/dm
Executable file
BIN
resources/dm
Executable file
Binary file not shown.
465
resources/patch.sh
Executable file
465
resources/patch.sh
Executable file
@@ -0,0 +1,465 @@
|
||||
#!/bin/bash
|
||||
|
||||
parameters="${1}${2}${3}${4}${5}${6}${7}${8}${9}"
|
||||
|
||||
Escape_Variables()
|
||||
{
|
||||
text_progress="\033[38;5;113m"
|
||||
text_success="\033[38;5;113m"
|
||||
text_warning="\033[38;5;221m"
|
||||
text_error="\033[38;5;203m"
|
||||
text_message="\033[38;5;75m"
|
||||
|
||||
text_bold="\033[1m"
|
||||
text_faint="\033[2m"
|
||||
text_italic="\033[3m"
|
||||
text_underline="\033[4m"
|
||||
|
||||
erase_style="\033[0m"
|
||||
erase_line="\033[0K"
|
||||
|
||||
move_up="\033[1A"
|
||||
move_down="\033[1B"
|
||||
move_foward="\033[1C"
|
||||
move_backward="\033[1D"
|
||||
}
|
||||
|
||||
Parameter_Variables()
|
||||
{
|
||||
if [[ $parameters == *"-v"* || $parameters == *"-verbose"* ]]; then
|
||||
verbose="1"
|
||||
set -x
|
||||
fi
|
||||
}
|
||||
|
||||
Path_Variables()
|
||||
{
|
||||
script_path="${0}"
|
||||
directory_path="${0%/*}"
|
||||
|
||||
resources_path="$directory_path/patch"
|
||||
|
||||
if [[ -d "/patch" ]]; then
|
||||
resources_path="/patch"
|
||||
fi
|
||||
|
||||
if [[ -d "/Volumes/Image Volume/patch" ]]; then
|
||||
resources_path="/Volumes/Image Volume/patch"
|
||||
fi
|
||||
}
|
||||
|
||||
Input_Off()
|
||||
{
|
||||
stty -echo
|
||||
}
|
||||
Input_On()
|
||||
{
|
||||
stty echo
|
||||
}
|
||||
|
||||
Output_Off() {
|
||||
if [[ $verbose == "1" ]]; then
|
||||
"$@"
|
||||
else
|
||||
"$@" &>/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
Check_Environment()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Checking system environment."${erase_style}
|
||||
if [ -d /Install\ *.app ]; then
|
||||
environment="installer"
|
||||
fi
|
||||
if [ ! -d /Install\ *.app ]; then
|
||||
environment="system"
|
||||
fi
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Checked system environment."${erase_style}
|
||||
}
|
||||
|
||||
Check_Root()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Checking for root permissions."${erase_style}
|
||||
if [[ $environment == "installer" ]]; then
|
||||
root_check="passed"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Root permissions check passed."${erase_style}
|
||||
else
|
||||
if [[ $(whoami) == "root" && $environment == "system" ]]; then
|
||||
root_check="passed"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Root permissions check passed."${erase_style}
|
||||
fi
|
||||
if [[ ! $(whoami) == "root" && $environment == "system" ]]; then
|
||||
root_check="failed"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_error}"- Root permissions check failed."${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Run this tool with root permissions."${erase_style}
|
||||
Input_On
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
Check_Resources()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Checking for resources."${erase_style}
|
||||
if [[ -d "$resources_path" ]]; then
|
||||
resources_check="passed"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Resources check passed."${erase_style}
|
||||
fi
|
||||
if [[ ! -d "$resources_path" ]]; then
|
||||
resources_check="failed"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_error}"- Resources check failed."${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Run this tool with the required resources."${erase_style}
|
||||
Input_On
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
Input_Model()
|
||||
{
|
||||
model_list="/ iMac4,1
|
||||
/ iMac4,2
|
||||
/ iMac5,1
|
||||
/ iMac5,2
|
||||
/ MacBook2,1
|
||||
/ MacBook3,1
|
||||
/ MacBook4,1
|
||||
/ MacBookAir1,1
|
||||
/ MacBookPro2,1
|
||||
/ MacBookPro2,2
|
||||
/ Macmini1,1
|
||||
/ Macmini2,1
|
||||
/ MacPro1,1
|
||||
/ MacPro2,1
|
||||
/ Xserve1,1
|
||||
/ Xserve2,1"
|
||||
|
||||
model_detected="$(sysctl -n hw.model)"
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Detecting model."${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Detected model as $model_detected."${erase_style}
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ What model would you like to use?"${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Input an model option."${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ 1 - Use detected model"${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ 2 - Use manually selected model"${erase_style}
|
||||
Input_On
|
||||
read -e -p "$(date "+%b %m %H:%M:%S") / " model_option
|
||||
Input_Off
|
||||
|
||||
if [[ $model_option == "1" ]]; then
|
||||
model="$model_detected"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_success}"+ Using $model_detected as model."${erase_style}
|
||||
fi
|
||||
|
||||
if [[ $model_option == "2" ]]; then
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ What model would you like to use?"${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Input your model."${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"$model_list"${erase_style}
|
||||
Input_On
|
||||
read -e -p "$(date "+%b %m %H:%M:%S") / " model_selected
|
||||
Input_Off
|
||||
model="$model_selected"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_success}"+ Using $model_selected as model."${erase_style}
|
||||
fi
|
||||
}
|
||||
|
||||
Input_Volume()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ What volume would you like to use?"${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Input a volume name."${erase_style}
|
||||
for volume_path in /Volumes/*; do
|
||||
volume_name="${volume_path#/Volumes/}"
|
||||
if [[ ! "$volume_name" == com.apple* ]]; then
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ ${volume_name}"${erase_style} | sort
|
||||
fi
|
||||
done
|
||||
Input_On
|
||||
read -e -p "$(date "+%b %m %H:%M:%S") / " volume_name
|
||||
Input_Off
|
||||
|
||||
volume_path="/Volumes/$volume_name"
|
||||
}
|
||||
|
||||
Check_Volume_Version()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Checking system version."${erase_style}
|
||||
volume_version="$(defaults read "$volume_path"/System/Library/CoreServices/SystemVersion.plist ProductVersion)"
|
||||
volume_version_short="$(defaults read "$volume_path"/System/Library/CoreServices/SystemVersion.plist ProductVersion | cut -c-5)"
|
||||
|
||||
volume_build="$(defaults read "$volume_path"/System/Library/CoreServices/SystemVersion.plist ProductBuildVersion)"
|
||||
|
||||
if [[ ${#volume_version} == "6" ]]; then
|
||||
volume_version_short="$(defaults read "$volume_path"/System/Library/CoreServices/SystemVersion.plist ProductVersion | cut -c-4)"
|
||||
fi
|
||||
|
||||
if [[ $environment == "installer" ]]; then
|
||||
system_volume_version="$(defaults read /System/Library/CoreServices/SystemVersion.plist ProductVersion)"
|
||||
system_volume_version_short="$(defaults read /System/Library/CoreServices/SystemVersion.plist ProductVersion | cut -c-5)"
|
||||
|
||||
system_volume_build="$(defaults read /System/Library/CoreServices/SystemVersion.plist ProductBuildVersion)"
|
||||
|
||||
if [[ ${#volume_version} == "6" ]]; then
|
||||
system_volume_version_short="$(defaults read /System/Library/CoreServices/SystemVersion.plist ProductVersion | cut -c-4)"
|
||||
fi
|
||||
fi
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Checked system version."${erase_style}
|
||||
}
|
||||
|
||||
Check_Volume_Support()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Checking system support."${erase_style}
|
||||
if [[ $volume_version_short == "10."[8-9] || $volume_version_short == "10.1"[0-1] ]]; then
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ System support check passed."${erase_style}
|
||||
else
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_error}"- System support check failed."${erase_style}
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Run this tool on a supported system."${erase_style}
|
||||
Input_On
|
||||
exit
|
||||
fi
|
||||
}
|
||||
|
||||
Patch_Volume()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching boot.efi."${erase_style}
|
||||
if [[ $volume_version_short == "10."[8-9] || $volume_version_short == "10.10" ]]; then
|
||||
chflags nouchg "$volume_path"/System/Library/CoreServices/boot.efi
|
||||
cp "$resources_path"/EFI/10.8/boot.efi "$volume_path"/System/Library/CoreServices
|
||||
chflags uchg "$volume_path"/System/Library/CoreServices/boot.efi
|
||||
fi
|
||||
|
||||
if [[ $volume_version_short == "10.11" ]]; then
|
||||
chflags nouchg "$volume_path"/System/Library/CoreServices/boot.efi
|
||||
cp "$resources_path"/EFI/10.11/boot.efi "$volume_path"/System/Library/CoreServices
|
||||
chflags uchg "$volume_path"/System/Library/CoreServices/boot.efi
|
||||
fi
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched boot.efi."${erase_style}
|
||||
|
||||
if [[ $volume_version_short == "10.11" ]]; then
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching input drivers."${erase_style}
|
||||
rm -R "$volume_path"/System/Library/Extensions/IOUSBHostFamily.kext
|
||||
cp -R "$resources_path"/AppleHIDMouse.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIRController.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleTopCase.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleUSBMultitouch.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleUSBTopCase.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOBDStorageFamily.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOBluetoothFamily.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOBluetoothHIDDriver.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOSerialFamily.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOUSBFamily.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOUSBHostFamily.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOUSBMassStorageClass.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/SIPManager.kext "$volume_path"/System/Library/Extensions/
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched input drivers."${erase_style}
|
||||
fi
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching graphics drivers."${erase_style}
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD2400Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD2600Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD3800Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD4600Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD4800Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD5000Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD6000Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD7000Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD8000Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMD9000Controller.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDFramebuffer.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDMTLBronzeDriver.bundle
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDRadeonVADriver.bundle
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDRadeonX3000.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDRadeonX3000GLDriver.bundle
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDRadeonX4000.kext
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDRadeonX4000GLDriver.bundle
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDShared.bundle
|
||||
Output_Off rm -R "$volume_path"/System/Library/Extensions/AMDSupport.kext
|
||||
|
||||
cp -R "$resources_path"/AppleIntelGMA950.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMA950GA.plugin "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMA950GLDriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMA950VADriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMAX3100.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMAX3100FB.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMAX3100GA.plugin "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMAX3100GLDriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelGMAX3100VADriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/AppleIntelIntegratedFramebuffer.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATI1300Controller.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATI1600Controller.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATI1900Controller.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATIFramebuffer.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATIRadeonX1000.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATIRadeonX1000GA.plugin "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATIRadeonX1000GLDriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATIRadeonX1000VADriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/ATISupport.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForce.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForce7xxx.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForce7xxxGA.plugin "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForce7xxxGLDriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForce7xxxVADriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForceGA.plugin "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForceGLDriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/GeForceVADriver.bundle "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NoSleep.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVDAGF100Hal.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVDAGK100Hal.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVDANV40HalG7xxx.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVDANV50Hal.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVDAResman.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVDAResmanG7xxx.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/NVSMU.kext "$volume_path"/System/Library/Extensions/
|
||||
|
||||
Output_Off cp -R "$resources_path"/Brightness\ Slider.app "$volume_path"/Applications/Utilities
|
||||
Output_Off cp -R "$resources_path"/NoSleep.app "$volume_path"/Applications/Utilities
|
||||
Output_Off cp -R "$resources_path"/NoSleep.prefPane "$volume_path"/System/Library/PreferencePanes
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched graphics drivers."${erase_style}
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching audio drivers."${erase_style}
|
||||
cp -R "$resources_path"/AppleHDA.kext "$volume_path"/System/Library/Extensions/
|
||||
cp -R "$resources_path"/IOAudioFamily.kext "$volume_path"/System/Library/Extensions/
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched audio drivers."${erase_style}
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching platform support check."${erase_style}
|
||||
Output_Off rm "$volume_path"/System/Library/CoreServices/PlatformSupport.plist
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched platform support check."${erase_style}
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching kernel flags."${erase_style}
|
||||
sed -i '' 's|<string></string>|<string>kext-dev-mode=1 mbasd=1</string>|' "$volume_path"/Library/Preferences/SystemConfiguration/com.apple.Boot.plist
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched kernel flags."${erase_style}
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching kernel cache."${erase_style}
|
||||
Output_Off rm "$volume_path"/System/Library/Caches/com.apple.kext.caches/Startup/kernelcache
|
||||
Output_Off rm "$volume_path"/System/Library/PrelinkedKernels/prelinkedkernel
|
||||
Output_Off kextcache -f -u "$volume_path"
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched kernel cache."${erase_style}
|
||||
}
|
||||
|
||||
Repair()
|
||||
{
|
||||
chown -R 0:0 "$@"
|
||||
chmod -R 755 "$@"
|
||||
}
|
||||
|
||||
Repair_Permissions()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Repairing permissions."${erase_style}
|
||||
if [[ $volume_version_short == "10.11" ]]; then
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleHIDMouse.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIRController.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleTopCase.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleUSBMultitouch.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleUSBTopCase.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOBDStorageFamily.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOBluetoothFamily.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOBluetoothHIDDriver.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOSerialFamily.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOUSBFamily.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOUSBHostFamily.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOUSBMassStorageClass.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/SIPManager.kext
|
||||
fi
|
||||
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMA950.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMA950GA.plugin
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMA950GLDriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMA950VADriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMAX3100.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMAX3100FB.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMAX3100GA.plugin
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelGMAX3100VADriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleIntelIntegratedFramebuffer.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/ATI1300Controller.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/ATI1600Controller.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/ATI1900Controller.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/ATIFramebuffer.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/ATIRadeonX1000.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/ATIRadeonX1000GA.plugin
|
||||
Repair "$volume_path"/System/Library/Extensions/ATIRadeonX1000GLDriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/ATIRadeonX1000VADriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/ATISupport.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForce.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForce7xxx.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForce7xxxGA.plugin
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForce7xxxGLDriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForce7xxxVADriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForceGA.plugin
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForceGLDriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/GeForceVADriver.bundle
|
||||
Repair "$volume_path"/System/Library/Extensions/NVDAGF100Hal.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/NVDAGK100Hal.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/NVDANV40HalG7xxx.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/NVDANV50Hal.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/NVDAResman.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/NVDAResmanG7xxx.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/NVSMU.kext
|
||||
|
||||
Repair "$volume_path"/Applications/Utilities/Brightness\ Slider.app
|
||||
Repair "$volume_path"/Applications/Utilities/NoSleep.app
|
||||
Repair "$volume_path"/System/Library/PreferencePanes/NoSleep.prefPane
|
||||
|
||||
Repair "$volume_path"/System/Library/Extensions/AppleHDA.kext
|
||||
Repair "$volume_path"/System/Library/Extensions/IOAudioFamily.kext
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Repaired permissions."${erase_style}
|
||||
}
|
||||
|
||||
Patch_Volume_Helpers()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_progress}"> Patching Recovery partition."${erase_style}
|
||||
|
||||
if [[ $volume_version_short == "10."[8-9] && $system_volume_version == $volume_version ]]; then
|
||||
recovery_identifier="$(dm ensureRecoveryPartition "$volume_path" /BaseSystem.dmg 0 0 /BaseSystem.chunklist|grep "RecoveryPartitionBSD"|sed 's/.*\=\ //'|sed 's/.$//')"
|
||||
fi
|
||||
|
||||
if [[ $volume_version_short == "10.1"[0-1] ]]; then
|
||||
recovery_identifier="$(diskutil info "$volume_name"|grep "Recovery Disk"|sed 's/.*\ //')"
|
||||
fi
|
||||
|
||||
if [[ ! "$(diskutil info "${recovery_identifier}"|grep "Volume Name"|sed 's/.*\ //')" == "Recovery HD" ]]; then
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_warning}"! Error patching Recovery partition."${erase_style}
|
||||
else
|
||||
Output_Off diskutil mount "$recovery_identifier"
|
||||
|
||||
chflags nouchg /Volumes/Recovery\ HD/com.apple.recovery.boot/boot.efi
|
||||
cp "$volume_path"/System/Library/CoreServices/boot.efi /Volumes/Recovery\ HD/com.apple.recovery.boot
|
||||
chflags uchg /Volumes/Recovery\ HD/com.apple.recovery.boot/boot.efi
|
||||
|
||||
if [[ $volume_version_short == "10.11" ]]; then
|
||||
chflags nouchg /Volumes/Recovery\ HD/com.apple.recovery.boot/prelinkedkernel
|
||||
rm /Volumes/Recovery\ HD/com.apple.recovery.boot/prelinkedkernel
|
||||
cp "$volume_path"/System/Library/PrelinkedKernels/prelinkedkernel /Volumes/Recovery\ HD/com.apple.recovery.boot
|
||||
chflags uchg /Volumes/Recovery\ HD/com.apple.recovery.boot/prelinkedkernel
|
||||
fi
|
||||
|
||||
Output_Off rm /Volumes/Recovery\ HD/com.apple.recovery.boot/PlatformSupport.plist
|
||||
Output_Off sed -i '' 's|dmg</string>|dmg -no_compat_check kext-dev-mode=1 mbasd=1</string>|' /Volumes/Recovery\ HD/com.apple.recovery.boot/com.apple.boot.plist
|
||||
|
||||
Output_Off diskutil unmount /Volumes/Recovery\ HD
|
||||
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${move_up}${erase_line}${text_success}"+ Patched Recovery partition."${erase_style}
|
||||
fi
|
||||
}
|
||||
|
||||
End()
|
||||
{
|
||||
echo -e $(date "+%b %m %H:%M:%S") ${text_message}"/ Thank you for using OS X Patcher."${erase_style}
|
||||
Input_On
|
||||
exit
|
||||
}
|
||||
|
||||
Input_Off
|
||||
Escape_Variables
|
||||
Parameter_Variables
|
||||
Path_Variables
|
||||
Check_Environment
|
||||
Check_Root
|
||||
Check_Resources
|
||||
Input_Model
|
||||
Input_Volume
|
||||
Check_Volume_Version
|
||||
Check_Volume_Support
|
||||
Patch_Volume
|
||||
Repair_Permissions
|
||||
Patch_Volume_Helpers
|
||||
End
|
||||
117
resources/patch/ATI1300Controller.kext/Contents/Info.plist
Executable file
117
resources/patch/ATI1300Controller.kext/Contents/Info.plist
Executable file
@@ -0,0 +1,117 @@
|
||||
<?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>11E53</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>ATI1300Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATI1300Controller 7.32.12 11587</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATI1300Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon X1300 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Caretta</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_DGPIO</key>
|
||||
<data>
|
||||
AQkAAA==
|
||||
</data>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATI1300Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>ATI1300Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>ATI1300Controller</string>
|
||||
<key>IONameMatch</key>
|
||||
<array>
|
||||
<string>pci1002,7187</string>
|
||||
<string>pci1002,7146</string>
|
||||
</array>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_ASPM</key>
|
||||
<false/>
|
||||
<key>CFG_CAA</key>
|
||||
<integer>4</integer>
|
||||
<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>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.1.36</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.2</string>
|
||||
<key>com.apple.kext.ATISupport</key>
|
||||
<string>1.1.36</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>
|
||||
BIN
resources/patch/ATI1300Controller.kext/Contents/MacOS/ATI1300Controller
Executable file
BIN
resources/patch/ATI1300Controller.kext/Contents/MacOS/ATI1300Controller
Executable file
Binary file not shown.
BIN
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeDirectory
Executable file
BIN
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeDirectory
Executable file
Binary file not shown.
BIN
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeRequirements
Executable file
BIN
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeRequirements
Executable file
Binary file not shown.
90
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeResources
Executable file
90
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeResources
Executable file
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
2EngZsIYJOWyUqOt0KGlEUIM4Hc=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeSignature
Executable file
BIN
resources/patch/ATI1300Controller.kext/Contents/_CodeSignature/CodeSignature
Executable file
Binary file not shown.
16
resources/patch/ATI1300Controller.kext/Contents/version.plist
Executable file
16
resources/patch/ATI1300Controller.kext/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7032012000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
112
resources/patch/ATI1600Controller.kext/Contents/Info.plist
Executable file
112
resources/patch/ATI1600Controller.kext/Contents/Info.plist
Executable file
@@ -0,0 +1,112 @@
|
||||
<?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>11E53</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>ATI1600Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATI1600Controller 7.32.12 11587</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATI1600Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon X1600 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Wormy</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_ICGB</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATI1600Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>ATI1600Controller</string>
|
||||
<key>IOKitDebug</key>
|
||||
<integer>1</integer>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>ATI1600Controller</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>pci1002,71c5</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_CAA</key>
|
||||
<integer>4</integer>
|
||||
<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>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.1.36</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.2</string>
|
||||
<key>com.apple.kext.ATISupport</key>
|
||||
<string>1.1.36</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>
|
||||
BIN
resources/patch/ATI1600Controller.kext/Contents/MacOS/ATI1600Controller
Executable file
BIN
resources/patch/ATI1600Controller.kext/Contents/MacOS/ATI1600Controller
Executable file
Binary file not shown.
BIN
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeDirectory
Executable file
BIN
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeDirectory
Executable file
Binary file not shown.
BIN
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeRequirements
Executable file
BIN
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeRequirements
Executable file
Binary file not shown.
90
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeResources
Executable file
90
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeResources
Executable file
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
2EngZsIYJOWyUqOt0KGlEUIM4Hc=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeSignature
Executable file
BIN
resources/patch/ATI1600Controller.kext/Contents/_CodeSignature/CodeSignature
Executable file
Binary file not shown.
16
resources/patch/ATI1600Controller.kext/Contents/version.plist
Executable file
16
resources/patch/ATI1600Controller.kext/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7032012000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
114
resources/patch/ATI1900Controller.kext/Contents/Info.plist
Executable file
114
resources/patch/ATI1900Controller.kext/Contents/Info.plist
Executable file
@@ -0,0 +1,114 @@
|
||||
<?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>11E53</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>ATI1900Controller</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATI1900Controller 7.32.12 11587</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATI1900Controller</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Radeon X1900 Controller</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>Controller</key>
|
||||
<dict>
|
||||
<key>ATY,Alopias</key>
|
||||
<dict>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_DGPIO</key>
|
||||
<data>
|
||||
AQUAAA==
|
||||
</data>
|
||||
<key>CFG_PIPES</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATI1900Controller</string>
|
||||
<key>IOClass</key>
|
||||
<string>ATI1900Controller</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IOName</key>
|
||||
<string>ATI1900Controller</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>pci1002,7249</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>aty_config</key>
|
||||
<dict>
|
||||
<key>CFG_CAA</key>
|
||||
<integer>4</integer>
|
||||
<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>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.1.36</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.2</string>
|
||||
<key>com.apple.kext.ATISupport</key>
|
||||
<string>1.1.36</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>
|
||||
BIN
resources/patch/ATI1900Controller.kext/Contents/MacOS/ATI1900Controller
Executable file
BIN
resources/patch/ATI1900Controller.kext/Contents/MacOS/ATI1900Controller
Executable file
Binary file not shown.
BIN
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeDirectory
Executable file
BIN
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeDirectory
Executable file
Binary file not shown.
BIN
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeRequirements
Executable file
BIN
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeRequirements
Executable file
Binary file not shown.
90
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeResources
Executable file
90
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeResources
Executable file
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
2EngZsIYJOWyUqOt0KGlEUIM4Hc=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeSignature
Executable file
BIN
resources/patch/ATI1900Controller.kext/Contents/_CodeSignature/CodeSignature
Executable file
Binary file not shown.
16
resources/patch/ATI1900Controller.kext/Contents/version.plist
Executable file
16
resources/patch/ATI1900Controller.kext/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7032012000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
83
resources/patch/ATIFramebuffer.kext/Contents/Info.plist
Executable file
83
resources/patch/ATIFramebuffer.kext/Contents/Info.plist
Executable file
@@ -0,0 +1,83 @@
|
||||
<?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>11E53</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>ATIFramebuffer</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATIFramebuffer 7.32.12 11587</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATIFramebuffer</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ATI Framebuffer</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>Framebuffer_Personality</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATIFramebuffer</string>
|
||||
<key>IOClass</key>
|
||||
<string>ATIFramebuffer</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOFramebuffer</string>
|
||||
<key>IONameMatch</key>
|
||||
<string>display</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>65000</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.ATISupport</key>
|
||||
<string>1.1.36</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>
|
||||
BIN
resources/patch/ATIFramebuffer.kext/Contents/MacOS/ATIFramebuffer
Executable file
BIN
resources/patch/ATIFramebuffer.kext/Contents/MacOS/ATIFramebuffer
Executable file
Binary file not shown.
BIN
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeDirectory
Executable file
BIN
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeDirectory
Executable file
Binary file not shown.
BIN
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeRequirements
Executable file
BIN
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeRequirements
Executable file
Binary file not shown.
90
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeResources
Executable file
90
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeResources
Executable file
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
2EngZsIYJOWyUqOt0KGlEUIM4Hc=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeSignature
Executable file
BIN
resources/patch/ATIFramebuffer.kext/Contents/_CodeSignature/CodeSignature
Executable file
Binary file not shown.
16
resources/patch/ATIFramebuffer.kext/Contents/version.plist
Executable file
16
resources/patch/ATIFramebuffer.kext/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7032012000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
119
resources/patch/ATIRadeonX1000.kext/Contents/Info.plist
Executable file
119
resources/patch/ATIRadeonX1000.kext/Contents/Info.plist
Executable file
@@ -0,0 +1,119 @@
|
||||
<?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>ATIRadeonX1000</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATIRadeonX1000 7.4.1 11524</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.ATIRadeonX1000</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ATI RadeonX1000 Kernel Extension</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>ATIRadeonX1000</key>
|
||||
<dict>
|
||||
<key>ATIEnableWideBlitSupport</key>
|
||||
<true/>
|
||||
<key>ATIUseTearingWideBlit</key>
|
||||
<false/>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.ATIRadeonX1000</string>
|
||||
<key>GpuDebugPolicy</key>
|
||||
<integer>0</integer>
|
||||
<key>IOCFPlugInTypes</key>
|
||||
<dict>
|
||||
<key>ACCF0000-0000-0000-0000-000a2789904e</key>
|
||||
<string>ATIRadeonX1000GA.plugin</string>
|
||||
</dict>
|
||||
<key>IOClass</key>
|
||||
<string>ATIRadeonX1000</string>
|
||||
<key>IODVDBundleName</key>
|
||||
<string>ATIRadeonX1000VADriver</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>IOAccelerator</string>
|
||||
<key>IOPCIMatch</key>
|
||||
<string>0x71871002 0x72101002 0x71DE1002 0x71461002 0x71421002 0x71091002 0x71C51002 0x71C01002 0x72401002 0x72491002 0x72911002</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>IOSourceVersion</key>
|
||||
<string>7.4.1</string>
|
||||
<key>IOVARendererID</key>
|
||||
<integer>16908288</integer>
|
||||
<key>sensor-properties</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>device_type</key>
|
||||
<data>
|
||||
Z3B1LXNlbnNvcg==
|
||||
</data>
|
||||
<key>location</key>
|
||||
<string>GPU</string>
|
||||
<key>name</key>
|
||||
<string>gpu-sensor</string>
|
||||
<key>polling-period</key>
|
||||
<data>
|
||||
AAAAAQAAAAA=
|
||||
</data>
|
||||
<key>reg</key>
|
||||
<data>
|
||||
AAAAAg==
|
||||
</data>
|
||||
<key>sample-period</key>
|
||||
<data>
|
||||
AAAAAACYmAA=
|
||||
</data>
|
||||
<key>sensor-id</key>
|
||||
<data>
|
||||
AAAABg==
|
||||
</data>
|
||||
<key>version</key>
|
||||
<data>
|
||||
AAAAAg==
|
||||
</data>
|
||||
<key>zone</key>
|
||||
<data>
|
||||
AAAAAg==
|
||||
</data>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2004-2009 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.IONDRVSupport</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.private</key>
|
||||
<string>8.0.0</string>
|
||||
<key>com.apple.kpi.unsupported</key>
|
||||
<string>8.0.0</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATIRadeonX1000.kext/Contents/MacOS/ATIRadeonX1000
Executable file
BIN
resources/patch/ATIRadeonX1000.kext/Contents/MacOS/ATIRadeonX1000
Executable file
Binary file not shown.
BIN
resources/patch/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeDirectory
Executable file
BIN
resources/patch/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeDirectory
Executable file
Binary file not shown.
90
resources/patch/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeResources
Executable file
90
resources/patch/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeResources
Executable file
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
tqDabUWL9hA2Ooe/XDgh3+eJrgY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeSignature
Executable file
BIN
resources/patch/ATIRadeonX1000.kext/Contents/_CodeSignature/CodeSignature
Executable file
Binary file not shown.
16
resources/patch/ATIRadeonX1000.kext/Contents/version.plist
Executable file
16
resources/patch/ATIRadeonX1000.kext/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>5</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>LegacyGraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7004001000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
41
resources/patch/ATIRadeonX1000GA.plugin/Contents/Info.plist
Executable file
41
resources/patch/ATIRadeonX1000GA.plugin/Contents/Info.plist
Executable file
@@ -0,0 +1,41 @@
|
||||
<?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>ATIRadeonX1000GA</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATIRadeonX1000GA 7.4.1 11524</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.ATIRadeonX1000GA</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ATI RadeonX1000 Graphics Driver</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
<key>CFPlugInDynamicRegistration</key>
|
||||
<string>NO</string>
|
||||
<key>CFPlugInFactories</key>
|
||||
<dict>
|
||||
<key>1002514c-0000-0000-0000-000a27898d3e</key>
|
||||
<string>ATIRadeonX1000GAFactory</string>
|
||||
</dict>
|
||||
<key>CFPlugInTypes</key>
|
||||
<dict>
|
||||
<key>ACCF0000-0000-0000-0000-000a2789904e</key>
|
||||
<array>
|
||||
<string>1002514c-0000-0000-0000-000a27898d3e</string>
|
||||
</array>
|
||||
</dict>
|
||||
<key>NSExecutable</key>
|
||||
<string>ATIRadeonX1000GA</string>
|
||||
<key>Personality</key>
|
||||
<dict>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOFramebuffer</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATIRadeonX1000GA.plugin/Contents/MacOS/ATIRadeonX1000GA
Executable file
BIN
resources/patch/ATIRadeonX1000GA.plugin/Contents/MacOS/ATIRadeonX1000GA
Executable file
Binary file not shown.
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
tqDabUWL9hA2Ooe/XDgh3+eJrgY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
16
resources/patch/ATIRadeonX1000GA.plugin/Contents/version.plist
Executable file
16
resources/patch/ATIRadeonX1000GA.plugin/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>5</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>LegacyGraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7004001000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
26
resources/patch/ATIRadeonX1000GLDriver.bundle/Contents/Info.plist
Executable file
26
resources/patch/ATIRadeonX1000GLDriver.bundle/Contents/Info.plist
Executable file
@@ -0,0 +1,26 @@
|
||||
<?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>ATIRadeonX1000GLDriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATIRadeonX1000GLDriver 7.4.1 11524</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.ATIRadeonX1000GLDriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ATI RadeonX1000 OpenGL Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
1
resources/patch/ATIRadeonX1000GLDriver.bundle/Contents/PkgInfo
Executable file
1
resources/patch/ATIRadeonX1000GLDriver.bundle/Contents/PkgInfo
Executable file
@@ -0,0 +1 @@
|
||||
BNDL????
|
||||
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
tqDabUWL9hA2Ooe/XDgh3+eJrgY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
16
resources/patch/ATIRadeonX1000GLDriver.bundle/Contents/version.plist
Executable file
16
resources/patch/ATIRadeonX1000GLDriver.bundle/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>5</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>LegacyGraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7004001000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
26
resources/patch/ATIRadeonX1000VADriver.bundle/Contents/Info.plist
Executable file
26
resources/patch/ATIRadeonX1000VADriver.bundle/Contents/Info.plist
Executable file
@@ -0,0 +1,26 @@
|
||||
<?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>ATIRadeonX1000VADriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATIRadeonX1000VADriver 7.4.1 11524</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.ATIRadeonX1000VADriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ATI RadeonX1000 VA Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
1
resources/patch/ATIRadeonX1000VADriver.bundle/Contents/PkgInfo
Executable file
1
resources/patch/ATIRadeonX1000VADriver.bundle/Contents/PkgInfo
Executable file
@@ -0,0 +1 @@
|
||||
BNDL????
|
||||
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
tqDabUWL9hA2Ooe/XDgh3+eJrgY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
16
resources/patch/ATIRadeonX1000VADriver.bundle/Contents/version.plist
Executable file
16
resources/patch/ATIRadeonX1000VADriver.bundle/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>5</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.4.1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.0.4</string>
|
||||
<key>ProjectName</key>
|
||||
<string>LegacyGraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7004001000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
85
resources/patch/ATISupport.kext/Contents/Info.plist
Executable file
85
resources/patch/ATISupport.kext/Contents/Info.plist
Executable file
@@ -0,0 +1,85 @@
|
||||
<?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>11E53</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>ATISupport</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>ATISupport 7.32.12 11587</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATISupport</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ATI IOFB Support Service</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11E53</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>ATI Support</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.kext.ATISupport</string>
|
||||
<key>IOClass</key>
|
||||
<string>ATISupport</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>ATISupport</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x03000000&0xFF000000</string>
|
||||
<key>IOPCIMatch</key>
|
||||
<string>0x00001002&0x0000FFFF</string>
|
||||
<key>IOProbeScore</key>
|
||||
<integer>60000</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.1.36</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.2</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>
|
||||
BIN
resources/patch/ATISupport.kext/Contents/MacOS/ATISupport
Executable file
BIN
resources/patch/ATISupport.kext/Contents/MacOS/ATISupport
Executable file
Binary file not shown.
BIN
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeDirectory
Executable file
BIN
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeDirectory
Executable file
Binary file not shown.
BIN
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeRequirements
Executable file
BIN
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeRequirements
Executable file
Binary file not shown.
90
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeResources
Executable file
90
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeResources
Executable file
@@ -0,0 +1,90 @@
|
||||
<?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>
|
||||
2EngZsIYJOWyUqOt0KGlEUIM4Hc=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>.*\.licns</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeSignature
Executable file
BIN
resources/patch/ATISupport.kext/Contents/_CodeSignature/CodeSignature
Executable file
Binary file not shown.
16
resources/patch/ATISupport.kext/Contents/version.plist
Executable file
16
resources/patch/ATISupport.kext/Contents/version.plist
Executable file
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>1</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>7.32.12</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>7.3.2</string>
|
||||
<key>ProjectName</key>
|
||||
<string>GraphicsDrivers</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>7032012000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
107
resources/patch/AppleHDA.kext/Contents/Info.plist
Normal file
107
resources/patch/AppleHDA.kext/Contents/Info.plist
Normal file
@@ -0,0 +1,107 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleHDA</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDA</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple HDA Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>HDA Driver</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDA</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleHDADriver</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AppleHDACodec</string>
|
||||
<key>InputSampleLatency</key>
|
||||
<integer>0</integer>
|
||||
<key>OutputSampleLatency</key>
|
||||
<integer>0</integer>
|
||||
<key>SampleOffsetPad</key>
|
||||
<integer>0</integer>
|
||||
<key>SystemSpecificSampleOffsetPad</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>LayoutID</key>
|
||||
<integer>8</integer>
|
||||
<key>SampleOffsetPad</key>
|
||||
<integer>260</integer>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<key>HDA Generic Codec Driver</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDA</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleHDACodecGeneric</string>
|
||||
<key>IOHDACodecFunctionGroupType</key>
|
||||
<integer>1</integer>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOHDACodecFunction</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.driver.AppleHDAController</key>
|
||||
<string>1.7.2a1</string>
|
||||
<key>com.apple.driver.DspFuncLib</key>
|
||||
<string>1.5.2a1</string>
|
||||
<key>com.apple.iokit.IOAudioFamily</key>
|
||||
<string>1.7.9fc8</string>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>2.0</string>
|
||||
<key>com.apple.iokit.IOHDAFamily</key>
|
||||
<string>1.0.0d1</string>
|
||||
<key>com.apple.iokit.IONDRVSupport</key>
|
||||
<string>2.0</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.private</key>
|
||||
<string>8.0.0b3</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
resources/patch/AppleHDA.kext/Contents/MacOS/AppleHDA
Normal file
BIN
resources/patch/AppleHDA.kext/Contents/MacOS/AppleHDA
Normal file
Binary file not shown.
@@ -0,0 +1,189 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleHDAController</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDAController</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>HDA Controller Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>BuiltInHDA</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDAController</string>
|
||||
<key>CodecAddressFilterArray</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>CodecAddressMask</key>
|
||||
<data>
|
||||
AQAAAA==
|
||||
</data>
|
||||
<key>LayoutID</key>
|
||||
<integer>16392</integer>
|
||||
<key>PCIVendorDeviceID</key>
|
||||
<integer>282987200</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecAddressMask</key>
|
||||
<data>
|
||||
AQAAAA==
|
||||
</data>
|
||||
<key>LayoutID</key>
|
||||
<integer>0</integer>
|
||||
<key>PCIVendorDeviceID</key>
|
||||
<integer>282987200</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecAddressMask</key>
|
||||
<data>
|
||||
CQAAAA==
|
||||
</data>
|
||||
<key>LayoutID</key>
|
||||
<integer>65</integer>
|
||||
<key>PCIVendorDeviceID</key>
|
||||
<integer>282987200</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecAddressMask</key>
|
||||
<data>
|
||||
AQAAAA==
|
||||
</data>
|
||||
<key>LayoutID</key>
|
||||
<integer>73</integer>
|
||||
<key>PCIVendorDeviceID</key>
|
||||
<integer>282987200</integer>
|
||||
</dict>
|
||||
</array>
|
||||
<key>DPAlwaysDisplayRouting</key>
|
||||
<array>
|
||||
<integer>3</integer>
|
||||
<integer>33</integer>
|
||||
<integer>35</integer>
|
||||
</array>
|
||||
<key>DPAudioDeviceExclusion</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>ManufacturerID</key>
|
||||
<integer>1552</integer>
|
||||
<key>ProductID</key>
|
||||
<integer>10130</integer>
|
||||
</dict>
|
||||
</array>
|
||||
<key>HwFactoryPrefixTranslation</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>LayoutID</key>
|
||||
<integer>78</integer>
|
||||
<key>SourceDID</key>
|
||||
<integer>43584</integer>
|
||||
<key>StandInDID</key>
|
||||
<integer>43568</integer>
|
||||
<key>VID</key>
|
||||
<integer>4098</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>LayoutID</key>
|
||||
<integer>78</integer>
|
||||
<key>SourceDID</key>
|
||||
<integer>43576</integer>
|
||||
<key>StandInDID</key>
|
||||
<integer>43568</integer>
|
||||
<key>VID</key>
|
||||
<integer>4098</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>LayoutID</key>
|
||||
<integer>79</integer>
|
||||
<key>SourceDID</key>
|
||||
<integer>43584</integer>
|
||||
<key>StandInDID</key>
|
||||
<integer>43568</integer>
|
||||
<key>VID</key>
|
||||
<integer>4098</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>LayoutID</key>
|
||||
<integer>79</integer>
|
||||
<key>SourceDID</key>
|
||||
<integer>43576</integer>
|
||||
<key>StandInDID</key>
|
||||
<integer>43568</integer>
|
||||
<key>VID</key>
|
||||
<integer>4098</integer>
|
||||
</dict>
|
||||
</array>
|
||||
<key>IOClass</key>
|
||||
<string>AppleHDAController</string>
|
||||
<key>IOPCIClassMatch</key>
|
||||
<string>0x04020000&0xFFFE0000</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOPCIDevice</string>
|
||||
<key>RequireMaxBusStall</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>Layouts</key>
|
||||
<array/>
|
||||
<key>MaxBusStall</key>
|
||||
<integer>15000</integer>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2004-2011 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.0.0d1</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOGraphicsFamily</key>
|
||||
<string>2.0</string>
|
||||
<key>com.apple.iokit.IOHDAFamily</key>
|
||||
<string>1.0.0d1</string>
|
||||
<key>com.apple.iokit.IOPCIFamily</key>
|
||||
<string>1.1</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.private</key>
|
||||
<string>8.0.0b3</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
w++LDGVW7pW/vmajrx9CNJdbiHs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>4</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>ProjectName</key>
|
||||
<string>AppleHDA</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>217004009000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,44 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleHDAHALPlugIn</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.audio.AppleHDAHALPlugIn</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple HDA HAL Plug-in</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>aaud</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
w++LDGVW7pW/vmajrx9CNJdbiHs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>4</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>ProjectName</key>
|
||||
<string>AppleHDA</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>217004009000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,451 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleHDAHardwareConfigDriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDAHardwareConfigDriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>HDA Hardware Config Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>HDA Hardware Config Resource</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleHDAHardwareConfigDriver</string>
|
||||
<key>HDAConfigDefault</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>AFGLowPowerState</key>
|
||||
<data>
|
||||
AwAAAA==
|
||||
</data>
|
||||
<key>CodecID</key>
|
||||
<integer>283904133</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AYccQAGHHXABhx4hAYcfAQGnHDABpx0BAace
|
||||
EwGnH5ABlxwQAZcdMQGXHoEBlx8BAVccUAFX
|
||||
HUEBVx4BAVcfAQH3HCAB9x3hAfcexQH3HwEB
|
||||
5xxgAecd4QHnHkUB5x8BAUcc8AFHHQABRx4A
|
||||
AUcfQAFnHPABZx0AAWceAAFnH0ABdxzwAXcd
|
||||
AAF3HgABdx9AAbcc8AG3HQABtx4AAbcfQAHH
|
||||
HPABxx0AAcceAAHHH0AB1xzwAdcdAAHXHgAB
|
||||
1x9A
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>2206496384</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
ALccQAC3HXAAtx4hALcfAQDHHDAAxx0BAMce
|
||||
EwDHH5AA9xwQAPcdMAD3HoEA9x8BAKccUACn
|
||||
HUAApx4BAKcfAQEXHCABFx3gARcexQEXHwEB
|
||||
BxxgAQcd4AEHHkUBBx8BANccDwDXHQAA1x4A
|
||||
ANcfQADnHA8A5x0AAOceAADnH0ABVxwPAVcd
|
||||
AAFXHgABVx9AAbccDwG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Codec</key>
|
||||
<string>Cirrus Logic CS4206</string>
|
||||
<key>CodecID</key>
|
||||
<integer>269697542</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
ABcgAAAXIQAAFyJrABcjEACXHFAAlx1wAJce
|
||||
IQCXHwEApxxBAKcdYQCnHhAApx+QALccQAC3
|
||||
HWEAtx4QALcfkADHHCAAxx0BAMcegQDHH5EA
|
||||
1xwQANcdAQDXHqAA1x+QAOcc8ADnHQAA5x4A
|
||||
AOcfQAD3HDAA9x0BAPcexQD3HwEBBxxgAQcd
|
||||
AQEHHkUBBx8BAScc8AEnHQABJx4AAScfQAFX
|
||||
HPABVx0AAVceAAFXH0A=
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Codec</key>
|
||||
<string>Wolfson WM8800</string>
|
||||
<key>CodecID</key>
|
||||
<integer>451708928</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
ABcgAAAXIQAAFyIAABcjAAEXHFABFx1AARce
|
||||
KwEXHwEBJxxAAScdAQEnHhABJx+QATccQQE3
|
||||
HQEBNx4QATcfkADXHBAA1x0BANceoADXH5AA
|
||||
xxwgAMcdMADHHosAxx8BAPccYAD3HeAA9x5L
|
||||
APcfAQEHHDABBx3gAQceywEHHwEA5xzwAOcd
|
||||
AADnHgAA5x9AAWcc8AFnHQABZx4AAWcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxxAAMcdAQDHHhAAxx+QANcc8ADX
|
||||
HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L
|
||||
AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>2</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxxAAMcdAQDHHhAAxx+QANccQQDX
|
||||
HQEA1x4QANcfkADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L
|
||||
AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>4</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccQACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxwwAMcdAQDHHhAAxx+QANcc8ADX
|
||||
HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccUAEHHeABBx5L
|
||||
AQcfAQEXHPABFx0AARceAAEXH0ABVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>6</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccQACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxwwAMcdAQDHHhAAxx+QANcc8ADX
|
||||
HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccUAEHHeABBx5L
|
||||
AQcfAQEXHPABFx0AARceAAEXH0ABVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>7</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccQACnHUAApx4rAKcfAQC3HPAAtx0AALce
|
||||
AAC3H0AAxxwwAMcdAQDHHhAAxx+QANcc8ADX
|
||||
HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA
|
||||
9xwQAPcdMAD3HosA9x8BAQccUAEHHeABBx5L
|
||||
AQcfAQEXHCABFx3gARceywEXHwEBVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>8</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxxAAMcdAQDHHhAAxx+QANccQQDX
|
||||
HQEA1x4QANcfkADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L
|
||||
AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>10</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>283904133</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AZcdMAH3HeE=
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>12</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxxAAMcdAQDHHhAAxx+QANcc8ADX
|
||||
HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L
|
||||
AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>14</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>-2088470912</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce
|
||||
oAC3H5AAxxxAAMcdAQDHHhAAxx+QANcc8ADX
|
||||
HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA
|
||||
9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L
|
||||
AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd
|
||||
AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>15</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>283904133</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AUcc8AFHHQABRx4AAUcfQAFXHDABVx1AAVce
|
||||
AAFXHwEBZxzwAWcdAAFnHgABZx9AAXcc8AF3
|
||||
HQABdx4AAXcfQAGHHBABhx1AAYceIAGHHwEB
|
||||
lxwgAZcdMAGXHoABlx8BAaccUAGnHQEBpx4Q
|
||||
AacfkAG3HPABtx0AAbceAAG3H0ABxxzwAccd
|
||||
AAHHHgABxx9AAdcc8AHXHQAB1x4AAdcfQAHn
|
||||
HHAB5x3gAeceRQHnHwEB9xxgAfcd4AH3HsUB
|
||||
9x8B
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>36</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>283904133</integer>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>63</integer>
|
||||
<key>MikeyAFGLowPowerState</key>
|
||||
<data>
|
||||
AQAAAA==
|
||||
</data>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>283904133</integer>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>64</integer>
|
||||
<key>MikeyAFGLowPowerState</key>
|
||||
<data>
|
||||
AQAAAA==
|
||||
</data>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>269697542</integer>
|
||||
<key>ConfigData</key>
|
||||
<data>
|
||||
AMcdMA==
|
||||
</data>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>77</integer>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>AFGLowPowerState</key>
|
||||
<data>
|
||||
AwAAAA==
|
||||
</data>
|
||||
<key>CodecID</key>
|
||||
<integer>269697542</integer>
|
||||
<key>FuncGroup</key>
|
||||
<integer>1</integer>
|
||||
<key>LayoutID</key>
|
||||
<integer>16392</integer>
|
||||
</dict>
|
||||
</array>
|
||||
<key>IOClass</key>
|
||||
<string>AppleHDAHardwareConfigDriver</string>
|
||||
<key>IOMatchCategory</key>
|
||||
<string>AppleHDAHardwareConfigDriver</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AppleHDAHardwareConfigDriverLoader</string>
|
||||
<key>PostConstructionInitialization</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>CodecID</key>
|
||||
<integer>283904133</integer>
|
||||
<key>Layouts</key>
|
||||
<array>
|
||||
<integer>36</integer>
|
||||
<integer>38</integer>
|
||||
<integer>52</integer>
|
||||
<integer>53</integer>
|
||||
</array>
|
||||
<key>widgets</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>MicAttributes</key>
|
||||
<integer>28</integer>
|
||||
<key>MicInfo</key>
|
||||
<string>Sampled on rising edge</string>
|
||||
<key>NodeID</key>
|
||||
<integer>39</integer>
|
||||
<key>PinConfigDefault</key>
|
||||
<integer>2426405136</integer>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Codec</key>
|
||||
<string>Cirrus Logic CS4206</string>
|
||||
<key>CodecID</key>
|
||||
<integer>269697542</integer>
|
||||
<key>Layouts</key>
|
||||
<array>
|
||||
<integer>0</integer>
|
||||
</array>
|
||||
<key>widgets</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>NodeID</key>
|
||||
<integer>22</integer>
|
||||
<key>PinConfigDefault</key>
|
||||
<integer>1073742064</integer>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Codec</key>
|
||||
<string>Cirrus Logic CS4206</string>
|
||||
<key>CodecID</key>
|
||||
<integer>269697542</integer>
|
||||
<key>Layouts</key>
|
||||
<array>
|
||||
<integer>71</integer>
|
||||
</array>
|
||||
<key>widgets</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>NodeID</key>
|
||||
<integer>23</integer>
|
||||
<key>PinConfigDefault</key>
|
||||
<integer>2416968002</integer>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Codec</key>
|
||||
<string>Wolfson WM8800</string>
|
||||
<key>CodecID</key>
|
||||
<integer>451708928</integer>
|
||||
<key>Layouts</key>
|
||||
<array>
|
||||
<integer>67</integer>
|
||||
<integer>73</integer>
|
||||
</array>
|
||||
<key>widgets</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>MicInfo</key>
|
||||
<string>WM8800 External Microphone Virtual Pin Complex</string>
|
||||
<key>NodeID</key>
|
||||
<integer>24</integer>
|
||||
<key>PinConfigDefault</key>
|
||||
<integer>28020848</integer>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.0.0d1</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>8.0.0b3</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
w++LDGVW7pW/vmajrx9CNJdbiHs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>4</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>ProjectName</key>
|
||||
<string>AppleHDA</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>217004009000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,77 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>AppleMikeyDriver</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleMikeyDriver</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple Mikey Driver</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>AppleMikeyDriver</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.AppleMikeyDriver</string>
|
||||
<key>IOClass</key>
|
||||
<string>AppleMikeyDriver</string>
|
||||
<key>IONameMatch</key>
|
||||
<array>
|
||||
<string>mikey</string>
|
||||
<string>MKY0</string>
|
||||
<string>MKY1</string>
|
||||
</array>
|
||||
<key>IOProviderClass</key>
|
||||
<string>AppleSMBusDevice</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.driver.AppleSMBusController</key>
|
||||
<string>1.0.1d0</string>
|
||||
<key>com.apple.iokit.IOACPIFamily</key>
|
||||
<string>1.2.0a1</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>8.0.0b3</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
w++LDGVW7pW/vmajrx9CNJdbiHs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>4</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>ProjectName</key>
|
||||
<string>AppleHDA</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>217004009000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,63 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>DspFuncLib</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.driver.DspFuncLib</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Apple Dsp Function Library</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict/>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.0.0a1</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.iokit.IOAudioFamily</key>
|
||||
<string>1.7.0fc16</string>
|
||||
<key>com.apple.kext.OSvKernDSPLib</key>
|
||||
<string>1.0</string>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>8.0.0b3</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,87 @@
|
||||
<?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>Resources/t2exp.inl</key>
|
||||
<data>
|
||||
w1VYTbBpo6gR2WKS3yTgp/fhGUM=
|
||||
</data>
|
||||
<key>version.plist</key>
|
||||
<data>
|
||||
w++LDGVW7pW/vmajrx9CNJdbiHs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>rules</key>
|
||||
<dict>
|
||||
<key>@[0-9]+</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/</key>
|
||||
<true/>
|
||||
<key>^Resources/.*\.lproj/</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.lproj/locversion.plist$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>30</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/classes\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/data\.dependency$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/designable\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/.*\.nib/info\.nib$</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^Resources/BridgeSupport/[^/]*\.(bridgesupport|dylib)$</key>
|
||||
<dict>
|
||||
<key>omit</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>10</real>
|
||||
</dict>
|
||||
<key>^Resources/English\.lproj/</key>
|
||||
<dict>
|
||||
<key>optional</key>
|
||||
<true/>
|
||||
<key>weight</key>
|
||||
<real>5</real>
|
||||
</dict>
|
||||
<key>^version.plist$</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
<?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>BuildVersion</key>
|
||||
<string>4</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>ProjectName</key>
|
||||
<string>AppleHDA</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>217004009000000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?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>11D17a</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>IOHDAFamily</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>2.1.7f9, Copyright Apple Inc. 2005-2011</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.iokit.IOHDAFamily</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>I/O Kit High Definition Audio Family</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>2.1.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>2.1.7f9</string>
|
||||
<key>DTCompiler</key>
|
||||
<string></string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>GM</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>DTSDKName</key>
|
||||
<string></string>
|
||||
<key>DTXcode</key>
|
||||
<string>0410</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>11D17a</string>
|
||||
<key>IOKitPersonalities</key>
|
||||
<dict>
|
||||
<key>HD Audio Codec</key>
|
||||
<dict>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.apple.iokit.IOHDAFamily</string>
|
||||
<key>IOClass</key>
|
||||
<string>IOHDACodecDriver</string>
|
||||
<key>IOProviderClass</key>
|
||||
<string>IOHDACodecDevice</string>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>Copyright © 2005-2011 Apple Inc. All rights reserved.</string>
|
||||
<key>OSBundleCompatibleVersion</key>
|
||||
<string>1.0.0d1</string>
|
||||
<key>OSBundleLibraries</key>
|
||||
<dict>
|
||||
<key>com.apple.kpi.bsd</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.iokit</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.libkern</key>
|
||||
<string>8.0.0b3</string>
|
||||
<key>com.apple.kpi.mach</key>
|
||||
<string>8.0.0b3</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
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