summaryrefslogtreecommitdiffstats
path: root/rescue
diff options
context:
space:
mode:
Diffstat (limited to 'rescue')
-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;
}