From c879f03f93a6c906e59e8999edadf3f3fb3958e4 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Thu, 4 Feb 2010 10:29:43 +0000 Subject: partitioning wizard: offer to install on dmraid and existing lvm --- perl-install/fs/partitioning_wizard.pm | 4 +++- perl-install/install/NEWS | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index a30626b52..21890ad91 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -502,7 +502,9 @@ sub main { my $mainbox = Gtk2::VBox->new; - my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{$all_hds->{hds}}; + my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{$all_hds->{hds} }; + push @kinds, map { diskdrake::hd_gtk::raid2kind($_) } @{$all_hds->{raids}}; + push @kinds, map { diskdrake::hd_gtk::lvm2kind($_) } @{$all_hds->{lvms}}; my $hdchoice = Gtk2::HBox->new; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 8ce59ddd6..e92721758 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,7 +1,10 @@ - bootloader configuration: - O add support for crypted grub passwords + o add support for crypted grub passwords o always display security settings o allow timeout to be '0' +- partitioning wizard: + o offer to install on dmraid (instead of crashing if no other disk) + o offer to install on existing lvm Version 13.8 - 3 February 2010 -- cgit v1.2.1