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/partition_table/gpt.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install/partition_table') 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