From 31e10542594e47573b9eaac143874d4bb0ed0ec9 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Mon, 4 May 2009 16:05:58 +0000 Subject: Detect Elantech touchpad --- perl-install/detect_devices.pm | 1 + perl-install/modules.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index ce6c8e029..dce726063 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -493,6 +493,7 @@ sub getInputDevices() { $device->{Synaptics} = $descr eq 'SynPS/2 Synaptics TouchPad'; $device->{ALPS} = $descr =~ m!^AlpsPS/2 ALPS!; + $device->{Elantech} = $descr eq 'ETPS/2 Elantech Touchpad'; } elsif (/H: Handlers=(.*)/) { my @l = split(' ', $1); diff --git a/perl-install/modules.pm b/perl-install/modules.pm index af6a10aa3..f6e481973 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -192,7 +192,7 @@ sub write_preload_conf { push @l, 'nvram' if $is_laptop; push @l, map { $_->{driver} } detect_devices::probe_category($_) foreach qw(multimedia/dvb multimedia/tv various/agpgart various/laptop input/joystick various/crypto disk/card_reader); push @l, 'padlock-aes', 'padlock-sha' if cat_("/proc/cpuinfo") =~ /rng_en/; - push @l, 'evdev' if any { $_->{Synaptics} || $_->{ALPS} || $_->{HWHEEL} } detect_devices::getInputDevices(); + push @l, 'evdev' if any { $_->{Synaptics} || $_->{ALPS} || $_->{Elantech} || $_->{HWHEEL} } detect_devices::getInputDevices(); push @l, 'hdaps' if $is_laptop && $manufacturer eq 'LENOVO'; append_to_modules_loaded_at_startup("$::prefix/etc/modprobe.preload", @l); } -- cgit v1.2.1