-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextract-files.sh
More file actions
executable file
·36 lines (28 loc) · 933 Bytes
/
Copy pathextract-files.sh
File metadata and controls
executable file
·36 lines (28 loc) · 933 Bytes
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
#!/bin/bash
set -e
export VENDOR=samsung
export DEVICE=lentislte
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 $FILE`
if [ ! -d $2/$DIR ]; then
mkdir -p $2/$DIR
fi
# Try CM target first
cp /home/callmesuper/flyme/devices/lentislte/vendor/system/$DEST $2/$DEST
# if file does not exist try OEM target
if [ "$?" != "0" ]; then
cp /home/callmesuper/flyme/devices/lentislte/vendor/system/$FILE $2/$DEST
fi
done
}
DEVBASE=../../../vendor/$VENDOR/$DEVICE/proprietary
rm -rf $DEVBASE/*
extract ../../$VENDOR/$DEVICE/proprietary-files.txt $DEVBASE
./../../$VENDOR/$DEVICE/setup-makefiles.sh