Index: bin/checkrom.sh
===================================================================
--- bin/checkrom.sh	(revision 51)
+++ bin/checkrom.sh	(working copy)
@@ -1,13 +1,8 @@
 #!/bin/sh
 
 size=`du -b $1 | cut -f1`
-delta=`expr 884736 - $size`
-echo "Bytes left in ROM: $delta"
+echo "******************"
+echo "Payload takes $size Bytes (`expr $size / 1024` KBytes) in ROM:"
+echo "******************"
 
-if [ $delta -lt 0 ]; then 
-	echo "ERROR! ERROR! ERROR!"
-	echo "The ELF image $1 is too big!"
-	exit -1
-fi
-
 exit 0
