Index: uspace/app/mkexfat/mkexfat.c
===================================================================
--- uspace/app/mkexfat/mkexfat.c	(revision 6cf9aeb8e6f1541a974cfe45e86881d9285d9b2c)
+++ uspace/app/mkexfat/mkexfat.c	(revision 3f6d4ea6fd4e6426c66809ce5240ea0a86e4aced)
@@ -232,5 +232,5 @@
 
 	if (cfg.sector_size > 4096) {
-		printf(NAME ":Error, sector size can't be greater" \
+		printf(NAME ": Error, sector size can't be greater" \
 		    " than 4096 bytes.\n");
 		return 2;
@@ -252,4 +252,18 @@
 	vbr_initialize(&vbr, &cfg);
 
+	/* Write the VBR on disk */
+	rc = block_write_direct(service_id, 0, 1, &vbr);
+	if (rc != EOK) {
+		printf(NAME ": Error, failed to write the VBR on disk\n");
+		return 2;
+	}
+
+	/* Write the VBR backup on disk */
+	rc = block_write_direct(service_id, 1, 1, &vbr);
+	if (rc != EOK) {
+		printf(NAME ": Error, failed to write the VBR" \
+		    " backup on disk\n");
+		return 2;
+	}
 
 	return 0;
