forked from AOSPA-legacy/android_device_oppo_msm8974-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
extract-files.sh
executable file
·58 lines (50 loc) · 1.56 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
#!/bin/bash
set -e
while getopts ":hd:" options
do
case $options in
d ) LDIR=$OPTARG ;;
h ) echo "Usage: `basename $0` [OPTIONS] "
echo " -d Fetch blobs from local directory"
echo " -h Show this help"
exit ;;
* ) ;;
esac
done
function extract() {
for FILE in `egrep -v '(^#|^$)' $1`; do
OLDIFS=$IFS IFS=":" PARSING_ARRAY=($FILE) IFS=$OLDIFS
FILE=`echo ${PARSING_ARRAY[0]} | sed -e "s/^-//g"`
DEST=${PARSING_ARRAY[1]}
if [ -z $DEST ]; then
DEST=$FILE
fi
DIR=`dirname $DEST`
if [ ! -d $2/$DIR ]; then
mkdir -p $2/$DIR
fi
if [ -z $LDIR ]; then
# Try CM target first
adb pull /system/$DEST $2/$DEST
# if file does not exist try OEM target
if [ "$?" != "0" ]; then
adb pull /system/$FILE $2/$DEST
fi
else
# Try CM target first
cp $LDIR/system/$DEST $2/$DEST
# if file does not exist try OEM target
if [ "$?" != "0" ]; then
cp $LDIR/system/$FILE $2/$DEST
fi
fi
done
}
BASE=../../../vendor/oppo/msm8974-common/proprietary
rm -rf $BASE/*
DEVBASE=../../../vendor/$VENDOR/$DEVICE/proprietary
rm -rf $DEVBASE/*
extract ../../oppo/msm8974-common/proprietary-files.txt $BASE
extract ../../oppo/msm8974-common/device-proprietary-files.txt $DEVBASE
extract ../../$VENDOR/$DEVICE/device-proprietary-files.txt $DEVBASE
./../../oppo/msm8974-common/setup-makefiles.sh