summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2015-04-03 18:08:13 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-04-03 18:08:13 +0200
commit034f62def330bcfae17a40c0eac45fb306e2a01d (patch)
treec3a9e366f69c8c654b848e59e01fb205427e4421 /perl-install/partition_table
parent3a02afef74500d708c1cb609d8c2d2fc81063c47 (diff)
downloaddrakx-034f62def330bcfae17a40c0eac45fb306e2a01d.tar
drakx-034f62def330bcfae17a40c0eac45fb306e2a01d.tar.gz
drakx-034f62def330bcfae17a40c0eac45fb306e2a01d.tar.bz2
drakx-034f62def330bcfae17a40c0eac45fb306e2a01d.tar.xz
drakx-034f62def330bcfae17a40c0eac45fb306e2a01d.zip
really try to detect recovery partitions on GPT
fix "set_partition_flag: unknown type: recovery" (mga#15621)
Diffstat (limited to 'perl-install/partition_table')
-rw-r--r--perl-install/partition_table/gpt.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm
index 3f0bc3f13..1a284c214 100644
--- a/perl-install/partition_table/gpt.pm
+++ b/perl-install/partition_table/gpt.pm
@@ -117,7 +117,7 @@ sub read_one {
$_->{pt_type} = 0x8e;
} elsif (c::get_partition_flag($hd->{file}, $_->{part_number}, 'RAID')) {
$_->{pt_type} = 0xfd;
- } elsif (c::get_partition_flag($hd->{file}, $_->{part_number}, 'recovery')) {
+ } elsif (c::is_recovery_partition($hd->{file}, $_->{part_number})) {
$_->{pt_type} = 0x12;
}
$_->{fs_type} = 'swap' if $_->{fs_type} eq 'linux-swap(v1)';