increase reserved blocks from 5 to 8

Our yaffs filesystems reserve 5 blocks, use 1 for a checkpoint, and
may use 1 or 2 more for caching.  Take these all into account when
computing the max image size.
diff --git a/core/definitions.mk b/core/definitions.mk
index 83834bf..a16ce03 100644
--- a/core/definitions.mk
+++ b/core/definitions.mk
@@ -1590,7 +1590,7 @@
   echo "$$printname total size is $$total"; \
   img_blocksize=$(call image-size-from-data-size,$(BOARD_FLASH_BLOCK_SIZE)); \
   if [ "$(3)" == "yaffs" ]; then \
-    reservedblocks=5; \
+    reservedblocks=8; \
   else \
     reservedblocks=0; \
   fi; \