forked from RehabMan/Intel-NUC-DSDT-Patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
patch_hda.sh
executable file
·256 lines (237 loc) · 14 KB
/
patch_hda.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#!/bin/bash
#set -x
unpatched=/System/Library/Extensions
#unpatched=~/Desktop
# extract minor version (eg. 10.9 vs. 10.10 vs. 10.11)
MINOR_VER=$([[ "$(sw_vers -productVersion)" =~ [0-9]+\.([0-9]+) ]] && echo ${BASH_REMATCH[1]})
# AppleHDA patching function
function createAppleHDAInjector()
{
# create AppleHDA injector for Clover setup...
echo -n "Creating AppleHDA_$1.kext..."
rm -Rf AppleHDA_$1.kext
mkdir AppleHDA_$1.kext
cp -aX $unpatched/AppleHDA.kext/ AppleHDA_$1.kext
rm -R AppleHDA_$1.kext/Contents/Resources/*
rm -R AppleHDA_$1.kext/Contents/PlugIns
rm -R AppleHDA_$1.kext/Contents/_CodeSignature
rm -f AppleHDA_$1.kext/Contents/Code*
rm -R AppleHDA_$1.kext/Contents/MacOS/AppleHDA
rm AppleHDA_$1.kext/Contents/version.plist
ln -s /System/Library/Extensions/AppleHDA.kext/Contents/MacOS/AppleHDA AppleHDA_$1.kext/Contents/MacOS/AppleHDA
layouts=`ls Resources_$1/layout*.plist`
for layout in $layouts; do
layout=`basename $layout`
cp Resources_$1/$layout AppleHDA_$1.kext/Contents/Resources/${layout/.plist/.xml}
done
if [[ $MINOR_VER -gt 7 ]]; then
./tools/zlib inflate $unpatched/AppleHDA.kext/Contents/Resources/Platforms.xml.zlib >/tmp/rm_Platforms.plist
else
cp $unpatched/AppleHDA.kext/Contents/Resources/Platforms.xml /tmp/rm_Platforms.plist
fi
/usr/libexec/PlistBuddy -c "Delete ':PathMaps'" /tmp/rm_Platforms.plist
/usr/libexec/PlistBuddy -c "Merge Resources_$1/Platforms.plist" /tmp/rm_Platforms.plist
cp /tmp/rm_Platforms.plist AppleHDA_$1.kext/Contents/Resources/Platforms.xml
# create AppleHDA .zml.zlib (or just zml) files
rm -rf AppleHDA_$1_Resources && mkdir AppleHDA_$1_Resources
for xml in AppleHDA_$1.kext/Contents/Resources/*.xml; do
base=$(basename $xml)
if [[ $MINOR_VER -gt 7 ]]; then
./tools/zlib deflate $xml >AppleHDA_$1_Resources/${base/.xml/.zml.zlib}
else
cp $xml AppleHDA_$1_Resources/${base/.xml/.zml}
fi
done
if [[ $MINOR_VER -gt 7 ]]; then
for xml in AppleHDA_$1.kext/Contents/Resources/*.xml; do
./tools/zlib deflate $xml >${xml/.xml/.xml.zlib}
rm $xml
done
fi
# fix versions (must be larger than native)
plist=AppleHDA_$1.kext/Contents/Info.plist
pattern='s/(\d*\.\d*(\.\d*)?)/9\1/'
if [[ $MINOR_VER -ge 10 ]]; then
replace=`/usr/libexec/PlistBuddy -c "Print :NSHumanReadableCopyright" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :NSHumanReadableCopyright '$replace'" $plist
fi
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleGetInfoString" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleGetInfoString '$replace'" $plist
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion '$replace'" $plist
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString '$replace'" $plist
if [ 0 -eq 0 ]; then
# create AppleHDAHardwareConfigDriver overrides (injector personality)
/usr/libexec/PlistBuddy -c "Add ':HardwareConfigDriver_Temp' dict" $plist
/usr/libexec/PlistBuddy -c "Merge $unpatched/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist ':HardwareConfigDriver_Temp'" $plist
/usr/libexec/PlistBuddy -c "Copy ':HardwareConfigDriver_Temp:IOKitPersonalities:HDA Hardware Config Resource' ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
/usr/libexec/PlistBuddy -c "Delete ':HardwareConfigDriver_Temp'" $plist
/usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource:HDAConfigDefault'" $plist
/usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource:PostConstructionInitialization'" $plist
/usr/libexec/PlistBuddy -c "Add ':IOKitPersonalities:HDA Hardware Config Resource:IOProbeScore' integer" $plist
/usr/libexec/PlistBuddy -c "Set ':IOKitPersonalities:HDA Hardware Config Resource:IOProbeScore' 2000" $plist
/usr/libexec/PlistBuddy -c "Merge ./Resources_$1/ahhcd.plist ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
fi
echo " Done."
}
function createAppleHDAResources_HDC()
{
rm -rf AppleHDA_$1_Resources && mkdir AppleHDA_$1_Resources
layouts=`ls Resources_$1/layout*.plist`
for layout in $layouts; do
layout=`basename $layout`
cp Resources_$1/$layout AppleHDA_$1_Resources/${layout/.plist/.zml}
done
if [[ $MINOR_VER -gt 7 ]]; then
./tools/zlib inflate $unpatched/AppleHDA.kext/Contents/Resources/Platforms.xml.zlib >/tmp/rm_Platforms.plist
else
cp $unpatched/AppleHDA.kext/Contents/Resources/Platforms.xml /tmp/rm_Platforms.plist
fi
/usr/libexec/PlistBuddy -c "Delete ':PathMaps'" /tmp/rm_Platforms.plist
/usr/libexec/PlistBuddy -c "Merge Resources_$1/Platforms.plist" /tmp/rm_Platforms.plist
cp /tmp/rm_Platforms.plist AppleHDA_$1_Resources/Platforms.zml
if [[ $MINOR_VER -gt 7 ]]; then
for zml in AppleHDA_$1_Resources/*.zml; do
./tools/zlib deflate $zml >${zml/.zml/.zml.zlib}
rm $zml
done
fi
}
function createAppleHDAInjector_HCD()
{
# create AppleHDAHCD injector for Clover setup...
echo -n "Creating AppleHDAHCD_$1.kext..."
rm -Rf AppleHDAHCD_$1.kext
mkdir -p AppleHDAHCD_$1.kext/Contents
cp $unpatched/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist AppleHDAHCD_$1.kext/Contents/Info.plist
# fix versions (must be larger than native)
plist=AppleHDAHCD_$1.kext/Contents/Info.plist
pattern='s/(\d*\.\d*(\.\d*)?)/9\1/'
if [[ $MINOR_VER -ge 10 ]]; then
replace=`/usr/libexec/PlistBuddy -c "Print :NSHumanReadableCopyright" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :NSHumanReadableCopyright '$replace'" $plist
fi
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleGetInfoString" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleGetInfoString '$replace'" $plist
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion '$replace'" $plist
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString '$replace'" $plist
# create AppleHDAHardwareConfigDriver overrides (injector personality)
/usr/libexec/PlistBuddy -c "Delete ':BuildMachineOSBuild'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTCompiler'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTPlatformBuild'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTPlatformVersion'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTSDKBuild'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTSDKName'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTXcode'" $plist
/usr/libexec/PlistBuddy -c "Delete ':DTXcodeBuild'" $plist
/usr/libexec/PlistBuddy -c "Delete ':OSBundleLibraries'" $plist
/usr/libexec/PlistBuddy -c "Delete ':CFBundleExecutable'" $plist
/usr/libexec/PlistBuddy -c "Set ':CFBundleIdentifier' 'org.rehabman.injector.AppleHDAHCD'" $plist
/usr/libexec/PlistBuddy -c "Set ':CFBundleName' 'AppleHDAHCD'" $plist
/usr/libexec/PlistBuddy -c "Set ':CFBundleShortVersionString' '0.9.0'" $plist
/usr/libexec/PlistBuddy -c "Set ':CFBundleVersion' '0.9.0'" $plist
/usr/libexec/PlistBuddy -c "Set ':CFBundleGetInfoString' '0.9.0, Copyright(GPLv2) 2016 RehabMan. All rights reserved.'" $plist
/usr/libexec/PlistBuddy -c "Set ':NSHumanReadableCopyright' \"AppleHDAHCD_$1 0.9.0. Copyright 2016(GPLv2) RehabMan. All rights reserved.\"" $plist
/usr/libexec/PlistBuddy -c "Add ':HardwareConfigDriver_Temp' dict" $plist
/usr/libexec/PlistBuddy -c "Merge $unpatched/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist ':HardwareConfigDriver_Temp'" $plist
/usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
/usr/libexec/PlistBuddy -c "Copy ':HardwareConfigDriver_Temp:IOKitPersonalities:HDA Hardware Config Resource' ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
/usr/libexec/PlistBuddy -c "Delete ':HardwareConfigDriver_Temp'" $plist
/usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource:HDAConfigDefault'" $plist
/usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource:PostConstructionInitialization'" $plist
/usr/libexec/PlistBuddy -c "Add ':IOKitPersonalities:HDA Hardware Config Resource:IOProbeScore' integer" $plist
/usr/libexec/PlistBuddy -c "Set ':IOKitPersonalities:HDA Hardware Config Resource:IOProbeScore' 2000" $plist
/usr/libexec/PlistBuddy -c "Merge ./Resources_$1/ahhcd.plist ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
echo " Done."
}
# AppleHDA patching function
function createPatchedAppleHDA()
{
# create AppleHDA injector for Clover setup...
echo "Creating AppleHDA.kext for $1..."
rm -Rf AppleHDA.kext
cp -aX $unpatched/AppleHDA.kext AppleHDA.kext
rm -R AppleHDA.kext/Contents/Resources/*.xml*
# patch binary using AppleHDA patches in config.plist/KernelAndKextPatches/KextsToPatch
bin=AppleHDA.kext/Contents/MacOS/AppleHDA
config=config_temp.plist
for ((patch=0; 1; patch++)); do
comment=`/usr/libexec/PlistBuddy -c "Print :KernelAndKextPatches:KextsToPatch:$patch:Comment" $config 2>&1`
if [[ "$comment" == *"Does Not Exist"* ]]; then
break
fi
name=`/usr/libexec/PlistBuddy -c "Print :KernelAndKextPatches:KextsToPatch:$patch:Name" $config 2>&1`
if [[ "$name" == "AppleHDA" ]]; then
disabled=`/usr/libexec/PlistBuddy -c "Print :KernelAndKextPatches:KextsToPatch:$patch:Disabled" $config 2>&1`
if [[ "$disabled" != "true" ]]; then
printf "Comment: %s\n" "$comment"
find=`/usr/libexec/PlistBuddy -x -c "Print :KernelAndKextPatches:KextsToPatch:$patch:Find" $config 2>&1`
repl=`/usr/libexec/PlistBuddy -x -c "Print :KernelAndKextPatches:KextsToPatch:$patch:Replace" $config`
find=$([[ "$find" =~ \<data\>(.*)\<\/data\> ]] && echo ${BASH_REMATCH[1]})
repl=$([[ "$repl" =~ \<data\>(.*)\<\/data\> ]] && echo ${BASH_REMATCH[1]})
find=`echo $find | base64 --decode | xxd -p | tr '\n' ' '`
repl=`echo $repl | base64 --decode | xxd -p | tr '\n' ' '`
binpatch "$find" "$repl" $bin
fi
fi
done
layouts=`ls Resources_$1/layout*.plist`
for layout in $layouts; do
layout=`basename $layout`
cp Resources_$1/$layout AppleHDA.kext/Contents/Resources/${layout/.plist/.xml}
done
if [[ $MINOR_VER -gt 7 ]]; then
./tools/zlib inflate $unpatched/AppleHDA.kext/Contents/Resources/Platforms.xml.zlib >/tmp/rm_Platforms.plist
else
cp $unpatched/AppleHDA.kext/Contents/Resources/Platforms.xml /tmp/rm_Platforms.plist
fi
/usr/libexec/PlistBuddy -c "Delete ':PathMaps'" /tmp/rm_Platforms.plist
/usr/libexec/PlistBuddy -c "Merge Resources_$1/Platforms.plist" /tmp/rm_Platforms.plist
cp /tmp/rm_Platforms.plist AppleHDA.kext/Contents/Resources/Platforms.xml
if [[ $MINOR_VER -gt 7 ]]; then
for xml in AppleHDA.kext/Contents/Resources/*.xml; do
./tools/zlib deflate $xml >${xml/.xml/.xml.zlib}
rm $xml
done
fi
# fix versions (must be larger than native)
plist=AppleHDA.kext/Contents/Info.plist
pattern='s/(\d*\.\d*(\.\d*)?)/9\1/'
if [[ $MINOR_VER -ge 10 ]]; then
replace=`/usr/libexec/PlistBuddy -c "Print :NSHumanReadableCopyright" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :NSHumanReadableCopyright '$replace'" $plist
fi
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleGetInfoString" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleGetInfoString '$replace'" $plist
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion '$replace'" $plist
replace=`/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" $plist | perl -p -e $pattern`
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString '$replace'" $plist
if [[ 0 -eq 0 ]]; then
# create AppleHDAHardwareConfigDriver overrides
plist=AppleHDA.kext/Contents/Plugins/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist
/usr/libexec/PlistBuddy -c "Add ':HardwareConfigDriver_Temp' dict" $plist
/usr/libexec/PlistBuddy -c "Merge $unpatched/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist ':HardwareConfigDriver_Temp'" $plist
/usr/libexec/PlistBuddy -c "Delete '::IOKitPersonalities:HDA Hardware Config Resource'" $plist
/usr/libexec/PlistBuddy -c "Copy ':HardwareConfigDriver_Temp:IOKitPersonalities:HDA Hardware Config Resource' ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
/usr/libexec/PlistBuddy -c "Delete ':HardwareConfigDriver_Temp'" $plist
/usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource:HDAConfigDefault'" $plist
# /usr/libexec/PlistBuddy -c "Delete ':IOKitPersonalities:HDA Hardware Config Resource:PostConstructionInitialization'" $plist
# /usr/libexec/PlistBuddy -c "Add ':IOKitPersonalities:HDA Hardware Config Resource:IOProbeScore' integer" $plist
# /usr/libexec/PlistBuddy -c "Set ':IOKitPersonalities:HDA Hardware Config Resource:IOProbeScore' 2000" $plist
/usr/libexec/PlistBuddy -c "Merge ./Resources_$1/ahhcd.plist ':IOKitPersonalities:HDA Hardware Config Resource'" $plist
fi
echo " Done."
}
if [[ "$1" == "" ]]; then
echo Usage: patch_hda.sh {codec}
echo Example: patch_hda.sh NUCHDA
exit
fi
#createAppleHDAInjector "$1"
#createAppleHDAInjector_HCD "$1"
createAppleHDAResources_HDC "$1"
#createPatchedAppleHDA "$1"