diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-21 17:01:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-21 17:01:26 +0000 |
commit | 6c68aa327f77b42c3626d831a87acff47ac41456 (patch) | |
tree | 8d3d8b3ec64a764a4c4be93a7fb403630d9b0f9c /perl-install/modules.pm | |
parent | aba414f039ced0d59df2005859a0e4d8582e2eac (diff) | |
download | drakx-6c68aa327f77b42c3626d831a87acff47ac41456.tar drakx-6c68aa327f77b42c3626d831a87acff47ac41456.tar.gz drakx-6c68aa327f77b42c3626d831a87acff47ac41456.tar.bz2 drakx-6c68aa327f77b42c3626d831a87acff47ac41456.tar.xz drakx-6c68aa327f77b42c3626d831a87acff47ac41456.zip |
don't care if insmod'ing ohci1394 fail (bug #1972)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index f9db94709..32b2c2b3b 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -101,7 +101,7 @@ sub load_category { eval { load([ $_->{driver}, $_->{options} ]) }; $_->{error} = $@; - $_->{try} = 1 if $_->{driver} eq 'hptraid'; + $_->{try} = 1 if member($_->{driver}, 'hptraid', 'ohci1394'); #- don't warn when this fails !($_->{error} && $_->{try}); } probe_category($category), |