diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-03-27 07:19:10 -0400 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-03-27 22:32:50 +0159 |
commit | 00b61be8e2bc2fda4a848fe7af38e7d7543d322f (patch) | |
tree | 9ca2d9cb105962237e647e02ce284fcf9de7cd13 /perl-install/partition_table | |
parent | fc666ca8b327b3b1dda653f5238e6844f019faf7 (diff) | |
download | drakx-00b61be8e2bc2fda4a848fe7af38e7d7543d322f.tar drakx-00b61be8e2bc2fda4a848fe7af38e7d7543d322f.tar.gz drakx-00b61be8e2bc2fda4a848fe7af38e7d7543d322f.tar.bz2 drakx-00b61be8e2bc2fda4a848fe7af38e7d7543d322f.tar.xz drakx-00b61be8e2bc2fda4a848fe7af38e7d7543d322f.zip |
fix tagging swap as "linux filesystem" with GPT
libparted needs it to be named like this in order to put the right
GUID...
Diffstat (limited to 'perl-install/partition_table')
-rw-r--r-- | perl-install/partition_table/gpt.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index dc169c183..cad7e6073 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -145,6 +145,7 @@ sub write { my ($part) = grep { $_->{start} == $o_start && $_->{size} == $o_size } @$pt; 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}); 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') |