summaryrefslogtreecommitdiffstats
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
parent9374ff7c921a3a5810ca68383737b48ee03e527f (diff)
downloaddrakx-7d6a3fd003f5464172be07802f163d101ba38faa.tar
drakx-7d6a3fd003f5464172be07802f163d101ba38faa.tar.gz
drakx-7d6a3fd003f5464172be07802f163d101ba38faa.tar.bz2
drakx-7d6a3fd003f5464172be07802f163d101ba38faa.tar.xz
drakx-7d6a3fd003f5464172be07802f163d101ba38faa.zip
- diskdrake:
o allow LVM in non expert mode o allow Encrypted partition inside LVM
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/fs/type.pm5
-rw-r--r--perl-install/install/NEWS3
3 files changed, 9 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index cc08b41c8..0b18c9cfd 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,4 +1,7 @@
- add infrastucture for detecting vmware
+- diskdrake:
+ o allow LVM in non expert mode
+ o allow Encrypted partition inside LVM
Version 12.16 - 18 March 2009
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;
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index b986cc110..9df216568 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,6 @@
+- allow LVM in non expert mode
+- allow Encrypted partition inside LVM
+
Version 12.16 - 18 March 2009
- fix doble clicking on 'accept' on license screen