Gentoo Archives: gentoo-user

From: Grant <emailgrant@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Modular xorg mouse problem
Date: Fri, 07 Jul 2006 22:56:12
Message-Id: 49bf44f10607071526g53adb162o233b6c443855670d@mail.gmail.com
In Reply to: Re: [gentoo-user] Modular xorg mouse problem by Donnie Berkholz
1 > > I upgraded my laptop to modular xorg but X won't start. Based on the
2 > > errors I see, it seems to be due to the mouse in some way. I've tried
3 > > compiling xorg-x11 with only 'synaptics' and both 'synaptics' and
4 > > 'mouse' in my INPUT_DEVICES. I've also commented and uncommented the
5 > > two 'Driver' lines below but I still get mouse errors and X won't
6 > > start.
7 > >
8 > > Section "InputDevice"
9 > > Identifier "mymouse"
10 > > # Driver "mouse"
11 > > Driver "synaptics"
12 > > Option "Protocol" "PS/2"
13 > > Option "Device" "/dev/mouse"
14 > > Option "Emulate3Buttons"
15 > > Option "Emulate3Timeout" "150"
16 > > Option "MaxTapTime" "0"
17 > > Option "MinSpeed" "0.3"
18 > > Option "MaxSpeed" "0.75"
19 > > Option "AccelFactor" "0.005"
20 > > # Option "SHMConfig" "on"
21 > > EndSection
22 > >
23 > > I ran 'revdep-rebuild -p' and it only wants to remerge gcc and some
24 > > gst stuff so I haven't run it for real yet.
25 > >
26 > > Does anyone know how to fix this?
27 >
28 > Try changing the device to /dev/input/mice for the mouse driver. I think
29 > the synaptics driver has to use the event interface.
30 >
31 > Thanks,
32 > Donnie
33
34 xorg-x11-7.0 is still not working with the synaptics driver but it is
35 working with this config:
36
37 Section "InputDevice"
38 Identifier "mymouse"
39 Driver "mouse"
40 Option "Device" "/dev/input/mice"
41 Option "Emulate3Buttons"
42 Option "Emulate3Timeout" "150"
43 EndSection
44
45 I've tried specifying:
46
47 Option "Protocol" "event"
48
49 along with:
50
51 Driver "synaptics"
52
53 without success. I always get the following error:
54
55 (EE) Failed to load the module "synaptics" (module does not exist, 0)
56 (EE) No input matching 'synaptics'
57
58 I do have:
59
60 [ebuild R ] x11-base/xorg-x11-7.0-r1 USE="-3dfx"
61 INPUT_DEVICES="keyboard mouse synaptics -acecad -aiptek -calcomp
62 -citron -digitaledge -dmc -dynapro -elo2300 -elographics -evdev -fpit
63 -hyperpen -jamstudio -joystick -magellan -magictouch -microtouch
64 -mutouch -palmax -penmount -spaceorb -summa -tek4957 -ur98 -vmmouse
65 -void -wacom" VIDEO_CARDS="sis -apm -ark -chips -cirrus -cyrix -dummy
66 -fbdev -fglrx -glint -i128 -i740 -i810 -imstt -mach64 -mga -neomagic
67 -nsc -nv -nvidia -r128 -radeon -rendition -s3 -s3virge -savage
68 -siliconmotion -sisusb -tdfx -tga -trident -tseng -v4l -vesa -vga -via
69 -vmware -voodoo" 0 kB
70 [ebuild R ] x11-drivers/synaptics-0.14.4-r2 USE="dlloader" 0 kB
71
72 and the following in the kernel:
73
74 #
75 # Userland interfaces
76 #
77 CONFIG_INPUT_MOUSEDEV=y
78 CONFIG_INPUT_MOUSEDEV_PSAUX=y
79 CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
80 CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
81 # CONFIG_INPUT_JOYDEV is not set
82 # CONFIG_INPUT_TSDEV is not set
83 CONFIG_INPUT_EVDEV=y
84 # CONFIG_INPUT_EVBUG is not set
85
86 #
87 # Input Device Drivers
88 #
89 CONFIG_INPUT_KEYBOARD=y
90 CONFIG_KEYBOARD_ATKBD=y
91 # CONFIG_KEYBOARD_SUNKBD is not set
92 # CONFIG_KEYBOARD_LKKBD is not set
93 # CONFIG_KEYBOARD_XTKBD is not set
94 # CONFIG_KEYBOARD_NEWTON is not set
95 CONFIG_INPUT_MOUSE=y
96 CONFIG_MOUSE_PS2=y
97 # CONFIG_MOUSE_SERIAL is not set
98 # CONFIG_MOUSE_INPORT is not set
99 # CONFIG_MOUSE_LOGIBM is not set
100 # CONFIG_MOUSE_PC110PAD is not set
101 # CONFIG_MOUSE_VSXXXAA is not set
102 # CONFIG_INPUT_JOYSTICK is not set
103 # CONFIG_INPUT_TOUCHSCREEN is not set
104 CONFIG_INPUT_MISC=y
105 # CONFIG_INPUT_PCSPKR is not set
106 CONFIG_INPUT_UINPUT=y
107
108 I wouldn't mind but now I have tap-to-click and I can't stand that.
109
110 - Grant
111 --
112 gentoo-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-user] Modular xorg mouse problem Richard Fish <bigfish@××××××××××.org>