mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user