Skip to content

Instantly share code, notes, and snippets.

@invisiblek
Created October 13, 2016 15:36
Show Gist options
  • Save invisiblek/fe5714ee8db2bcdb98d7b64788054bd1 to your computer and use it in GitHub Desktop.
Save invisiblek/fe5714ee8db2bcdb98d7b64788054bd1 to your computer and use it in GitHub Desktop.
diff --git a/extract-files.sh b/extract-files.sh
index 56bea70..f99cf4f 100755
--- a/extract-files.sh
+++ b/extract-files.sh
@@ -1,41 +1,4 @@
#!/bin/bash
-#set -e
-export DEVICE=clark
-export VENDOR=motorola
-
-# Load extractutils and do some sanity checks
-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"
-
-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
-
-# Initialize the helper
-setup_vendor "$DEVICE" "$VENDOR" "$CM_ROOT"
-
-extract "$MY_DIR"/proprietary-files.txt "$SRC"
-
-"$MY_DIR"/setup-makefiles.sh
+rm -rf ../../../vendor/motorola
+git clone https://github.com/TheMuppets/proprietary_vendor_motorola -b cm-13.0 ../../../vendor/motorola
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment