summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishal Mahaveer2014-01-24 08:30:03 -0600
committerGerrit Code Review2014-01-24 16:31:25 -0600
commit4a63e6399ed88298ca62dbeb92bbf31606770b51 (patch)
tree097fbd65ab6c6eb210423e8db5c71745c4bc250a /fastboot.sh
parentdd771e9d1674b0e09fa832a7729a25f5af9bc3da (diff)
downloaddevice-ti-jacinto6evm-4a63e6399ed88298ca62dbeb92bbf31606770b51.tar.gz
device-ti-jacinto6evm-4a63e6399ed88298ca62dbeb92bbf31606770b51.tar.xz
device-ti-jacinto6evm-4a63e6399ed88298ca62dbeb92bbf31606770b51.zip
jacinto6evm: add initial support for recovery
- Update flags needed in BoardConfig.mk for building recovery.img - Update fastboot script for recovery.img - Update fstab with new partitions Change-Id: I27a1359e5fafae779e43d2db9bd079a6cdb7f828 Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
Diffstat (limited to 'fastboot.sh')
-rwxr-xr-xfastboot.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/fastboot.sh b/fastboot.sh
index c7b82b2..d723d35 100755
--- a/fastboot.sh
+++ b/fastboot.sh
@@ -130,7 +130,7 @@ if [ ! -e "${cacheimg}" ] ; then
130fi 130fi
131if [ ! -e "${recoveryimg}" ] ; then 131if [ ! -e "${recoveryimg}" ] ; then
132 echo "Missing ${recoveryimg}" 132 echo "Missing ${recoveryimg}"
133# exit -1; 133 exit -1;
134fi 134fi
135if [ ! -e "${ipuimg}" ] ; then 135if [ ! -e "${ipuimg}" ] ; then
136 echo "Missing ${ipuimg}" 136 echo "Missing ${ipuimg}"
@@ -165,7 +165,7 @@ ${FASTBOOT} oem format
165echo "Flash android partitions" 165echo "Flash android partitions"
166${FASTBOOT} flash boot ${bootimg} 166${FASTBOOT} flash boot ${bootimg}
167${FASTBOOT} flash environment ${environment} 167${FASTBOOT} flash environment ${environment}
168#${FASTBOOT} flash recovery ${recoveryimg} 168${FASTBOOT} flash recovery ${recoveryimg}
169${FASTBOOT} flash system ${systemimg} 169${FASTBOOT} flash system ${systemimg}
170${FASTBOOT} flash ipu ${ipuimg} 170${FASTBOOT} flash ipu ${ipuimg}
171 171