mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 10:25:36 -04:00
The vfat driver apparently supports FAT16 too, be consistent.
This commit is contained in:
parent
482b2c0da2
commit
51d12b2b35
1 changed files with 1 additions and 3 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue