Index: uspace/app/init/init.c
===================================================================
--- uspace/app/init/init.c	(revision 0d3b94740c681c20ef78fd22850c35014eb3b46b)
+++ uspace/app/init/init.c	(revision 87d3ecf9a85a8ae0fc4acfbcaf8178c2f6f0b765)
@@ -58,4 +58,5 @@
 	int rc = -1;
 	char *opts = "";
+	const char *root_dev = "initrd";
 	
 	if (str_cmp(fstype, "tmpfs") == 0)
@@ -63,9 +64,10 @@
 
 	while (rc < 0) {
-		rc = mount(fstype, "/", "initrd", opts, IPC_FLAG_BLOCKING);
+		rc = mount(fstype, "/", root_dev, opts, IPC_FLAG_BLOCKING);
 		
 		switch (rc) {
 		case EOK:
-			printf(NAME ": Root filesystem mounted\n");
+			printf(NAME ": Root filesystem mounted, %s at %s\n",
+			    fstype, root_dev);
 			break;
 		case EBUSY:
