Index: uspace/app/init/init.c
===================================================================
--- uspace/app/init/init.c	(revision 73d86001885df3211d108f3c08860260f1c2b38f)
+++ uspace/app/init/init.c	(revision 8ffedd8013b66e0367a7ea63cfa680b43bf63a40)
@@ -127,5 +127,5 @@
 		opts = "restore";
 	
-	int rc = vfs_mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts,
+	int rc = mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts,
 	    IPC_FLAG_BLOCKING, 0);
 	return mount_report("Root filesystem", ROOT_MOUNT_POINT, fstype,
@@ -144,5 +144,5 @@
 static bool mount_locfs(void)
 {
-	int rc = vfs_mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "",
+	int rc = mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "",
 	    IPC_FLAG_BLOCKING, 0);
 	return mount_report("Location service filesystem", LOCFS_MOUNT_POINT,
@@ -300,5 +300,5 @@
 static bool mount_tmpfs(void)
 {
-	int rc = vfs_mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0, 0);
+	int rc = mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0, 0);
 	return mount_report("Temporary filesystem", TMPFS_MOUNT_POINT,
 	    TMPFS_FS_TYPE, NULL, rc);
