blob: 7904a0a058cea659be88abfef02e9dfbb72b7efd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
VENDOR=amazon
DEVICE=omap4-common
BASE=../../../vendor/$VENDOR/$DEVICE/proprietary
echo "Pulling $DEVICE files..."
for FILE in `cat proprietary-files-pvr.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-pvr.sh
|