From 51d12b2b35062f1200d4160fdcbb4a4541ccf126 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Wed, 24 Sep 2014 18:25:56 +0200 Subject: [PATCH] The vfat driver apparently supports FAT16 too, be consistent. --- src/modules/mount/main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/modules/mount/main.py b/src/modules/mount/main.py index c94c35cb0..67f34701b 100644 --- a/src/modules/mount/main.py +++ b/src/modules/mount/main.py @@ -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(