summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xperl-install/standalone/service_harddrake5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index dd83e0cc8..acf3494a7 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -95,8 +95,11 @@ my @cards = (
}
);
+
+my @devices = grep { $_->{driver} =~ /^Card:/ } detect_devices::probeall();
+
foreach my $card (@cards) {
- my $device = find { $_->{driver} =~ /$card->{ldetect_driver_regexp}/ } detect_devices::probeall();
+ my $device = find { $_->{driver} =~ /$card->{ldetect_driver_regexp}/ } @devices;
next if !$device;
my $id = $device->{driver} =~ /Card:(.*)/ && $1;