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]);