summaryrefslogtreecommitdiffstatshomepage
path: root/cc3200/appsign.sh
diff options
context:
space:
mode:
authorDaniel Campora <daniel@wipy.io>2015-04-10 21:02:07 +0200
committerDaniel Campora <daniel@wipy.io>2015-04-11 13:35:05 +0200
commit6e25d955f489ee3446c5af10ea28b1f9038a733b (patch)
tree4eb6d4b2ee4af0646ee0a2aeebbabfbcce596bbe /cc3200/appsign.sh
parentd35ac956d1710cb688c4ee4d56e19a3ec1c34bbc (diff)
downloadmicropython-6e25d955f489ee3446c5af10ea28b1f9038a733b.tar.gz
micropython-6e25d955f489ee3446c5af10ea28b1f9038a733b.zip
cc3200: Enable long filename support in FatFS.
This has implications all over the place. I have to admit that you can instantly see that usability improves, but it costs 3K. At the same time I took the oportunity to rename the '/SFLASH' drive to '/flash' which improves compatibility with the pyboard.
Diffstat (limited to 'cc3200/appsign.sh')
-rw-r--r--cc3200/appsign.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc3200/appsign.sh b/cc3200/appsign.sh
index d72498a287..39db708b55 100644
--- a/cc3200/appsign.sh
+++ b/cc3200/appsign.sh
@@ -16,13 +16,13 @@ BUILD=build/${BOARD}/${BTYPE}
echo -n `md5sum --binary $BUILD/application.bin | awk '{ print $1 }'` > __md5hash.bin
# Concatenate it with the application binary
-cat $BUILD/application.bin __md5hash.bin > $BUILD/MCUIMG.BIN
+cat $BUILD/application.bin __md5hash.bin > $BUILD/mcuimg.bin
RET=$?
# Remove the tmp files
rm -f __md5hash.bin
-# Remove hte unsigned binary
+# Remove the unsigned binary
rm -f $BUILD/application.bin
exit $RET