Answer the question
In order to leave comments, you need to log in
How to set up trackpoint on Thinkpad laptops in Linux?
Hey everyone, I'm having
the following issue with my Thinkpad X1 Carbon (6th Gen) laptop running Ubuntu 18.04: after the device wakes up, the trackpoint is disabled. I solved this problem by creating a script in the /lib/systemd/system-sleep/ directory with the following content:
#!/bin/sh
case $1 in
post)
sleep 1
echo -n none > /sys/devices/platform/i8042/serio1/drvctl
echo -n reconnect > /sys/devices/platform/i8042/serio1/drvctl
;;
esac
Answer the question
In order to leave comments, you need to log in
He asked himself, answered himself, changed the wakeup script in this way:
#!/bin/sh
case $1 in
post)
sleep 1
echo -n none > /sys/devices/platform/i8042/serio1/drvctl
echo -n reconnect > /sys/devices/platform/i8042/serio1/drvctl
rmmod psmouse
modprobe psmouse
;;
esac
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question