diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-01-18 11:22:10 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-01-18 11:22:10 +0000 |
commit | 2f67ead989a9e817ca2273315f8d4ab9fbaacc33 (patch) | |
tree | 1da7195d9f3833bf0e409bad01c180368c728d48 /perl-install/harddrake | |
parent | a0015e6f4736e1cfd8e79a2329714a05b268d5eb (diff) | |
download | drakx-2f67ead989a9e817ca2273315f8d4ab9fbaacc33.tar drakx-2f67ead989a9e817ca2273315f8d4ab9fbaacc33.tar.gz drakx-2f67ead989a9e817ca2273315f8d4ab9fbaacc33.tar.bz2 drakx-2f67ead989a9e817ca2273315f8d4ab9fbaacc33.tar.xz drakx-2f67ead989a9e817ca2273315f8d4ab9fbaacc33.zip |
fix detecting firewire controllers when using the new kernel firewire stack
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/data.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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, }, |