Add cleaner ext2 filesystem implementation

Signed-off-by: Laurent Vivier <Laurent@vivier.eu>



git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@627 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Laurent Vivier
2009-11-22 09:47:08 +00:00
parent d2cc5db789
commit 26c129730b
21 changed files with 1381 additions and 2 deletions

View File

@@ -68,6 +68,12 @@ extern int fs_iso9660_open( int fd, fs_ops_t *fs );
static inline int fs_iso9660_open( int fd, fs_ops_t *fs ) { return -1; }
#endif
#ifdef CONFIG_EXT2
extern int fs_ext2_open( int fd, fs_ops_t *fs );
#else
static inline int fs_ext2_open( int fd, fs_ops_t *fs ) { return -1; }
#endif
#ifdef CONFIG_GRUBFS
extern int fs_grubfs_open( int fd, fs_ops_t *fs );
#else