Recovery: Add support for filesystems >2gb

Add a  prebuilt static linked mke2fs with support for >2gb FS.
Add board_has_large_filesystem define
Adjust mmcutils for differences between busybox and static mke2fs

Change-Id: Ib02771ee161e8874b6840067dc8682fc63ad6513
diff --git a/mmcutils/mmcutils.c b/mmcutils/mmcutils.c
index da87567..322f69b 100644
--- a/mmcutils/mmcutils.c
+++ b/mmcutils/mmcutils.c
@@ -341,12 +341,12 @@
 int
 format_ext3_device (const char *device) {
     // Run mke2fs
-    char *const mke2fs[] = {MKE2FS_BIN, "-j", device, NULL};
+    char *const mke2fs[] = {MKE2FS_BIN, "-j", "-q", device, NULL};
     if(run_exec_process(mke2fs))
         return -1;
 
     // Run tune2fs
-    char *const tune2fs[] = {TUNE2FS_BIN, "-j", "-C", "1", device, NULL};
+    char *const tune2fs[] = {TUNE2FS_BIN, "-C", "1", device, NULL};
     if(run_exec_process(tune2fs))
         return -1;