Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| #!/bin/sh | |
| VENDOR=wiko | |
| DEVICE=stairway | |
| BASE=../../../vendor/$VENDOR/$DEVICE/proprietary | |
| echo "Pulling $DEVICE files..." | |
| for FILE in `cat proprietary-files.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 | |
| # some extra stuff | |
| adb pull /system/lib/libaudio.primary.default.so $BASE/lib/hw/audio.primary.mt6589.so | |
| ./setup-makefiles.sh |