aboutsummaryrefslogtreecommitdiffstats
path: root/nmount.c
diff options
context:
space:
mode:
authordianshi <dianshi@main.lv>2020-07-07 18:09:07 +0100
committerdianshi <dianshi@main.lv>2020-07-07 18:09:07 +0100
commit29ca4b3679a569b4c972cbaa2cdb634e7ee19aa6 (patch)
tree53f08f6b19d2cdacb4b771ff0510685f0695fd65 /nmount.c
parent2a123f9637b516a983baf9c77705230a7d9b8ea2 (diff)
downloadnmount-29ca4b3679a569b4c972cbaa2cdb634e7ee19aa6.tar.gz
nmount-29ca4b3679a569b4c972cbaa2cdb634e7ee19aa6.zip
Update new fs table
Diffstat (limited to 'nmount.c')
-rw-r--r--nmount.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/nmount.c b/nmount.c
index 7746855..ecb0219 100644
--- a/nmount.c
+++ b/nmount.c
@@ -87,12 +87,16 @@ static const struct vfs {
vfs_options *options; //hellpers to show all possible options to config fs mount
} vfstab[] = {
{"devtmpfs", 0, "/Device", 1, NULL},
- {"mqueue", 0, "/MQueue/", 0, NULL},
+ {"mqueue", 0, "/Queue/", 1, NULL},
{"proc", 0, "/Process", 1, (struct vfs_options*)&vfs_options_proc},
- {"tmpfs", 0, "/Ram", 0, NULL},
+ {"tmpfs", 0, "/Ram", 1, NULL},
{"sysfs", 0, "/System", 1, NULL},
{"ext4", 0, NULL, 0, NULL},
+ {"ext3", 0, NULL, 0, NULL},
+ {"ext2", 0, NULL, 0, NULL},
{"vfat", 0, NULL, 0, NULL},
+ {"msdos", 0, NULL, 0, NULL},
+ {"ntfs", 0, NULL, 0, NULL},
{NULL, 0, NULL, 0, NULL},
};