summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm10
1 files changed, 7 insertions, 3 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index 8bee5e612..f03bbd596 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -219,9 +219,13 @@ sub hasModem($) {
}
sub hasMousePS2() {
- my $f = detect_devices::tryOpen("psaux");
- my $t; sysread($f, $t, 256) or return;
- $t eq "\xFE";
+ 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(
}
#-######################################################################################