Making the touchpad work on a HP Pavilion Chromebook in Ubuntu 14.04 and 14.10

For Ubuntu 14.04 you have to add the following to /etc/rc.local before “exit 0”: modprobe -r chromeos_laptop modprobe i2c-i801 modprobe chromeos_laptop For Ubuntu 14.10 you also have to add a “sleep 1” after loading the i2c module, so it would in this case read: modprobe -r chromeos_laptop modprobe i2c-i801 sleep 1 modprobe chromeos_laptop Then copy …