diff options
-rw-r--r-- | perl-install/detect_devices.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index f2c05bf4f..f1622fcad 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -470,6 +470,12 @@ sub getInputDevices() { @devices; } +sub getSynapticsTouchpads() { + grep { + member($_->{description}, "|SynPS/2 Synaptics TouchPad", "|AlpsPS/2 ALPS TouchPad") + } getInputDevices(); +} + sub getSerialModem { my ($modules_conf, $o_mouse) = @_; my $mouse = $o_mouse || {}; |