forked from mozilla-b2g/android-device-unagi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extract-files.sh
executable file
·292 lines (259 loc) · 8.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
#!/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=unagi
COMMON=common
MANUFACTURER=qcom
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.id | sed -e 's/ro.build.id=//' | tr -d '\n\r'`
else
echo Pulling files from ${ANDROIDFS_DIR}
DEVICE_BUILD_ID=`cat ${ANDROIDFS_DIR}/system/build.prop | grep ro.build.id | sed -e 's/ro.build.id=//' | tr -d '\n\r'`
fi
case "$DEVICE_BUILD_ID" in
IMM76D*|OPENMASTER)
FIRMWARE=ICS
echo Found ICS firmware with build ID $DEVICE_BUILD_ID >&2
;;
*)
FIRMWARE=unknown
echo Found unknown firmware with build ID $DEVICE_BUILD_ID >&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 hw wifi etc
do
mkdir -p $PROPRIETARY_COMMON_DIR/$NAME
done
COMMON_BLOBS_LIST=../../../vendor/$MANUFACTURER/$COMMON/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
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="
libauth.so
libcm.so
libdiag.so
libdivxdrmdecrypt.so
libdsi_netctrl.so
libdsm.so
libdss.so
libdsutils.so
libgsdi_exp.so
libgstk_exp.so
libidl.so
libmmgsdilib.so
libmm-adspsvc.so
libnetmgr.so
libnv.so
libOmxAacDec.so
libOmxH264Dec.so
libOmxMp3Dec.so
libOmxVidEnc.so
libOmxVp8Dec.so
liboncrpc.so
libpbmlib.so
libqdp.so
libqmi.so
libqmiservices.so
libqueue.so
libril-qc-1.so
libril-qc-qmi-1.so
libril-qcril-hook-oem.so
libSimCardAuth.so
libwms.so
libwmsts.so
libcamera_client.so
libcommondefs.so
libgenlock.so
libgemini.so
libgps.utils.so
libril.so
libmmjpeg.so
libmmipl.so
liboemcamera.so
libloc_adapter.so
libloc_api-rpc-qc.so
libloc_eng.so
libqdi.so
librpc.so
"
copy_files "$COMMON_LIBS" "system/lib" ""
COMMON_BINS="
ATFWD-daemon
akmd8962_new
bridgemgrd
ext4check.sh
fm_qsoc_patches
fmconfig
hci_qcomm_init
netmgrd
port-bridge
proximity.init
qmiproxy
qmuxd
rild
radish
rmt_storage
"
copy_files "$COMMON_BINS" "system/bin" ""
COMMON_HW="
sensors.default.so
camera.msm7627a.so
gps.default.so
"
copy_files "$COMMON_HW" "system/lib/hw" "hw"
COMMON_WIFI="
ath6kl_sdio.ko
cfg80211.ko
"
copy_files "$COMMON_WIFI" "system/wifi" "wifi"
COMMON_ATH6K="
athtcmd_ram.bin
bdata.bin
fw-3.bin
nullTestFlow.bin
utf.bin
"
copy_files "$COMMON_ATH6K" "system/etc/firmware/ath6k/AR6003/hw2.1.1" "wifi"
COMMON_ETC="init.qcom.bt.sh gps.conf"
copy_files "$COMMON_ETC" "system/etc" "etc"
if [ ! -f "../../../Adreno200-AU_LINUX_ANDROID_ICS_CHOCO_CS.04.00.03.06.001.zip" ]; then
echo Adreno driver not found. Please download the "Adreno 2xx User-mode Android ICS Graphics Driver (ARMv7)" driver from
echo https://developer.qualcomm.com/mobile-development/mobile-technologies/gaming-graphics-optimization-adreno/tools-and-resources
echo and put the zip file in the top level B2G directory.
exit -1
fi
unzip -o -d ../../../vendor/$MANUFACTURER/$DEVICE ../../../Adreno200-AU_LINUX_ANDROID_ICS_CHOCO_CS.04.00.03.06.001.zip
(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.
LOCAL_PATH := vendor/$MANUFACTURER/$DEVICE
PRODUCT_COPY_FILES := \
\$(LOCAL_PATH)/system/etc/firmware/yamato_pfp.fw:system/etc/firmware/yamato_pfp.fw \\
\$(LOCAL_PATH)/system/etc/firmware/yamato_pm4.fw:system/etc/firmware/yamato_pm4.fw \\
\$(LOCAL_PATH)/system/lib/libC2D2.so:system/lib/libC2D2.so \\
\$(LOCAL_PATH)/system/lib/libsc-a2xx.so:system/lib/libsc-a2xx.so \\
\$(LOCAL_PATH)/system/lib/libgsl.so:system/lib/libgsl.so \\
\$(LOCAL_PATH)/system/lib/libOpenVG.so:system/lib/libOpenVG.so \\
\$(LOCAL_PATH)/system/lib/egl/egl.cfg:system/lib/egl.cfg \\
\$(LOCAL_PATH)/system/lib/egl/libGLESv1_CM_adreno200.so:system/lib/egl/libGLESv1_CM_adreno200.so \\
\$(LOCAL_PATH)/system/lib/egl/libEGL_adreno200.so:system/lib/egl/libEGL_adreno200.so \\
\$(LOCAL_PATH)/system/lib/egl/eglsubAndroid.so:system/lib/egl/eglsubAndroid.so \\
\$(LOCAL_PATH)/system/lib/egl/libGLESv2_adreno200.so:system/lib/egl/libGLESv2_adreno200.so \\
\$(LOCAL_PATH)/system/lib/egl/libq3dtools_adreno200.so:system/lib/egl/libq3dtools_adreno200.so \\
\$(LOCAL_PATH)/system/lib/egl/libGLES_android.so:system/lib/egl/libGLES_android.so
EOF
BOOTIMG=boot-unagi.img
if [ -f ../../../${BOOTIMG} ]; then
(cd ../../.. && ./build.sh unbootimg)
. ../../../build/envsetup.sh
HOST_OUT=$(get_build_var HOST_OUT_$(get_build_var HOST_BUILD_TYPE))
KERNEL_DIR=../../../vendor/${MANUFACTURER}/${DEVICE}
cp ../../../${BOOTIMG} ${KERNEL_DIR}
../../../${HOST_OUT}/bin/unbootimg ${KERNEL_DIR}/${BOOTIMG}
mv ${KERNEL_DIR}/${BOOTIMG}-kernel ${KERNEL_DIR}/kernel
rm -f ${KERNEL_DIR}/${BOOTIMG}-ramdisk.cpio.gz ${KERNEL_DIR}/${BOOTIMG}-second ${KERNEL_DIR}/${BOOTIMG}-mk ${KERNEL_DIR}/${BOOTIMG}
fi