Ratón USB

TÍTULO:			USBMOUSE
VERSIÓN LFS:	3.0
AUTOR:			Konrad Miller <konrad_miller@gmx.net>
TRADUCTOR:	Proyecto LFS-ES

SINOPSIS:
	Cómo instalar un ratón USB

RECETA:

1. Recompila el Núcleo. Necesitas activar:
	"USB Human Interface Device (HID) support" 
		(soporte a dispositivos de interfase humanas USB)
	"USB support" (soporte USB)
	"Mouse Support" (soporte para ratones, en input core support)

_No_ actives "USB HIDBP Mouse support" (Soporte para ratones USB HIDBP)

Si creaste los módulos, necesitarás cargar "input.o", "hid.o" y "mousedev.o".

2. Conecta el ratón y verifica si fué detectado (mensaje del núcleo)

3. Crea los nodos del ratón ejecutando los siguientes comandos:
	mkdir /dev/input	\
	mknod /dev/input/mice c 13 63

4. Probablemente desees usar el ratón en X, necesitas editar tu XF86Confog
(/etc/X11/XF86Config). cambia tus secciones InputDevice y ServerLayout a algo
como:


Section "InputDevice"
    Identifier			"USB Mice"
    Driver			"mouse"
    Option "Protocol"    	"IMPS/2"
    Option "Device"      	"/dev/input/mice"
    Option "ZAxisMapping" 	"4 5"
    Option "Buttons"	  	"5"
EndSection

Section "ServerLayout"
...
    InputDevice 	"USB Mice"  		"CorePointer"
...
EndSection

"robado" de: http://www.linux-usb.org/USB-guide/x194.html