summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Mahaveer <vishalm@ti.com>2014-01-28 15:06:14 -0600
committerVishal Mahaveer <vishalm@ti.com>2014-01-28 15:06:14 -0600
commit6845ffed3795ef2e5ac70e175e1a35b9540d71bd (patch)
treeb234245ca34122a629659591e02e511c75f7b2ad
parent2518bd9b8e03e2a4e5b2d51338aedcd0a082cbbb (diff)
downloadjacinto6evm-6845ffed3795ef2e5ac70e175e1a35b9540d71bd.tar.gz
jacinto6evm: remove changes done for flashing ipu partition
Remove changes done for flashing IPU1 binary Change-Id: Iaa98e26976dfbb8c2535b9f38a6ec5e040f84ad3 Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
-rw-r--r--device.mk1
-rwxr-xr-xfastboot.sh7
2 files changed, 0 insertions, 8 deletions
diff --git a/device.mk b/device.mk
index cf82ad3..7d3b1b1 100644
--- a/device.mk
+++ b/device.mk
@@ -35,7 +35,6 @@ PRODUCT_COPY_FILES := \
frameworks/native/data/etc/android.hardware.usb.host.xml:system/etc/permissions/android.hardware.usb.host.xml \
frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml \
device/ti/jacinto6evm/Atmel_maXTouch_Touchscreen.idc:system/usr/idc/Atmel_maXTouch_Touchscreen.idc \
- device/ti/proprietary-open/jacinto6/dra7-ipu1-fw.xem4:dra7-ipu1-fw.xem4
# These are the hardware-specific features
PRODUCT_COPY_FILES += \
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