[mount] Ignore empty or unformatted filesystems

main
Gaël PORTAY 4 years ago
parent c6feedf923
commit 163351a803

@ -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…
Cancel
Save