disk.c: add iso9660 to list of supported filesystems (for hybrid ISO)

This commit is contained in:
Anton V. Boyarshinov 2010-05-26 23:08:35 +04:00
parent 513e194fde
commit 4e31017bba

3
disk.c
View File

@ -248,8 +248,9 @@ static enum return_type try_with_partition(char *choice)
if (my_mount(device_fullname, IMAGE_LOCATION, "ext2", 0) == -1 &&
my_mount(device_fullname, IMAGE_LOCATION, "vfat", 0) == -1 &&
my_mount(device_fullname, IMAGE_LOCATION, "ntfs", 0) == -1 &&
my_mount(device_fullname, IMAGE_LOCATION, "iso9660", 0) == -1 &&
my_mount(device_fullname, IMAGE_LOCATION, "reiserfs", 0) == -1) {
stg1_error_message("I can't find a valid filesystem (tried: ext2, vfat, ntfs, reiserfs).");
stg1_error_message("I can't find a valid filesystem (tried: ext2, vfat, ntfs, iso9660, reiserfs).");
return RETURN_ERROR;
}