Index: uspace/srv/rd/rd.c
===================================================================
--- uspace/srv/rd/rd.c	(revision cf95bc0cb5a4fbbb4ff76dd9072c26acb9072d93)
+++ uspace/srv/rd/rd.c	(revision 8ebc8bf4e7ed4719d04e724340aef41017edcada)
@@ -277,4 +277,16 @@
 		return false;
 	}
+
+	/*
+	 * Create the second device.
+	 * We need at least two devices for the sake of testing of non-root
+	 * mounts. Of course it would be better to allow the second device
+	 * be created dynamically...
+	 */
+	if (EOK != device_register(driver_phone, "spared", &dev_handle)) {
+		ipc_hangup(driver_phone);
+		printf(NAME ": Unable to register device\n");
+		return false;
+	}
 	
 	return true;
