Index: uspace/srv/rd/rd.c
===================================================================
--- uspace/srv/rd/rd.c	(revision d4a172b6b0350d8fd97a9064760c87ef82644eea)
+++ uspace/srv/rd/rd.c	(revision 537611ccf87670c95219a35a5a26b32e574fec29)
@@ -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;
