Bonjour à tous,
je viens de faire l’acquisition d’un MSI Wind U100 sur lequel j’ai installé une Sid. Deux choses me posent soucis :
1/ Le wifi : que ce soit avec network-manager ou wicd, les réseaux sont correctement détectés, mais la connexion ne se fait pas. Apparemment, pourtant, en Sid, le wifi devrait fonctionner “out of the box” ;
2/ le touchpad ne fonctionne pas du tout. Il semblerait que sur ma version (livrée avec XP et une batterie 6 cellules), ce ne soit pas un touchpad synaptics, mais un “Sentelic” (toutefois, je ne sais pas comment confirmer cela). J’ai trouvé des drivers ici mais les indications sont, pour moi, un peu obscures (notamment le point 2, je ne vois pas ce qu’il faut faire) (cf. plus bas).
Voilà, merci d’avance pour le coup de main 
–
Le fichier INSTALL pour les drivers Sentelic :
[quote]===================================================
How to install Finger Sensing Pad driver in Linux
Build the kernel module
- patch the kernel, here we use linux-2.6.25.6 as an example:
::
# cd /tmp && tar zxf fsp.tgz
# cd /usr/src/linux-2.6.25.6/drive/input/mouse
# cat sentelic-2.6.25.6.patch | patch -p1
# cp /tmp/sentelic.[ch] .
- rebuild kernel/module by following ordinary kernel build process.
X.Org sample configuration(/etc/X11/xorg.conf)
- Load “evdev” module by default:
::
Section "Module"
.
.
.
Load "evdev"
.
EndSection
- Create an input section for FSP:
::
Section "InputDevice"
Identifier "fsp"
Driver "evdev"
Option "Name" "FSPPS/2 Sentelic FingerSensingPad"
EndSection
- Link section FSP to the X server:
::
Section "ServerLayout"
.
.
.
InputDevice "fsp" "AlwaysCore"
EndSection
ACPI callbacks(suspend/resume on Acer Aspire One)
-
Assume the fspc(FSP control utility) has been installed at either
/usr/bin/fspc or /usr/local/bin/fspc. -
Create an executable script named fsp_reset.sh under /usr/bin:
::
#!/bin/sh
echo "R" > /sys/devices/platform/i8042/serio2/flags
:NOTE: The number of serio[n] may be different depending on your setup.
- Load user preference when X start by adding following command to
xinitrc:
::
sudo /usr/bin/fsp_reset.sh
/usr/bin/fspc -t -l /home/user/.fspc/fspc.ini
- For saving/restoring user preferences whilst entering ACPI S3/S4
mode. Add following commands to /etc/acpi/sleep.sh and
/etc/acpi/hibernate.sh:
::
/usr/bin/fspc -t -s /tmp/fspc-tmp.ini
/bin/dbus-send ...
/usr/bin/fspc -t -l /tmp/fspc-tmp.ini
rm -f /tmp/.fspc-tmp.ini
[/quote]

