aboutsummaryrefslogtreecommitdiff
path: root/extract-files.sh
diff options
context:
space:
mode:
authordavidevinavil <davidevinavil@gmail.com>2017-02-26 16:21:41 +0100
committerdavidevinavil <davidevinavil@gmail.com>2017-04-07 13:17:16 +0200
commitd050f9bb678d4b11ec666e156358981805031830 (patch)
tree8695f95bba64bc8e9fbb280c50195f929b84fc54 /extract-files.sh
parent28de34089fcaa60405cd81d00922f117a98f8ec6 (diff)
z2_plus: Remove extract-files.sh
Diffstat (limited to 'extract-files.sh')
-rwxr-xr-xextract-files.sh59
1 files changed, 0 insertions, 59 deletions
diff --git a/extract-files.sh b/extract-files.sh
deleted file mode 100755
index 2ed934d..0000000
--- a/extract-files.sh
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/bash
-
-set -e
-
-export DEVICE=z2_plus
-export VENDOR=zuk
-
-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
- echo "Extracting /system/$FILE ..."
- DIR=`dirname $FILE`
- if [ ! -d $2/$DIR ]; then
- mkdir -p $2/$DIR
- fi
- if [ "$SRC" = "adb" ]; 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
- cp $SRC/system/$FILE $2/$DEST
- # if file dot not exist try destination
- if [ "$?" != "0" ]; then
- cp $SRC/system/$DEST $2/$DEST
- fi
- fi
- done
-}
-
-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
-rm -rf $BASE/*
-
-extract ../../$VENDOR/$DEVICE/proprietary-files.txt $BASE
-
-./setup-makefiles.sh