summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/harddrake/data.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index ad81bda23..f7b74b4c6 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -3,6 +3,7 @@
o enable to set bootloader password in high security level
- harddrake
o fix displaying empty info for USB discs
+ o fix detecting firewire controllers with newer kernels
o guess real vendor names for SCSI discs like we do for IDE devices
Version 13.4 - 7 January 2009
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index f80ed5da1..1e801adc7 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -101,7 +101,7 @@ our @tree =
string => N("Firewire controllers"),
icon => "usb.png",
configurator => "",
- detector => sub { f(grep { $_->{driver} =~ /ohci1394/ } @devices) },
+ detector => sub { f(grep { $_->{driver} =~ /firewire_ohci|ohci1394/ } @devices) },
checked_on_boot => 1,
},