diff options
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index f03bbd596..b8a1ff707 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -219,13 +219,7 @@ sub hasModem($) { } sub hasMousePS2() { - my $t; sysread(tryOpen("psaux"), $t, 1) != 1 || $t ne "\xFE"; -} - -sub hasMouseUSB(;$) { - my @modules = map { "usb-$_" } qw(uhci ohci ohci-hcd); - my ($first) = @_; -# modprobe( + my $t; sysread(tryOpen("psaux"), $t, 256) != 1 || $t ne "\xFE"; } #-###################################################################################### |