123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #!/bin/bash
- set -e
- export GAPPS_COMMON=common
- export VENDOR=gapps
- MY_DIR="${BASH_SOURCE%/*}"
- if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
- CM_ROOT="$MY_DIR"/../..
- HELPER="$CM_ROOT"/vendor/cm/build/tools/extract_utils.sh
- if [ ! -f "$HELPER" ]; then
- echo "Unable to find helper script at $HELPER"
- exit 1
- fi
- . "$HELPER"
- while [ "$1" != "" ]; do
- case $1 in
- -p | --path ) shift
- SRC=$1
- ;;
- -t | --target ) shift
- export TARGET=$1
- esac
- shift
- done
- if [ -z "$SRC" ]; then
- echo "Warning, path to system dump not specified, pulling from adb"
- SRC=adb
- fi
- if [ -z "$TARGET" ]; then
- echo "Warning, target for extraction not specified, defaulting to arm"
- TARGET=arm
- fi
- setup_vendor "$GAPPS_COMMON" "$VENDOR" "$CM_ROOT"
- extract "$MY_DIR"/common-proprietary-files.txt "$SRC"
- setup_vendor "$TARGET" "$VENDOR" "$CM_ROOT"
- extract "$MY_DIR"/proprietary-files-$TARGET.txt "$SRC"
- extract "$MY_DIR"/proprietary-files.txt "$SRC"
- "$MY_DIR"/setup-makefiles.sh
|