summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/data.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-01-06 15:52:57 +0000
committerThierry Vignaud <tv@mandriva.org>2009-01-06 15:52:57 +0000
commitb100305c15b7f8d99477ca9ef934263c4297c932 (patch)
treebfcc26f0741943700b9049cfcab6bbba187e3005 /perl-install/harddrake/data.pm
parentfccdf94dbd892803774394e53f123c44b2cd1803 (diff)
downloaddrakx-backup-do-not-use-b100305c15b7f8d99477ca9ef934263c4297c932.tar
drakx-backup-do-not-use-b100305c15b7f8d99477ca9ef934263c4297c932.tar.gz
drakx-backup-do-not-use-b100305c15b7f8d99477ca9ef934263c4297c932.tar.bz2
drakx-backup-do-not-use-b100305c15b7f8d99477ca9ef934263c4297c932.tar.xz
drakx-backup-do-not-use-b100305c15b7f8d99477ca9ef934263c4297c932.zip
do not sduplicated hardware as unknown (#46242): track duplicated
input devices [backported from trunk]
Diffstat (limited to 'perl-install/harddrake/data.pm')
-rw-r--r--perl-install/harddrake/data.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm
index f51350a32..1c64e1dab 100644
--- a/perl-install/harddrake/data.pm
+++ b/perl-install/harddrake/data.pm
@@ -478,7 +478,7 @@ our @tree =
detector => sub {
f(grep { $_->{description} =~ /Keyboard/i || $_->{media_type} =~ /Subclass\|Keyboard/i } @devices),
# USB devices are filtered out since we already catch them through probeall():
- grep { $_->{bus} ne 'usb' && $_->{driver} eq 'kbd' && $_->{description} !~ /PC Speaker/ } detect_devices::getInputDevices();
+ f(grep { $_->{bus} ne 'usb' && $_->{driver} eq 'kbd' && $_->{description} !~ /PC Speaker/ } detect_devices::getInputDevices());
},
checked_on_boot => 0,
},
@@ -500,7 +500,7 @@ our @tree =
detector => sub {
f(grep { $_->{driver} =~ /^Mouse:|^Tablet:/ || $_->{media_type} =~ /class\|Mouse/ } @devices),
# USB devices are filtered out since we already catch them through probeall():
- grep { $_->{bus} ne 'usb' && $_->{Handlers}{mouse} } detect_devices::getInputDevices();
+ f(grep { $_->{bus} ne 'usb' && $_->{Handlers}{mouse} } detect_devices::getInputDevices());
},
checked_on_boot => 1,
automatic => 1,