mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 09:25:36 -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
|
raise
|
||||||
|
|
||||||
fstype = partition.get("fs", "").lower()
|
fstype = partition.get("fs", "").lower()
|
||||||
|
if not fstype or fstype == "unformatted":
|
||||||
|
return
|
||||||
|
|
||||||
if fstype == "fat16" or fstype == "fat32":
|
if fstype == "fat16" or fstype == "fat32":
|
||||||
fstype = "vfat"
|
fstype = "vfat"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue