commit | cc960f2580843e2341e41ffba99f823f956e141d | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.h@gmx.de> | Mon Jan 29 01:13:45 2024 +0100 |
committer | Nico Huber <nico.h@gmx.de> | Mon Jan 29 01:14:30 2024 +0100 |
tree | 1bb491773f5f661123181c4fcc74083c68abaa2d | |
parent | b50290f0f28649f902cdafdcd04eee157ba96083 [diff] [blame] |
Start ISO9660 support
diff --git a/src/vfs.c b/src/vfs.c index 943fea4..03e9374 100644 --- a/src/vfs.c +++ b/src/vfs.c
@@ -12,6 +12,7 @@ int (*close_func) (void); } static const fsys_table[] = { { "ext2", ext2fs_mount, ext2fs_read, ext2fs_dir, NULL }, + { "iso9660", iso9660_mount, iso9660_read, iso9660_dir, NULL }, }; static const size_t fsys_table_length = sizeof(fsys_table) / sizeof(fsys_table[0]);