From 22350abfdb8e85c05aba5f22278e76a02bc336f2 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 27 Mar 2015 07:31:26 -0400 Subject: fix tagging ntfs-3g as "linux filesystem" with GPT libparted needs it to be named like this in order to put the right --- perl-install/NEWS | 1 + perl-install/install/NEWS | 1 + perl-install/partition_table/gpt.pm | 1 + 3 files changed, 3 insertions(+) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 71b4a64a2..4ec599045 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - diskdrake (GPT): o fix retrieving LVM/RAID partition type + o fix tagging ntfs-3g as "linux filesystem" o fix tagging swap as "linux filesystem" Version 16.71 - 25 March 2015 diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 8135ab7b3..e642174bd 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - GPT partitionning: o fix retrieving LVM/RAID partition type + o fix tagging ntfs-3g as "linux filesystem" o fix tagging swap as "linux filesystem" - tell users to ignore Gtk3 warnings diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index cad7e6073..dde111151 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -146,6 +146,7 @@ sub write { print "($action, $part_number, $o_start, $o_size)\n"; if ($action eq 'add') { local $part->{fs_type} = 'linux-swap(v1)' if isSwap($part->{fs_type}); + local $part->{fs_type} = 'ntfs' if $part->{fs_type} eq 'ntfs-3g'; c::disk_add_partition($hd->{file}, $o_start, $o_size, $part->{fs_type}) or die "failed to add partition #$part_number on $hd->{file}"; if (isESP($part)) { c::set_partition_flag($hd->{file}, $part_number, 'ESP') -- cgit v1.2.1