diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-03-27 11:25:04 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-03 21:04:02 +0200 |
commit | 5cc6ac8d00328f695a529bcbf81efa86412b8341 (patch) | |
tree | 7e18ca9fc896cad5d78a9e892957b12d1110a5e3 | |
parent | bf98500a404bd350f921a1ba70e1fb10d516ea3a (diff) | |
download | drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar.gz drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar.bz2 drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.tar.xz drakx-5cc6ac8d00328f695a529bcbf81efa86412b8341.zip |
do not offer to select RAID as it result in a crash
rationale: we only show top storage devices which are the ones that work
Fix mga#5800
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 7f51b5463..dd331c57d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- partitioning wizard: + o do not offer to select RAID as it result in a crash (mga#5800) + Version 16.76 - 3 April 2015 - drakboot: diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index ab897c209..1d33c8bfb 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -503,7 +503,7 @@ sub main { my $mainbox = Gtk3::VBox->new; my @kinds = map { diskdrake::hd_gtk::hd2kind($_) } sort { $a->{is_removable} <=> $b->{is_removable} } @{ $all_hds->{hds} }; - push @kinds, diskdrake::hd_gtk::raid2real_kind($_) foreach @{$all_hds->{raids}}; + #push @kinds, diskdrake::hd_gtk::raid2real_kind($_) foreach @{$all_hds->{raids}}; push @kinds, map { diskdrake::hd_gtk::lvm2kind($_) } @{$all_hds->{lvms}}; my $hdchoice = Gtk3::HBox->new; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6bd9125db..61e35ddd0 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- partitioning wizard: + o do not offer to select RAID as it result in a crash (mga#5800) + Version 16.76 - 3 April 2015 - bootloader config: |