summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Mahaveer <vishalm@ti.com>2014-08-26 16:28:05 -0500
committerVishal Mahaveer <vishalm@ti.com>2014-08-26 16:28:05 -0500
commit18655bbdd98befb464d8f6a12ba3d860c0d6fc10 (patch)
tree4c782927576ea9ad290102f413c5b84cc1beedee
parent4e53504c6805212399a5acad0d7a86e9ac9c5289 (diff)
downloadjacinto6evm-18655bbdd98befb464d8f6a12ba3d860c0d6fc10.tar.gz
jacinto6evm: fix fastboot script for HS devices
Commit 76b0af7cce79eed8bbe948546db1dab7e0681a14 broke the script for GP devices. This change fixes it. Change-Id: Icc786cb33a77519c50ec4d7d6fc37603518b65f1 Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
-rwxr-xr-xfastboot.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot.sh b/fastboot.sh
index 2908b61..598212c 100755
--- a/fastboot.sh
+++ b/fastboot.sh
@@ -72,7 +72,7 @@ if [ ${cputype} = "EMU" ] || [ ${cputype} = "HS" ]; then
fi
# If fastboot does not support getvar default to GP
-if [ ${cputype} = "" ]; then
+if [ ${cputype} = "" ] || [ ${cputype} = "GP" ]; then
cputype="GP"
xloader="${PRODUCT_OUT}${cputype}_MLO"
fi