commit | a6d6315b46c3847f0a65e7e0cd5a5744d1e995a2 | [log] [tgz] |
---|---|---|
author | Thomas Heijligen <src@posteo.de> | Mon Jan 29 13:43:40 2024 +0000 |
committer | Thomas Heijligen <src@posteo.de> | Mon Jan 29 13:43:59 2024 +0000 |
tree | 50306271d551de4efa835a3a3e6d13ba46ca1a5e | |
parent | cc960f2580843e2341e41ffba99f823f956e141d [diff] [blame] |
Add NullFS Signed-off-by: Thomas Heijligen <src@posteo.de>
diff --git a/src/vfs.c b/src/vfs.c index 03e9374..f4c7851 100644 --- a/src/vfs.c +++ b/src/vfs.c
@@ -11,6 +11,7 @@ int (*dir_func) (char *dirname); int (*close_func) (void); } static const fsys_table[] = { + { "nullfs", nullfs_mount, nullfs_read, nullfs_dir, NULL }, { "ext2", ext2fs_mount, ext2fs_read, ext2fs_dir, NULL }, { "iso9660", iso9660_mount, iso9660_read, iso9660_dir, NULL }, };