From 072e482acfa92d02045cf90a34c51d4d7b3f85b9 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 20 May 2015 02:58:47 -0400 Subject: libparted: map 'fat32' to 'vfat' (mga#15987) fix fs returned by libparted thus fixing mount point for FAT partitions on GTP (mga#15987) this also fix setting the proper GUID for FAT partitions on GPT --- perl-install/NEWS | 4 ++++ perl-install/install/NEWS | 3 +++ perl-install/partition_table/gpt.pm | 2 ++ 3 files changed, 9 insertions(+) diff --git a/perl-install/NEWS b/perl-install/NEWS index 252d2e6a9..40d960267 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,7 @@ +- diskdrake: + o fix mnt point for FAT partitions on GTP (mga#15987) + o set the proper GUID for FAT partitions on GPT + Version 16.98 - 19 May 2015 - all tools: diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ae7d7497a..84a59ba2d 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- partitioning: + o fix mnt point for FAT partitions on GTP (mga#15987) + o set the proper GUID for FAT partitions on GPT - don't try to install non existant scim-googlepinyin (mga#6681) Version 16.97 - 18 May 2015 diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index e8b521912..5c1f53ca0 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -105,6 +105,8 @@ my %_GUID_to_Label = ( my %parted_mapping = ( 'linux-swap(v1)' => 'swap', 'ntfs' => 'ntfs-3g', + 'fat16' => 'vfat', + 'fat32' => 'vfat', ); my %rev_parted_mapping = reverse %parted_mapping; -- cgit v1.2.1