The vfat driver apparently supports FAT16 too, be consistent.
This commit is contained in:
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…
Reference in New Issue
Block a user