From 245cab2abc1fd74d1df489e500432c66c88f6b25 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Sun, 13 Jun 2021 14:11:59 +0200 Subject: installer: Fix FAT16 partition mounting. The "fat" file-system mount type doesn't exist in Linux. Trying to mount a FAT16 partition with "fat" file-system type returns -ENODEV. Fixes: . * gnu/installer/parted.scm (user-fs-type->mount-type): Use the "vfat" file-system for FAT16 partitions. --- gnu/installer/parted.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index 6bb5e9e85c..277581ef4b 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -234,7 +234,7 @@ inferior to MAX-SIZE, #f otherwise." (case fs-type ((ext4) "ext4") ((btrfs) "btrfs") - ((fat16) "fat") + ((fat16) "vfat") ((fat32) "vfat") ((jfs) "jfs") ((ntfs) "ntfs"))) -- cgit v1.2.3