This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 245cab2 installer: Fix FAT16 partition mounting.
245cab2 is described below
commit 245cab2abc1fd74d1df489e500432c66c88f6b25
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Sun Jun 13 14:11:59 2021 +0200
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: <https://issues.guix.gnu.org/48419>.
* 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 6bb5e9e..277581e 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")))