Skip to content

Commit

Permalink
added arm warning
Browse files Browse the repository at this point in the history
  • Loading branch information
corbindavenport committed Feb 15, 2014
1 parent a4f4a2d commit a50dfa8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ if [ -f "/usr/bin/old_bins/chromeos-tpm-recovery" ]; then # Chrome OS
exit 0
fi
if [ "$(arch)" == "arm" ]; then # Chrome OS on ARM CPU
echo "[WARN] The ADB binaries for ARM are out of date, and do not work on Android 4.2.2+"
echo "[INFO] Downloading ADB for Chrome OS [ARM CPU]..."
sudo curl -s -o $ADB "http://github.com/corbindavenport/nexus-tools/blob/master/bin/linux-arm-adb?raw=true" -LOk
echo "[INFO] Downloading Fastboot for Chrome OS [ARM CPU]..."
Expand Down Expand Up @@ -86,6 +87,7 @@ elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then # Generic Linux
echo "[INFO] Downloading Fastboot for Linux [Intel CPU]..."
sudo curl -s -o $FASTBOOT "http://github.com/corbindavenport/nexus-tools/blob/master/bin/linux-i386-fastboot?raw=true" -LOk
elif [ "$(arch)" == "arm" ] || [ "$(arch)" == "armv6l" ]; then # Linux on ARM CPU
echo "[WARN] The ADB binaries for ARM are out of date, and do not work on Android 4.2.2+"
echo "[INFO] Downloading ADB for Linux [ARM CPU]..."
sudo curl -s -o $ADB "http://github.com/corbindavenport/nexus-tools/blob/master/bin/linux-arm-adb?raw=true" -LOk
echo "[INFO] Downloading Fastboot for Linux [ARM CPU]..."
Expand Down

0 comments on commit a50dfa8

Please sign in to comment.