Index: uspace/app/init/init.c
===================================================================
--- uspace/app/init/init.c	(revision c98e6ee244a8e271a395a052069c23bca4f8b538)
+++ uspace/app/init/init.c	(revision 57b4f469e7b99aef70031cf3f2d0a09930de3f2d)
@@ -52,10 +52,10 @@
 }
 
-static bool mount_tmpfs(void)
+static bool mount_fs(const char *fstype)
 {
 	int rc = -1;
 	
 	while (rc < 0) {
-		rc = mount("tmpfs", "/", "initrd");
+		rc = mount(fstype, "/", "initrd");
 		
 		switch (rc) {
@@ -96,6 +96,8 @@
 	info_print();
 	sleep(5);	// FIXME
+	bool has_tmpfs = false;
+	bool has_fat = false;
 	
-	if (!mount_tmpfs()) {
+	if (!(has_tmpfs = mount_fs("tmpfs")) && !(has_fat = mount_fs("fat"))) {
 		printf(NAME ": Exiting\n");
 		return -1;
@@ -110,5 +112,12 @@
 	version_print();
 	
-	spawn("/sbin/fat");
+	/*
+	 * Spawn file system servers that were not loaded as init tasks.
+	 */
+	if (!has_fat)
+		spawn("/sbin/fat");
+	if (!has_tmpfs)
+		spawn("/sbin/tmpfs");
+		
 	spawn("/sbin/tetris");
 	spawn("/sbin/cli");
