Browse Source

Specify a target for setup-makefiles.sh

* So it can be run standalone

Signed-off-by: Paul Keith <[email protected]>
Paul Keith 8 years ago
parent
commit
feafa1c9b3
2 changed files with 17 additions and 1 deletions
  1. 1 1
      extract-files.sh
  2. 16 0
      setup-makefiles.sh

+ 1 - 1
extract-files.sh

@@ -65,4 +65,4 @@ setup_vendor "$TARGET" "$VENDOR" "$CM_ROOT"
 
 extract "$MY_DIR"/proprietary-files-$TARGET.txt "$SRC"
 
-"$MY_DIR"/setup-makefiles.sh
+"$MY_DIR"/setup-makefiles.sh -t $TARGET

+ 16 - 0
setup-makefiles.sh

@@ -18,6 +18,9 @@
 
 set -e
 
+export GAPPS_COMMON=common
+export VENDOR=gapps
+
 # Load extract_utils and do some sanity checks
 MY_DIR="${BASH_SOURCE%/*}"
 if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
@@ -31,6 +34,19 @@ if [ ! -f "$HELPER" ]; then
 fi
 . "$HELPER"
 
+while [ "$1" != "" ]; do
+    case $1 in
+        -t | --target )         shift
+                                export TARGET=$1
+    esac
+    shift
+done
+
+if [ -z "$TARGET" ]; then
+    echo "Warning, target for extraction not specified, defaulting to arm"
+    TARGET=arm
+fi
+
 # Initialize the helper for common gapps
 setup_vendor "$GAPPS_COMMON" "$VENDOR" "$CM_ROOT" true