commit | fcd5f0e1c8ad29f2e58d798f10856920266f723e | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.huber@secunet.com> | Tue Jan 23 16:22:29 2024 +0100 |
committer | Nico Huber <nico.huber@secunet.com> | Tue Jan 23 16:22:29 2024 +0100 |
tree | cdc326667e98475a97b6d41efacea0bcb325755a | |
parent | 43314489225afec6964e54a18b449efd8ef06651 [diff] [blame] |
Hook ext2fs up in vfs.c
diff --git a/src/vfs.c b/src/vfs.c index f73edb2..4a39f1b 100644 --- a/src/vfs.c +++ b/src/vfs.c
@@ -11,7 +11,7 @@ int (*dir_func) (char *dirname); int (*close_func) (void); } static const fsys_table[] = { - { "dummy", NULL, NULL, NULL, NULL }, + { "ext2", ext2fs_mount, ext2fs_read, ext2fs_dir, NULL }, }; static const size_t fsys_table_length = sizeof(fsys_table) / sizeof(fsys_table[0]);