mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Fix up non-grub iso9660 filesystem, plus correct a thinko where the sense of the existing hfs/ext2 probe functions was inverted
by default. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@796 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
committed by
Mark Cave-Ayland
parent
c6a9039103
commit
0dddb61de8
@@ -69,8 +69,10 @@ static inline int fs_hfs_probe( int fd, llong offs ) { return -1; }
|
||||
|
||||
#ifdef CONFIG_ISO9660
|
||||
extern int fs_iso9660_open( int fd, fs_ops_t *fs );
|
||||
extern int fs_iso9660_probe( int fd, llong offs );
|
||||
#else
|
||||
static inline int fs_iso9660_open( int fd, fs_ops_t *fs ) { return -1; }
|
||||
static inline int fs_iso9660_probe( int fd, llong offs ) { return -1; }
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_EXT2
|
||||
|
||||
Reference in New Issue
Block a user