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:
Mark Cave-Ayland
2010-06-23 20:41:34 +00:00
committed by Mark Cave-Ayland
parent c6a9039103
commit 0dddb61de8
8 changed files with 37 additions and 9 deletions

View File

@@ -463,7 +463,7 @@ int
fs_hfs_probe( int fd, llong offs )
{
if (hfs_probe(fd, offs))
return -1;
return 0;
return 0;
return -1;
}