diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-03-03 17:01:51 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-03-03 17:01:51 +0000 |
commit | 1920378b490b55057973559723529e4b872f74d0 (patch) | |
tree | 7ca662693d4ee853ab30b6634f948b570b4eecd0 /perl-install | |
parent | 41886c4ea34a746f0e45c60d6bf734eb4d52b1c9 (diff) | |
download | drakx-1920378b490b55057973559723529e4b872f74d0.tar drakx-1920378b490b55057973559723529e4b872f74d0.tar.gz drakx-1920378b490b55057973559723529e4b872f74d0.tar.bz2 drakx-1920378b490b55057973559723529e4b872f74d0.tar.xz drakx-1920378b490b55057973559723529e4b872f74d0.zip |
really detect firewire controllers (fix typo)
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/service_harddrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index c4e185cd1..19d6cd84a 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -111,7 +111,7 @@ foreach my $hw_class (@harddrake::data::tree) { log::explanations("removed $Ident: " . harddrake::data::custom_id($oldconfig->{$_}, $item)) foreach @was_removed; log::explanations("added $Ident: " . harddrake::data::custom_id($ID{$_}, $item)) foreach @added; - modules::load_and_configure($modules_conf, 'ohci1394') if $Ident eq 'FIREWIRE_CONTROLLER' && any { $_->{driver} eq 'ohci1394' } @added; + modules::load_and_configure($modules_conf, 'ohci1394') if $Ident eq 'FIREWIRE_CONTROLLER' && any { $_->{driver} eq 'ohci1394' } @ID{@added}; @added || @was_removed or next; next if $Ident eq 'MOUSE' && $curr_kernel ne $prev_kernel; |