From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1FyzF6-000375-2L for garchives@archives.gentoo.org; Fri, 07 Jul 2006 22:56:12 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.7/8.13.6) with SMTP id k67MlDLY000632; Fri, 7 Jul 2006 22:47:13 GMT Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by robin.gentoo.org (8.13.7/8.13.6) with ESMTP id k67MQVSL008478 for ; Fri, 7 Jul 2006 22:26:31 GMT Received: by nf-out-0910.google.com with SMTP id n28so332918nfc for ; Fri, 07 Jul 2006 15:26:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LeAeeuGEZlkK3CjXzYRfUud4gNUB6IDyXKiGdodNJt8QF2Y9cpTSz7FV6aa9QR9rqxtyAxls1yWYsM1FK23MmrlbhNpJOUSNKx6n/Sm4/5WCc5FfF4i8krXal/7PO6EuYxLZtwnXANNBKR9gKaoc4nO1CjIs8nEMTq5DBrFuIJQ= Received: by 10.48.242.8 with SMTP id p8mr1807206nfh; Fri, 07 Jul 2006 15:26:30 -0700 (PDT) Received: by 10.48.238.18 with HTTP; Fri, 7 Jul 2006 15:26:30 -0700 (PDT) Message-ID: <49bf44f10607071526g53adb162o233b6c443855670d@mail.gmail.com> Date: Fri, 7 Jul 2006 15:26:30 -0700 From: Grant To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Modular xorg mouse problem In-Reply-To: <44AD32D1.1060108@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <49bf44f10607060833m7a7cddcev38f19117a03d589b@mail.gmail.com> <44AD32D1.1060108@gentoo.org> X-Archives-Salt: 87b4abc0-1953-4e6a-80fd-5f20158d0f2a X-Archives-Hash: 8fc49dd13b728e8f6107e4025d119fcc > > I upgraded my laptop to modular xorg but X won't start. Based on the > > errors I see, it seems to be due to the mouse in some way. I've tried > > compiling xorg-x11 with only 'synaptics' and both 'synaptics' and > > 'mouse' in my INPUT_DEVICES. I've also commented and uncommented the > > two 'Driver' lines below but I still get mouse errors and X won't > > start. > > > > Section "InputDevice" > > Identifier "mymouse" > > # Driver "mouse" > > Driver "synaptics" > > Option "Protocol" "PS/2" > > Option "Device" "/dev/mouse" > > Option "Emulate3Buttons" > > Option "Emulate3Timeout" "150" > > Option "MaxTapTime" "0" > > Option "MinSpeed" "0.3" > > Option "MaxSpeed" "0.75" > > Option "AccelFactor" "0.005" > > # Option "SHMConfig" "on" > > EndSection > > > > I ran 'revdep-rebuild -p' and it only wants to remerge gcc and some > > gst stuff so I haven't run it for real yet. > > > > Does anyone know how to fix this? > > Try changing the device to /dev/input/mice for the mouse driver. I think > the synaptics driver has to use the event interface. > > Thanks, > Donnie xorg-x11-7.0 is still not working with the synaptics driver but it is working with this config: Section "InputDevice" Identifier "mymouse" Driver "mouse" Option "Device" "/dev/input/mice" Option "Emulate3Buttons" Option "Emulate3Timeout" "150" EndSection I've tried specifying: Option "Protocol" "event" along with: Driver "synaptics" without success. I always get the following error: (EE) Failed to load the module "synaptics" (module does not exist, 0) (EE) No input matching 'synaptics' I do have: [ebuild R ] x11-base/xorg-x11-7.0-r1 USE="-3dfx" INPUT_DEVICES="keyboard mouse synaptics -acecad -aiptek -calcomp -citron -digitaledge -dmc -dynapro -elo2300 -elographics -evdev -fpit -hyperpen -jamstudio -joystick -magellan -magictouch -microtouch -mutouch -palmax -penmount -spaceorb -summa -tek4957 -ur98 -vmmouse -void -wacom" VIDEO_CARDS="sis -apm -ark -chips -cirrus -cyrix -dummy -fbdev -fglrx -glint -i128 -i740 -i810 -imstt -mach64 -mga -neomagic -nsc -nv -nvidia -r128 -radeon -rendition -s3 -s3virge -savage -siliconmotion -sisusb -tdfx -tga -trident -tseng -v4l -vesa -vga -via -vmware -voodoo" 0 kB [ebuild R ] x11-drivers/synaptics-0.14.4-r2 USE="dlloader" 0 kB and the following in the kernel: # # Userland interfaces # CONFIG_INPUT_MOUSEDEV=y CONFIG_INPUT_MOUSEDEV_PSAUX=y CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_TSDEV is not set CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # # Input Device Drivers # CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y # CONFIG_KEYBOARD_SUNKBD is not set # CONFIG_KEYBOARD_LKKBD is not set # CONFIG_KEYBOARD_XTKBD is not set # CONFIG_KEYBOARD_NEWTON is not set CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y # CONFIG_MOUSE_SERIAL is not set # CONFIG_MOUSE_INPORT is not set # CONFIG_MOUSE_LOGIBM is not set # CONFIG_MOUSE_PC110PAD is not set # CONFIG_MOUSE_VSXXXAA is not set # CONFIG_INPUT_JOYSTICK is not set # CONFIG_INPUT_TOUCHSCREEN is not set CONFIG_INPUT_MISC=y # CONFIG_INPUT_PCSPKR is not set CONFIG_INPUT_UINPUT=y I wouldn't mind but now I have tap-to-click and I can't stand that. - Grant -- gentoo-user@gentoo.org mailing list