diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-20 02:58:47 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-20 18:34:41 +0200 |
commit | 072e482acfa92d02045cf90a34c51d4d7b3f85b9 (patch) | |
tree | 0a5218326b221617fecfcd50a88369170c4575de /perl-install | |
parent | 85ab4aeb0467b989fdd1d86c270f8174b34409e6 (diff) | |
download | drakx-072e482acfa92d02045cf90a34c51d4d7b3f85b9.tar drakx-072e482acfa92d02045cf90a34c51d4d7b3f85b9.tar.gz drakx-072e482acfa92d02045cf90a34c51d4d7b3f85b9.tar.bz2 drakx-072e482acfa92d02045cf90a34c51d4d7b3f85b9.tar.xz drakx-072e482acfa92d02045cf90a34c51d4d7b3f85b9.zip |
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
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 4 | ||||
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/partition_table/gpt.pm | 2 |
3 files changed, 9 insertions, 0 deletions
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; |