On 25/04/2025 at 06:50, Marcin Owsiany wrote:
>
> The touchpad did not work in the installer, but does work in GNOME after
> installation is complete. The trackpoint did work before and after,
> though. Attaching lsmod from the installed system and the installer
> syslog as requested in #1103993.
Can you post the content of /proc/bus/input/devices on the installed
system to see how the touchpad is detected ?
Here is the relevant section:
I: Bus=0011 Vendor=0002 Product=000a Version=0063
N: Name="TPPS/2 Elan TrackPoint"
P: Phys=isa0060/serio1/input0
S: Sysfs=/devices/platform/i8042/serio1/input/input5
U: Uniq=
H: Handlers=mouse0 event4
B: PROP=21
B: EV=7
B: KEY=70000 0 0 0 0
B: REL=3
I: Bus=0018 Vendor=2c2f Product=002d Version=0100
N: Name="SNSL002D:00 2C2F:002D Mouse"
P: Phys=i2c-SNSL002D:00
S: Sysfs=/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-SNSL002D:00/0018:2C2F:002D.0001/input/input9
U: Uniq=
H: Handlers=mouse1 event5
B: PROP=0
B: EV=17
B: KEY=1f0000 0 0 0 0
B: REL=3
B: MSC=10
I: Bus=0018 Vendor=2c2f Product=002d Version=0100
N: Name="SNSL002D:00 2C2F:002D Touchpad"
P: Phys=i2c-SNSL002D:00
S: Sysfs=/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-SNSL002D:00/0018:2C2F:002D.0001/input/input10
U: Uniq=
H: Handlers=mouse2 event6
B: PROP=5
B: EV=1b
B: KEY=e520 10000 0 0 0 0
B: ABS=2e0800000000003
B: MSC=20
Complete file attached.
It should contain a paragraph about the touchpad looking like this:
I: Bus=0011 Vendor=0002 Product=0008 Version=0200
N: Name="AlpsPS/2 ALPS DualPoint TouchPad"
P: Phys=isa0060/serio1/input0
S: Sysfs=/devices/platform/i8042/serio1/input/input5
(...)
With the "Sysfs=" path, you can try to find the associated driver
module. In the example above, it would be:
$ realpath
/sys/devices/platform/i8042/serio1/input/input5/device/driver/module
/sys/module/psmouse
In my case:
$ realpath /sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-SNSL002D:00/0018:2C2F:002D.0001/driver/module
/sys/module/hid_multitouch
$ realpath /sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-SNSL002D:00/0018:2C2F:002D.0001/input/input10/device/driver/module
/sys/module/hid_multitouch
$ realpath /sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-SNSL002D:00/0018:2C2F:002D.0001/driver/module
/sys/module/hid_multitouch
$ realpath /sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-SNSL002D:00/0018:2C2F:002D.0001/input/input9/device/driver/module
/sys/module/hid_multitouch
Not sure if this is useful. Please let me know if there is anything else I can do.
Marcin