This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
extract-files.sh
executable file
·386 lines (348 loc) · 9.64 KB
/
extract-files.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
#!/bin/bash
# Copyright (C) 2010 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
DEVICE=galaxys2
COMMON=c1-common
MANUFACTURER=samsung
if [[ -z "${ANDROIDFS_DIR}" && -d ../../../backup-${DEVICE}/system ]]; then
ANDROIDFS_DIR=../../../backup-${DEVICE}
fi
if [[ -z "${ANDROIDFS_DIR}" ]]; then
echo Pulling files from device
DEVICE_BUILD_ID=`adb shell cat /system/build.prop | grep ro.build.display.id | sed -e 's/ro.build.display.id=//' | tr -d '\n\r'`
else
echo Pulling files from ${ANDROIDFS_DIR}
DEVICE_BUILD_ID=`cat ${ANDROIDFS_DIR}/system/build.prop | grep ro.build.display.id | sed -e 's/ro.build.display.id=//' | tr -d '\n\r'`
fi
case "$DEVICE_BUILD_ID" in
"IML74K.UHLPE")
FIRMWARE=UHLPE ;;
"IML74K.XXLPQ")
FIRMWARE=XXLPQ ;;
"IML74K.ZSLPF")
FIRMWARE=ZSLPF ;;
"IML74K.XWLP7")
FIRMWARE=XWLP7 ;;
"IML74K.BGLP8")
FIRMWARE=BGLP8 ;;
"IML74K.BGLP9")
FIRMWARE=BGLP9 ;;
"IML74K.ZSLPG")
FIRMWARE=ZSLPG ;;
"IML74K.XWLPD")
FIRMWARE=XWLPD ;;
"IML74K.XWLPI")
FIRMWARE=XWLPI ;;
*)
echo Your device has unknown firmware $DEVICE_BUILD_ID >&2
echo >&2
echo Supported firmware: >&2
echo UHLPE >&2
echo XXLPQ >&2
echo ZSLPF >&2
echo XWLP7 >&2
echo BGLP8 >&2
echo BGLP9 >&2
echo ZSLPG >&2
echo XWLPD >&2
echo XWLPI >&2
exit 1 ;;
esac
if [[ ! -d ../../../backup-${DEVICE}/system && -z "${ANDROIDFS_DIR}" ]]; then
echo Backing up system partition to backup-${DEVICE}
mkdir -p ../../../backup-${DEVICE} &&
adb pull /system ../../../backup-${DEVICE}/system
fi
BASE_PROPRIETARY_COMMON_DIR=vendor/$MANUFACTURER/$COMMON/proprietary
PROPRIETARY_DEVICE_DIR=../../../vendor/$MANUFACTURER/$DEVICE/proprietary
PROPRIETARY_COMMON_DIR=../../../$BASE_PROPRIETARY_COMMON_DIR
mkdir -p $PROPRIETARY_DEVICE_DIR
for NAME in audio cameradata egl firmware hw keychars wifi media
do
mkdir -p $PROPRIETARY_COMMON_DIR/$NAME
done
# galaxys2
# c1-common
(cat << EOF) | sed s/__DEVICE__/$DEVICE/g | sed s/__MANUFACTURER__/$MANUFACTURER/g > ../../../vendor/$MANUFACTURER/$DEVICE/$DEVICE-vendor-blobs.mk
# Copyright (C) 2010 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Prebuilt libraries that are needed to build open-source libraries
PRODUCT_COPY_FILES := \\
# All the blobs necessary for galaxys2 devices
PRODUCT_COPY_FILES += \\
EOF
COMMON_BLOBS_LIST=../../../vendor/$MANUFACTURER/$COMMON/c1-vendor-blobs.mk
(cat << EOF) | sed s/__COMMON__/$COMMON/g | sed s/__MANUFACTURER__/$MANUFACTURER/g > $COMMON_BLOBS_LIST
# Copyright (C) 2010 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Prebuilt libraries that are needed to build open-source libraries
PRODUCT_COPY_FILES := device/sample/etc/apns-full-conf.xml:system/etc/apns-conf.xml
# All the blobs necessary for galaxys2 devices
PRODUCT_COPY_FILES += \\
EOF
# copy_file
# pull file from the device and adds the file to the list of blobs
#
# $1 = src name
# $2 = dst name
# $3 = directory path on device
# $4 = directory name in $PROPRIETARY_COMMON_DIR
copy_file()
{
echo Pulling \"$1\"
if [[ -z "${ANDROIDFS_DIR}" ]]; then
adb pull /$3/$1 $PROPRIETARY_COMMON_DIR/$4/$2
else
# Hint: Uncomment the next line to populate a fresh ANDROIDFS_DIR
# (TODO: Make this a command-line option or something.)
# adb pull /$3/$1 ${ANDROIDFS_DIR}/$3/$1
cp ${ANDROIDFS_DIR}/$3/$1 $PROPRIETARY_COMMON_DIR/$4/$2
fi
if [[ -f $PROPRIETARY_COMMON_DIR/$4/$2 ]]; then
echo $BASE_PROPRIETARY_COMMON_DIR/$4/$2:$3/$2 \\ >> $COMMON_BLOBS_LIST
else
echo Failed to pull $1. Giving up.
exit -1
fi
}
# copy_files
# pulls a list of files from the device and adds the files to the list of blobs
#
# $1 = list of files
# $2 = directory path on device
# $3 = directory name in $PROPRIETARY_COMMON_DIR
copy_files()
{
for NAME in $1
do
copy_file "$NAME" "$NAME" "$2" "$3"
done
}
# copy_local_files
# puts files in this directory on the list of blobs to install
#
# $1 = list of files
# $2 = directory path on device
# $3 = local directory path
copy_local_files()
{
for NAME in $1
do
echo Adding \"$NAME\"
echo device/$MANUFACTURER/$DEVICE/$3/$NAME:$2/$NAME \\ >> $COMMON_BLOBS_LIST
done
}
COMMON_LIBS="
libion.so
libddc.so
libedid.so
libcec.so
libfimg.so
libfimc.so
libhdmi.so
libhdmiclient.so
libTVOut.so
libril.so
libsecril-client.so
libsec-ril.so
libMali.so
libUMP.so
libakm.so
libs5pjpeg.so
libtvoutservice.so
libtvoutinterface.so
libdirencryption.so
libext2_blkid.so
libext2_com_err.so
libext2_e2p.so
libext2fs.so
libext2_uuid.so
libkeyutils.so
libsec_devenc.so
libsec_ecryptfs.so
libsecfips.so
libsec_km.so
libsurfaceflinger.so
"
copy_files "$COMMON_LIBS" "system/lib" ""
if [[ -z "${ANDROIDFS_DIR}" ]]; then
HCDNAME=`basename \`adb shell ls /system/bin/*.hcd\` | tr -d '\r'`
else
HCDNAME=`basename ${ANDROIDFS_DIR}/system/bin/*.hcd`
fi
COMMON_BINS="
playlpm
immvibed
lpmkey
rild
mediaserver
servicemanager
vold
${HCDNAME}
surfaceflinger
bintvoutservice
"
copy_files "$COMMON_BINS" "system/bin" ""
COMMON_CAMERADATA="
datapattern_420sp.yuv
datapattern_front_420sp.yuv
"
copy_files "$COMMON_CAMERADATA" "system/cameradata" "cameradata"
COMMON_EGL="
egl.cfg
libEGL_mali.so
libGLESv1_CM_mali.so
libGLESv2_mali.so
"
copy_files "$COMMON_EGL" "system/lib/egl" "egl"
if [ $FIRMWARE = "XXLPQ" ] || [ $FIRMWARE = "XWLP7" ];
then
COMMON_FIRMWARE="
RS_M5LS_TB.bin
"
fi
copy_files "$COMMON_FIRMWARE" "system/etc/firmware" "firmware"
copy_files "libpn544_fw.so" "system/vendor/firmware" "firmware"
COMMON_HW="
alsa.default.so
audio.a2dp.default.so
audio_policy.default.so
audio.primary.default.so
audio.primary.exynos4.so
audio.primary.goldfish.so
camera.exynos4.so
gps.exynos4.so
gralloc.exynos4.so
lights.exynos4.so
sensors.default.so
"
copy_files "$COMMON_HW" "system/lib/hw" "hw"
COMMON_IDC="
melfas_ts.idc
qwerty2.idc
sec_touchscreen.idc
mxt224_ts_input.idc
qwerty.idc
"
copy_local_files "$COMMON_IDC" "system/usr/idc" "idc"
COMMON_KEYCHARS="
Generic.kcm
qwerty.kcm
qwerty2.kcm
Virtual.kcm
"
copy_files "$COMMON_KEYCHARS" "system/usr/keychars" "keychars"
COMMON_WIFI="
bcm4330_apsta.bin
bcm4330_mfg.bin
bcm4330_p2p.bin
bcm4330_sta.bin
nvram_mfg.txt
nvram_net.txt
nvram_net.txt_AU
nvram_net.txt_IL
nvram_net.txt_murata
nvram_net.txt_murata_AU
nvram_net.txt_murata_IL
nvram_net.txt_murata_SG
nvram_net.txt_murata_TN
nvram_net.txt_SG
nvram_net.txt_TN
wpa_supplicant.conf
"
copy_files "$COMMON_WIFI" "system/etc/wifi" "wifi"
COMMON_AUDIO="
libasound.so
libsamsungSoundbooster.so
libsamsungAcousticeq.so
libsoundalive.so
libsoundspeed.so
libaudiohw.so
libmediayamaha.so
libmediayamahaservice.so
lib_Samsung_Acoustic_Module_Llite.so
lib_Samsung_Resampler.so
lib_Samsung_Sound_Booster.so
liblvvefs.so
"
copy_files "$COMMON_AUDIO" "system/lib" "audio"
COMMON_AUDIO_CONFIG="
LVVEFS_Rx_Configuration.txt
LVVEFS_Tx_Configuration.txt
Rx_ControlParams_BLUETOOTH_HEADSET.txt
Rx_ControlParams_EARPIECE_WIDEBAND.txt
Rx_ControlParams_SPEAKER_WIDEBAND.txt
Rx_ControlParams_WIRED_HEADPHONE_WIDEBAND.txt
Rx_ControlParams_WIRED_HEADSET_WIDEBAND.txt
Tx_ControlParams_BLUETOOTH_HEADSET.txt
Tx_ControlParams_EARPIECE_WIDEBAND.txt
Tx_ControlParams_SPEAKER_WIDEBAND.txt
Tx_ControlParams_WIRED_HEADPHONE_WIDEBAND.txt
Tx_ControlParams_WIRED_HEADSET_WIDEBAND.txt
"
copy_files "$COMMON_AUDIO_CONFIG" "system/etc/audio" "audio"
copy_files "asound.conf" "system/etc" "audio"
copy_files "alsa.conf" "system/usr/share/alsa" "audio"
COMMON_MEDIA="
battery_batteryerror.qmg
battery_charging_45.qmg
battery_charging_85.qmg
battery_charging_100.qmg
battery_charging_50.qmg
battery_charging_90.qmg
battery_charging_10.qmg
battery_charging_55.qmg
battery_charging_95.qmg
battery_charging_15.qmg
battery_charging_5.qmg
battery_error.qmg
battery_charging_20.qmg
battery_charging_60.qmg
bootsamsungloop.qmg
battery_charging_25.qmg
battery_charging_65.qmg
bootsamsung.qmg
battery_charging_30.qmg
battery_charging_70.qmg
chargingwarning.qmg
battery_charging_35.qmg
battery_charging_75.qmg
Disconnected.qmg
battery_charging_40.qmg
battery_charging_80.qmg
"
copy_files "$COMMON_MEDIA" "system/media" "media"
./setup-makefiles.sh