blob: 5355227a2bf1a8c7809352afcba8f75f2174ac3a (
plain)
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
|
#!/bin/sh
VENDOR=motorola
DEVICE=otus
BASE=../../../vendor/$VENDOR/$DEVICE/proprietary
while getopts ":nh" options
do
case $options in
n ) NC=1 ;;
h ) echo "Usage: `basename $0` [OPTIONS] "
echo " -n No clenup"
echo " -h Show this help"
exit ;;
* ) ;;
esac
done
if [ "x$NC" != "x1" ];
then
rm -rf $BASE/*
fi
for FILE in `cat proprietary-blobs.txt | grep -v ^# | grep -v ^$`; do
DIR=`dirname $FILE`
if [ ! -d $BASE/$DIR ]; then
mkdir -p $BASE/$DIR
fi
adb pull /system/$FILE $BASE/$FILE
done
./setup-makefiles.sh
|