Index: uspace/app/fdisk/fdisk.c
===================================================================
--- uspace/app/fdisk/fdisk.c	(revision 2d78d88c1a4dd5482f60bb59e70d0111398cbbce)
+++ uspace/app/fdisk/fdisk.c	(revision 0abc2aea144199fee5fb2b5b1ffcf9f0ac6528ce)
@@ -517,4 +517,31 @@
 	}
 
+	/* Ask for mount point */
+	tinput = tinput_new();
+	if (tinput == NULL) {
+		rc = ENOMEM;
+		goto error;
+	}
+
+	rc = tinput_set_prompt(tinput, "?> ");
+	if (rc != EOK)
+		goto error;
+
+	while (true) {
+		printf("Enter mount point for new partition (Auto, None or /path).\n");
+		rc = tinput_read_i(tinput, "Auto", &mountp);
+		if (rc != EOK)
+			goto error;
+
+		rc = vol_mountp_validate(mountp);
+		if (rc == EOK)
+			break;
+
+		free(mountp);
+		mountp = NULL;
+	}
+
+	tinput_destroy(tinput);
+	tinput = NULL;
 
 	fdisk_pspec_init(&pspec);
