summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Stiffler <j-stiffler@ti.com>2017-06-14 22:43:58 -0500
committerPraneeth Bajjuri <praneeth@ti.com>2017-06-14 22:45:48 -0500
commit644b2f45db5e1c61ef60c9208dc1da5699120232 (patch)
tree27974332329f6898f6e47328448f3e3cc98cf866
parent759299cafaf86601b1a0230972d9a8a20bf78e6f (diff)
downloadam57xevm-d-marshmallow-mr3-release.tar.gz
am57xevm: idk: fastboot.sh: Add Rev 1.3B supportd-marshmallow-mr3-release
Add support to fastboot script for Rev 1.3B IDK platform Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> [cleanup ,resolve merge conflict and upload to gerrit] Signed-off-by: Praneeth Bajjuri <praneeth@ti.com> Change-Id: I4d5c2ef2f3dd73dcefae08305c0c2a6fd9f89c15
-rwxr-xr-xfastboot.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/fastboot.sh b/fastboot.sh
index caa1dec..d4d4095 100755
--- a/fastboot.sh
+++ b/fastboot.sh
@@ -82,7 +82,7 @@ fi
if [ ${cpu} = "J6ECO" ]; then
if [ ${boardrev} = "C" ]; then
environment="${PRODUCT_OUT}dra72-evm-lcd-osd.dtb"
- elif [ ${boardrev} = "1.3A" ]; then
+ elif [ ${boardrev} = "1.3A" ] || [ ${boardrev} = "1.3B" ]; then
environment="${PRODUCT_OUT}am571x-idk-lcd-osd101t2587.dtb"
else
environment="${PRODUCT_OUT}dra72-evm-lcd10.dtb"
@@ -98,7 +98,7 @@ fi
if [ ${cpu} = "J6" ]; then
if [ ${boardrev} = "A.30" ]; then
environment="${PRODUCT_OUT}am57xx-evm-reva3.dtb"
- elif [ ${boardrev} = "1.3A" ]; then
+ elif [ ${boardrev} = "1.3A" ] || [ ${boardrev} = "1.3B" ]; then
environment="${PRODUCT_OUT}am572x-idk-lcd-osd101t2587.dtb"
elif [ ${boardrev} = "B.10" ]; then
environment="${PRODUCT_OUT}am57xx-beagle-x15-revb1.dtb"
@@ -154,7 +154,7 @@ fi
echo "Create GPT partition table"
${FASTBOOT} oem format
-if [ ${boardrev} = "1.3A" ]; then
+if [ ${boardrev} = "1.3A" ] || [ ${boardrev} = "1.3B" ]; then
echo "Setting target for bootloader to spi"
${FASTBOOT} oem spi
else