summaryrefslogtreecommitdiff
path: root/fastboot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fastboot.sh')
-rwxr-xr-xfastboot.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/fastboot.sh b/fastboot.sh
index d723d35..1defc0b 100755
--- a/fastboot.sh
+++ b/fastboot.sh
@@ -94,7 +94,6 @@ userdataimg="${PRODUCT_OUT}userdata.img"
cacheimg="${PRODUCT_OUT}cache.img"
efsimg="${PRODUCT_OUT}efs.img"
recoveryimg="${PRODUCT_OUT}recovery.img"
-ipuimg="${PRODUCT_OUT}dra7-ipu1-fw.xem4"
# Verify that all the files required for the fastboot flash
@@ -132,11 +131,6 @@ if [ ! -e "${recoveryimg}" ] ; then
echo "Missing ${recoveryimg}"
exit -1;
fi
-if [ ! -e "${ipuimg}" ] ; then
- echo "Missing ${ipuimg}"
- exit -1;
-fi
-
echo "Create GPT partition table"
${FASTBOOT} oem format
@@ -167,7 +161,6 @@ ${FASTBOOT} flash boot ${bootimg}
${FASTBOOT} flash environment ${environment}
${FASTBOOT} flash recovery ${recoveryimg}
${FASTBOOT} flash system ${systemimg}
-${FASTBOOT} flash ipu ${ipuimg}
userdataimg_orig="${userdataimg}.orig"
if [ ! -f $userdataimg_orig ]; then