The vfat driver apparently supports FAT16 too, be consistent.

main
Teo Mrnjavac 10 years ago
parent 482b2c0da2
commit 51d12b2b35

@ -33,9 +33,7 @@ def mount_partitions(root_mount_point, partitions):
mount_point = root_mount_point + partition["mountPoint"] mount_point = root_mount_point + partition["mountPoint"]
fstype = partition.get("fs", "") fstype = partition.get("fs", "")
if fstype == "fat16": if fstype == "fat16" or fstype == "fat32":
fstype = "msdos"
if fstype == "fat32":
fstype = "vfat" fstype = "vfat"
libcalamares.utils.mount( libcalamares.utils.mount(

Loading…
Cancel
Save