disk.c, mount.c: Add support exfat
This commit is contained in:
parent
b4c8144c03
commit
ae2901d290
3
disk.c
3
disk.c
@ -265,9 +265,10 @@ static enum return_type try_with_partition(char *choice)
|
||||
my_mount(device_fullname, IMAGE_LOCATION, "ext3", 0) == -1 &&
|
||||
my_mount(device_fullname, IMAGE_LOCATION, "ext4", 0) == -1 &&
|
||||
my_mount(device_fullname, IMAGE_LOCATION, "vfat", 0) == -1 &&
|
||||
my_mount(device_fullname, IMAGE_LOCATION, "exfat", 0) == -1 &&
|
||||
my_mount(device_fullname, IMAGE_LOCATION, "reiserfs", 0) == -1 &&
|
||||
my_mount(device_fullname, IMAGE_LOCATION, "ntfs", 0) == -1) {
|
||||
stg1_error_message("I can't find a valid filesystem (tried: ext2, ext3, ext4, vfat, ntfs, iso9660, reiserfs).");
|
||||
stg1_error_message("I can't find a valid filesystem (tried: ext2, ext3, ext4, vfat, exfat, ntfs, iso9660, reiserfs).");
|
||||
return RETURN_ERROR;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user