summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/type.pm
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-03-20 18:12:08 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-03-20 18:12:08 +0000
commit7d6a3fd003f5464172be07802f163d101ba38faa (patch)
treeb832e330c701576ac0c72bacd6a08bc943c24e9b /perl-install/fs/type.pm
parent9374ff7c921a3a5810ca68383737b48ee03e527f (diff)
downloaddrakx-backup-do-not-use-7d6a3fd003f5464172be07802f163d101ba38faa.tar
drakx-backup-do-not-use-7d6a3fd003f5464172be07802f163d101ba38faa.tar.gz
drakx-backup-do-not-use-7d6a3fd003f5464172be07802f163d101ba38faa.tar.bz2
drakx-backup-do-not-use-7d6a3fd003f5464172be07802f163d101ba38faa.tar.xz
drakx-backup-do-not-use-7d6a3fd003f5464172be07802f163d101ba38faa.zip
- diskdrake:
o allow LVM in non expert mode o allow Encrypted partition inside LVM
Diffstat (limited to 'perl-install/fs/type.pm')
-rw-r--r--perl-install/fs/type.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index e59ca28bb..e859b6fc2 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -40,10 +40,10 @@ if_(arch() =~ /ppc/,
0x402 => 'hfs', 'Apple HFS Partition',
0x41 => '', 'PPC PReP Boot',
),
- 0x83 => '', 'Encrypted',
],
non_fs_type => [
+ 0x83 => '', 'Encrypted',
0x8e => '', 'Linux Logical Volume Manager',
0xfd => '', 'Linux RAID',
],
@@ -183,7 +183,8 @@ if_(arch() !~ /ppc/,
sub type_names {
my ($expert, $o_hd) = @_;
my @l = @{$type_names{important}};
- push @l, @{$type_names{non_fs_type}}, sort @{$type_names{other}} if $expert;
+ push @l, @{$type_names{non_fs_type}};
+ push @l, sort @{$type_names{other}} if $expert;
if ($o_hd && !$o_hd->use_pt_type) {
warn "$_ => $type_name2fs_type{$_}\n" foreach @l;
@l = grep { $type_name2fs_type{$_} } @l;