From 6deb0e59982c923021492993bb6ed134183ce494 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 27 Mar 2015 09:47:13 -0400 Subject: fix fs_type returned by libparted for swaps --- perl-install/NEWS | 2 +- perl-install/install/NEWS | 2 +- perl-install/partition_table/gpt.pm | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index d2bfdf634..8f2a47200 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,5 @@ - diskdrake (GPT): - o fix retrieving LVM/RAID partition type + o fix retrieving LVM/RAID/swap partition type o fix tagging lvm/raid as "linux filesystem" o fix tagging ntfs-3g as "linux filesystem" o fix tagging swap as "linux filesystem" diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 99a64610a..25812d616 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,5 @@ - GPT partitionning: - o fix retrieving LVM/RAID partition type + o fix retrieving LVM/RAID/swap partition type o fix tagging lvm/raid as "linux filesystem" o fix tagging ntfs-3g as "linux filesystem" o fix tagging swap as "linux filesystem" diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index 5dec99630..1ac296946 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -118,6 +118,7 @@ sub read_one { } elsif (c::get_partition_flag($hd->{file}, $_->{part_number}, 'RAID')) { $_->{pt_type} = 0xfd; } + $part->{fs_type} = 'swap' if $part->{fs_type} eq 'linux-swap(v1)'; @pt[$_->{part_number}-1] = $_; } -- cgit v1.2.1