aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android
diff options
context:
space:
mode:
authorGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-11 16:56:20 +0000
committerGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-11 16:56:20 +0000
commit3a98ed7658057b8b6c5cc38275b02b63d3091527 (patch)
treeb5e94ca16f4d5fb5ccd055b2f027d601b9b3c696 /platform_tools/android
parent7aa8044da565653ba9b16e296a86cd66870e3509 (diff)
various bug fixes.
1. update mac support for md5 2. update default build to be thumb (SkipBuildbotRuns) R=mtklein@google.com Review URL: https://codereview.chromium.org/23514051 git-svn-id: http://skia.googlecode.com/svn/trunk@11201 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'platform_tools/android')
-rwxr-xr-xplatform_tools/android/bin/android_setup.sh14
1 files changed, 11 insertions, 3 deletions
diff --git a/platform_tools/android/bin/android_setup.sh b/platform_tools/android/bin/android_setup.sh
index 07ff3c5601..7c3ba6a243 100755
--- a/platform_tools/android/bin/android_setup.sh
+++ b/platform_tools/android/bin/android_setup.sh
@@ -165,7 +165,7 @@ setup_device() {
TARGET_DEVICE=$(cat .android_config)
echo "INFO: no target device was specified so using the device (${TARGET_DEVICE}) from the most recent build"
else
- TARGET_DEVICE="arm_v7"
+ TARGET_DEVICE="arm_v7_thumb"
echo "INFO: no target device type was specified so using the default '${TARGET_DEVICE}'"
fi
fi
@@ -264,7 +264,11 @@ adb_pull_if_needed() {
then
#get the MD5 for dst and src
ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_SRC`
- HOST_MD5=`md5sum $HOST_DST`
+ if [ $(uname) == "Darwin" ]; then
+ HOST_MD5=`md5 -q $HOST_DST`
+ else
+ HOST_MD5=`md5sum $HOST_DST`
+ fi
if [ "${ANDROID_MD5:0:32}" != "${HOST_MD5:0:32}" ];
then
@@ -300,7 +304,11 @@ adb_push_if_needed() {
then
#get the MD5 for dst and src
ANDROID_MD5=`$ADB $DEVICE_SERIAL shell md5 $ANDROID_DST`
- HOST_MD5=`md5sum $HOST_SRC`
+ if [ $(uname) == "Darwin" ]; then
+ HOST_MD5=`md5 -q $HOST_SRC`
+ else
+ HOST_MD5=`md5sum $HOST_SRC`
+ fi
if [ "${ANDROID_MD5:0:32}" != "${HOST_MD5:0:32}" ];
then