summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-04-18 17:09:07 +0000
committerThierry Vignaud <tv@mageia.org>2012-04-18 17:09:07 +0000
commit7cef6964cd76067ffbe2764ce2f77a0401943bca (patch)
treeab9baa0f8fdf8d5b283db1ff39e4b9adb92b52b2
parent4d3fe948de9e0c2e02a8edb70a35128de8ba858d (diff)
downloaddrakx-7cef6964cd76067ffbe2764ce2f77a0401943bca.tar
drakx-7cef6964cd76067ffbe2764ce2f77a0401943bca.tar.gz
drakx-7cef6964cd76067ffbe2764ce2f77a0401943bca.tar.bz2
drakx-7cef6964cd76067ffbe2764ce2f77a0401943bca.tar.xz
drakx-7cef6964cd76067ffbe2764ce2f77a0401943bca.zip
fix detecting RAID (mga#5048)
-rw-r--r--rescue/NEWS1
-rwxr-xr-xrescue/guessmounts2
2 files changed, 2 insertions, 1 deletions
diff --git a/rescue/NEWS b/rescue/NEWS
index 08b5c36a1..3e6613e4b 100644
--- a/rescue/NEWS
+++ b/rescue/NEWS
@@ -1,3 +1,4 @@
+- fix detecting RAID (mga#5048)
- include more udev rules for RAID (mga#5048)
Version 1.36 - 8 April 2012, by Pascal Terjan
diff --git a/rescue/guessmounts b/rescue/guessmounts
index 78a5c613d..e3ef66b94 100755
--- a/rescue/guessmounts
+++ b/rescue/guessmounts
@@ -49,7 +49,7 @@ my ($raid_parts, $normal_parts) = partition { isRawRAID($_) } @parts;
if (@$raid_parts) {
require raid;
- raid::detect_during_install_once(@$raid_parts);
+ raid::detect_during_install(@$raid_parts);
my $raids = raid::get_existing(@$raid_parts);
push @$normal_parts, @$raids;
}