Activando el tap del touchpad (wayland y libinput) y Wifi en Notebook v310 Lenovo

En un notebook lenovo v310, instalando un Linux Debian GNU 9 testing (hoy buster).
Se instalo todo perfecto desde netinstall por red cableada.
@pupol:~$ lspci
00:00.0 Host bridge: Intel Corporation Skylake Host Bridge/DRAM Registers (rev 08)
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 520 (rev 07)
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21)
00:1c.0 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 (rev f1)
00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Sunrise Point-LP LPC Controller (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Sunrise Point-LP HD Audio (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
03:00.0 Network controller: Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter (rev 30)
@pupol:~$

Automaticamente detecto practicamente todo su hardware, red calbeada, camara, bluetooth, touchpad, video. etc. Solo no funciono por defecto la placa wifi y el tap del touchpad (clic sobre el tactil)
Para la placa wifi, agregar los repositorios de contrib y non-free
@pupol:~$ cat /etc/apt/sources.list
deb http://mirrors.dcarsat.com.ar/debian/ testing main contrib non-free
deb http://security.debian.org/debian-security testing/updates main
@pupol:~$
@pupol:~$ sudo apt update

@pupol:~$ sudo apt install firmware-atheros

Con esto los driver de la placa wifi ya funcionaban ok.

Luego activar la función “tap to click” del touchpad, así como el desplazamiento en el borde.
Parece que se reemplazo el uso del driver synaptic por libinput, esto parece que esta ligado al nuevo wayland que pretende reemplazar al X.

@pupol:~$ nano /usr/share/X11/xorg.conf.d/40-libinput.conf (en vez de nano tu editor favorto)

En la seccion agregar la linea: Option “Tapping” “on”. Quedando asi:

Section “InputClass”
Identifier “libinput touchpad catchall”
MatchIsTouchpad “on”
MatchDevicePath “/dev/input/event*”
Option “Tapping” “on”
Driver “libinput”
EndSection
Y Listo reinicia las X y Suerte.