summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/type.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2009-11-12 18:37:59 +0000
committerOlivier Blin <oblin@mandriva.com>2009-11-12 18:37:59 +0000
commit6cc8574a6e37cb33949cac3395c220d63836472a (patch)
treeb4627a7338391d4ff2183fd6dbbc1b531df982a0 /perl-install/fs/type.pm
parentf2303d52b00d8f0b4813902cd9fa72aab6a61264 (diff)
downloaddrakx-6cc8574a6e37cb33949cac3395c220d63836472a.tar
drakx-6cc8574a6e37cb33949cac3395c220d63836472a.tar.gz
drakx-6cc8574a6e37cb33949cac3395c220d63836472a.tar.bz2
drakx-6cc8574a6e37cb33949cac3395c220d63836472a.tar.xz
drakx-6cc8574a6e37cb33949cac3395c220d63836472a.zip
fix detecting hidden partitions as recovery (broken in commit 257797)
Diffstat (limited to 'perl-install/fs/type.pm')
-rw-r--r--perl-install/fs/type.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 80176f15a..42a11f9c6 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -326,7 +326,7 @@ sub isFat_or_NTFS { member($_[0]{fs_type}, 'vfat', 'ntfs', 'ntfs-3g') }
sub isApple { $_[0]{pt_type} == 0x401 && defined $_[0]{isDriver} }
sub isAppleBootstrap { $_[0]{pt_type} == 0x401 && defined $_[0]{isBoot} }
sub isRecovery {
- isFat_or_NTFS($_[0]) && ($_[0]{type_name} eq 'Hidden' ||
+ isFat_or_NTFS($_[0]) && ($_[0]{type_name} =~ /^Hidden/ ||
member($_[0]{device_LABEL} ,
# Extracted from /usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi
# Hopefuly we'll ask to hal/udev someday