=================================================================== RCS file: /cvs/prex-old/usr/server/fs/vfs/vfs_conf.c,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -u -r1.1.1.1 -r1.1.1.1.2.1 --- prex-old/usr/server/fs/vfs/vfs_conf.c 2008/06/03 10:38:51 1.1.1.1 +++ prex-old/usr/server/fs/vfs/vfs_conf.c 2008/08/13 17:12:44 1.1.1.1.2.1 @@ -43,11 +43,13 @@ extern struct vfsops ramfs_vfsops; extern struct vfsops devfs_vfsops; extern struct vfsops arfs_vfsops; +extern struct vfsops fifofs_vfsops; extern struct vfsops fatfs_vfsops; extern int ramfs_init(void); extern int devfs_init(void); extern int arfs_init(void); +extern int fifofs_init(void); extern int fatfs_init(void); /* @@ -63,8 +65,11 @@ #ifdef CONFIG_ARFS {"arfs", arfs_init, &arfs_vfsops}, /* archive fs */ #endif +#ifdef CONFIG_FIFOFS + {"fifofs", fifofs_init, &fifofs_vfsops}, /* FIFO & pipe */ +#endif #ifdef CONFIG_FATFS {"fatfs", fatfs_init, &fatfs_vfsops}, /* DOS FAT */ #endif - {0, 0, 0}, + {NULL, NULL, NULL}, };