The vfat driver apparently supports FAT16 too, be consistent.

This commit is contained in:
Teo Mrnjavac 2014-09-24 18:25:56 +02:00
parent 482b2c0da2
commit 51d12b2b35

View File

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