mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 08:58:22 -04:00
[mount] Ignore empty or unformatted filesystems
This commit is contained in:
parent
c6feedf923
commit
163351a803
1 changed files with 2 additions and 0 deletions
|
@ -56,6 +56,8 @@ def mount_partition(root_mount_point, partition, partitions):
|
|||
raise
|
||||
|
||||
fstype = partition.get("fs", "").lower()
|
||||
if not fstype or fstype == "unformatted":
|
||||
return
|
||||
|
||||
if fstype == "fat16" or fstype == "fat32":
|
||||
fstype = "vfat"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue