aboutsummaryrefslogtreecommitdiff
path: root/extract-files.sh
blob: 890107811e62948bfe68cc9d6c578575b6719329 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash

# Check to see if the user passed a folder in to extract from rather than adb pull
if [ $# -eq 1 ]; then
    COPY_FROM=$1
    test ! -d "$COPY_FROM" && echo error reading dir "$COPY_FROM" && exit 1
fi

set -e

function extract() {
    for FILE in `egrep -v '(^#|^$)' $1`; do
        echo "Extracting /system/$FILE ..."
        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
        if [ "$COPY_FROM" = "" ]; then
            # Try CM target first
            if [ -f /system/$DEST ]; then
                adb pull /system/$DEST $2/$DEST
            else
                # if file does not exist try OEM target
                if [ "$?" != "0" ]; then
                    adb pull /system/$FILE $2/$DEST
                fi
            fi
        else
            # Try CM target first
            if [ -f $COPY_FROM/$DEST ]; then
                cp $COPY_FROM/$DEST $2/$DEST
            else
                # if file does not exist try OEM target
                if [ "$?" != "0" ]; then
                    cp $COPY_FROM/$FILE $2/$DEST
                fi
            fi
        fi
    done
}

DEVICE_BASE=../../../vendor/$VENDOR/$DEVICE/proprietary
rm -rf $DEVICE_BASE/*

# Extract the device specific files
extract ../../$VENDOR/$DEVICE/device-proprietary-files.txt $DEVICE_BASE

# Check if their is a common device tree for this device
if [ $COMMON_DEVICE != "" ]; then
    COMMON_BASE=../../../vendor/$VENDOR/$COMMON_DEVICE/proprietary
    rm -rf $COMMON_BASE/*

    # Check if there are files common to all devices but device specific
    if [ -f ../../$VENDOR/$COMMON_DEVICE/proprietary-files.txt ]; then
        extract ../../$VENDOR/$COMMON_DEVICE/proprietary-files.txt $DEVICE_BASE
    fi
    # Extract the files common to all devices using this common device tree
    extract ../../$VENDOR/$COMMON_DEVICE/common-proprietary-files.txt $COMMON_BASE
fi

../$COMMON_DEVICE/setup-makefiles.sh