Index: uspace/app/init/init.c
===================================================================
--- uspace/app/init/init.c	(revision 12fc04200ab5196e5112eb5d4529b585cba8878b)
+++ uspace/app/init/init.c	(revision 11c2ae5a15f0dfff238ade7d0f2e9f969de56b0b)
@@ -58,5 +58,5 @@
 	while (rc < 0) {
 		rc = mount(fstype, "/", "initrd");
-		
+
 		switch (rc) {
 		case EOK:
@@ -68,4 +68,7 @@
 		case ELIMIT:
 			printf(NAME ": Unable to mount root filesystem\n");
+			return false;
+		case ENOENT:
+			printf(NAME ": Unknown filesystem type (%s)\n", fstype);
 			return false;
 		default:
