forked from CyanogenMod/android_device_samsung_vibrantmtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract-files.sh
executable file
·46 lines (40 loc) · 951 Bytes
/
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
#!/bin/sh
VENDOR=samsung
DEVICE=vibrantmtd
set -e
if [ $# -eq 0 ]; then
SRC=adb
else
if [ $# -eq 1 ]; then
SRC=$1
else
echo "$0: bad number of arguments"
echo ""
echo "usage: $0 [PATH_TO_EXPANDED_ROM]"
echo ""
echo "If PATH_TO_EXPANDED_ROM is not specified, blobs will be extracted from"
echo "the device using adb pull."
exit 1
fi
fi
BASE=../../../vendor/$VENDOR/$DEVICE/proprietary
for FILE in `cat proprietary-files.txt | grep -v ^# | grep -v ^$`; do
echo "Extracting /system/$FILE ..."
DIR=`dirname $FILE`
if [ ! -d $BASE/$DIR ]; then
mkdir -p $BASE/$DIR
fi
if [ "$SRC" = "adb" ]; then
adb pull /system/$FILE $BASE/$FILE
else
cp $SRC/system/$FILE $BASE/$FILE
fi
done
# Modem
echo "Extracting /modem ..."
if [ "$SRC" = "adb" ]; then
adb pull /radio/modem.bin $BASE/modem.bin
else
cp $SRC/modem.bin $BASE/modem.bin
fi
./setup-makefiles.sh