[BACK]Return to vfs_conf.c CVS log [TXT][DIR] Up to [local] / prex-old / usr / server / fs / vfs

Diff for /prex-old/usr/server/fs/vfs/vfs_conf.c between version 1.1.1.1 and 1.1.1.1.2.1

version 1.1.1.1, 2008/06/03 10:38:51 version 1.1.1.1.2.1, 2008/08/13 17:12:44
Line 43 
Line 43 
 extern struct vfsops ramfs_vfsops;  extern struct vfsops ramfs_vfsops;
 extern struct vfsops devfs_vfsops;  extern struct vfsops devfs_vfsops;
 extern struct vfsops arfs_vfsops;  extern struct vfsops arfs_vfsops;
   extern struct vfsops fifofs_vfsops;
 extern struct vfsops fatfs_vfsops;  extern struct vfsops fatfs_vfsops;
   
 extern int ramfs_init(void);  extern int ramfs_init(void);
 extern int devfs_init(void);  extern int devfs_init(void);
 extern int arfs_init(void);  extern int arfs_init(void);
   extern int fifofs_init(void);
 extern int fatfs_init(void);  extern int fatfs_init(void);
   
 /*  /*
Line 63 
Line 65 
 #ifdef CONFIG_ARFS  #ifdef CONFIG_ARFS
         {"arfs",        arfs_init,      &arfs_vfsops},  /* archive fs */          {"arfs",        arfs_init,      &arfs_vfsops},  /* archive fs */
 #endif  #endif
   #ifdef CONFIG_FIFOFS
           {"fifofs",      fifofs_init,    &fifofs_vfsops}, /* FIFO & pipe */
   #endif
 #ifdef CONFIG_FATFS  #ifdef CONFIG_FATFS
         {"fatfs",       fatfs_init,     &fatfs_vfsops}, /* DOS FAT */          {"fatfs",       fatfs_init,     &fatfs_vfsops}, /* DOS FAT */
 #endif  #endif
         {0, 0, 0},          {NULL, NULL, NULL},
 };  };

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.1.2.1

CVSweb