From: KLessou <kl...@gm...> - 2007-03-30 20:04:16
|
I can't use my synaptics touchpad, I have got this mistake (with my macbook c2d): (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater device (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. (EE) PreInit failed for input device "Synaptics Touchpad" Somebody can help me ? Here my xorg.conf : Section "Files" FontPath "/usr/share/fonts/misc:unscaled" FontPath "/usr/share/fonts/Type1" FontPath "/usr/share/fonts/TTF" FontPath "/usr/share/fonts/ttf-bitstream-vera" FontPath "/usr/share/fonts/corefonts" FontPath "/usr/share/fonts/freefont" FontPath "/usr/share/fonts/sharefonts" FontPath "/usr/share/fonts/terminus" FontPath "/usr/share/fonts/ttf-bitstream-vera" FontPath "/usr/share/fonts/unifont" FontPath "/usr/share/fonts/75dpi:unscaled" FontPath "/usr/share/fonts/100dpi:unscaled" FontPath "/usr/share/fonts/artwiz" FontPath "/usr/share/fonts/misci:unscaled" # path to defoma fonts FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Module" Load "i2c" Load "bitmap" Load "ddc" Load "dri" Load "drm" Load "extmod" Load "freetype" Load "glx" Load "int10" Load "type1" Load "vbe" Load "i810" Load "synaptics" EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "fr" Option "XkbOptions" "ctrl:nocaps" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" #Option "CorePointer" #Option "SendCoreEvents" "true" #Option "Device" "/dev/input/mouse0" Option "Device" "/dev/psaux" #Option "Device" "/dev/input/appletouchpad" #Option "Protocol" "event" Option "Protocol" "auto-dev" Option "LeftEdge" "100" Option "RightEdge" "1120" Option "TopEdge" "50" Option "BottomEdge" "310" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "MaxDoubleTapTime" "180" Option "VertScrollDelta" "20" Option "HorizScrollDelta" "50" Option "MinSpeed" "0.79" Option "MaxSpeed" "0.88" Option "AccelFactor" "0.0015" Option "SHMConfig" "on" #Option "SHMConfig" "true" Option "VertTwoFingerScroll" "1" Option "HorizTwoFingerScroll" "1" Option "TapButton2" "1" Option "TapButton2" "3" Option "TapButton3" "2" EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "Emulate3Buttons" "true" EndSection Section "Device" Identifier "Generic Video Card" Driver "i810" Screen 0 Option "MonitorLayout" "CRT,LFP" BusID "PCI:0:2:0" Option "XAANoOffscreenPixmaps" "true" #Option "DRI" "true" EndSection Section "Device" Identifier "Device1" Driver "i810" Screen 1 Option "MonitorLayout" "CRT,LFP" BusID "PCI:0:2:0" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" HorizSync 28-64 VertRefresh 43-60 EndSection Section "Monitor" Identifier "External Monitor" Option "DPMS" HorizSync 28-64 VertRefresh 43-60 EndSection Section "Screen" Identifier "Default Screen" Device "Generic Video Card" Monitor "Generic Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1280x800" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 4 Modes "1280x800" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 8 Modes "1280x800" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 15 Modes "1280x800" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 16 Modes "1280x800" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 24 Modes "1280x800" EndSubSection EndSection Section "Screen" Identifier "Secondary Screen" Device "Device1" Monitor "External Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1024x768" "800x600" EndSubSection SubSection "Display" Depth 4 Modes "1024x768" "800x600" EndSubSection SubSection "Display" Depth 8 Modes "1024x768" "800x600" EndSubSection SubSection "Display" Depth 16 Modes "1024x768" "800x600" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" "800x600" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "Synaptics Touchpad" EndSection #Section "ServerLayout" # Identifier "Dual-monitor Layout" # Screen 0 "Default Screen" # Screen 1 "Secondary Screen" #LeftOf "Default Screen" # Option "Clone" "On" # #Option "Xinerama" "On" # InputDevice "Generic Keyboard" # InputDevice "Configured Mouse" # InputDevice "Synaptics Touchpad" #EndSection Section "DRI" Group 0 Mode 0666 EndSection Section "Extensions" Option "Composite" "Enable" EndSection -- ~~~~~ | klessou | ~~~~~ |
From: Bradley H. <bd...@gm...> - 2007-03-30 22:35:51
|
Your problem is probably that the USB HID kernel driver is binding the touchpad before the appletouch driver can. Since all of my drivers are compiled in (not modules), I had to add this to my bootup scripts to make it work: echo "Attempting to ensure Synaptics driver will work..." if [ -f /sys/bus/usb/drivers/appletouch/bind ]; then echo -n 2-2:1.1 > /sys/bus/usb/drivers/usbhid/unbind echo -n 2-2:1.1 > /sys/bus/usb/drivers/appletouch/bind fi If you have the drivers compiled as modules, you can just ensure that the appletouch driver gets loaded before the usbhid driver does. NOTE: My mac is a MBP17CD (not a c2d). The exact USB bus numbers may be different on yours (i.e., the 2-2:1.1 part). ~Bradley KLessou wrote: > I can't use my synaptics touchpad, I have got this mistake (with my macbook > c2d): > > (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater > device > (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. > (EE) PreInit failed for input device "Synaptics Touchpad" > > Somebody can help me ? > > Here my xorg.conf : > > Section "Files" > FontPath "/usr/share/fonts/misc:unscaled" > FontPath "/usr/share/fonts/Type1" > FontPath "/usr/share/fonts/TTF" > FontPath "/usr/share/fonts/ttf-bitstream-vera" > FontPath "/usr/share/fonts/corefonts" > FontPath "/usr/share/fonts/freefont" > FontPath "/usr/share/fonts/sharefonts" > FontPath "/usr/share/fonts/terminus" > FontPath "/usr/share/fonts/ttf-bitstream-vera" > FontPath "/usr/share/fonts/unifont" > FontPath "/usr/share/fonts/75dpi:unscaled" > FontPath "/usr/share/fonts/100dpi:unscaled" > FontPath "/usr/share/fonts/artwiz" > FontPath "/usr/share/fonts/misci:unscaled" > # path to defoma fonts > FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" > EndSection > > Section "Module" > Load "i2c" > Load "bitmap" > Load "ddc" > Load "dri" > Load "drm" > Load "extmod" > Load "freetype" > Load "glx" > Load "int10" > Load "type1" > Load "vbe" > Load "i810" > Load "synaptics" > EndSection > > Section "InputDevice" > Identifier "Generic Keyboard" > Driver "kbd" > Option "CoreKeyboard" > Option "XkbRules" "xorg" > Option "XkbModel" "pc104" > Option "XkbLayout" "fr" > Option "XkbOptions" "ctrl:nocaps" > EndSection > > Section "InputDevice" > Identifier "Synaptics Touchpad" > Driver "synaptics" > #Option "CorePointer" > #Option "SendCoreEvents" "true" > #Option "Device" "/dev/input/mouse0" > Option "Device" "/dev/psaux" > #Option "Device" "/dev/input/appletouchpad" > #Option "Protocol" "event" > Option "Protocol" "auto-dev" > Option "LeftEdge" "100" > Option "RightEdge" "1120" > Option "TopEdge" "50" > Option "BottomEdge" "310" > Option "FingerLow" "25" > Option "FingerHigh" "30" > Option "MaxTapTime" "180" > Option "MaxTapMove" "220" > Option "MaxDoubleTapTime" "180" > Option "VertScrollDelta" "20" > Option "HorizScrollDelta" "50" > Option "MinSpeed" "0.79" > Option "MaxSpeed" "0.88" > Option "AccelFactor" "0.0015" > Option "SHMConfig" "on" > #Option "SHMConfig" "true" > Option "VertTwoFingerScroll" "1" > Option "HorizTwoFingerScroll" "1" > Option "TapButton2" "1" > Option "TapButton2" "3" > Option "TapButton3" "2" > EndSection > > Section "InputDevice" > Identifier "Configured Mouse" > Driver "mouse" > Option "CorePointer" > Option "Device" "/dev/input/mice" > Option "Protocol" "ExplorerPS/2" > Option "Emulate3Buttons" "true" > EndSection > > Section "Device" > Identifier "Generic Video Card" > Driver "i810" > Screen 0 > Option "MonitorLayout" "CRT,LFP" > BusID "PCI:0:2:0" > > Option "XAANoOffscreenPixmaps" "true" > #Option "DRI" "true" > EndSection > > Section "Device" > Identifier "Device1" > Driver "i810" > Screen 1 > Option "MonitorLayout" "CRT,LFP" > BusID "PCI:0:2:0" > EndSection > > > Section "Monitor" > Identifier "Generic Monitor" > Option "DPMS" > HorizSync 28-64 > VertRefresh 43-60 > EndSection > > Section "Monitor" > Identifier "External Monitor" > Option "DPMS" > HorizSync 28-64 > VertRefresh 43-60 > EndSection > > Section "Screen" > Identifier "Default Screen" > Device "Generic Video Card" > Monitor "Generic Monitor" > DefaultDepth 24 > SubSection "Display" > Depth 1 > Modes "1280x800" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Depth 4 > Modes "1280x800" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Depth 8 > Modes "1280x800" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Depth 15 > Modes "1280x800" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Depth 16 > Modes "1280x800" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Depth 24 > Modes "1280x800" > EndSubSection > EndSection > > Section "Screen" > Identifier "Secondary Screen" > Device "Device1" > Monitor "External Monitor" > DefaultDepth 24 > SubSection "Display" > Depth 1 > Modes "1024x768" "800x600" > EndSubSection > SubSection "Display" > Depth 4 > Modes "1024x768" "800x600" > EndSubSection > SubSection "Display" > Depth 8 > Modes "1024x768" "800x600" > EndSubSection > SubSection "Display" > Depth 16 > Modes "1024x768" "800x600" > EndSubSection > SubSection "Display" > Depth 24 > Modes "1024x768" "800x600" > EndSubSection > EndSection > > > Section "ServerLayout" > Identifier "Default Layout" > Screen "Default Screen" > InputDevice "Generic Keyboard" > InputDevice "Configured Mouse" > InputDevice "Synaptics Touchpad" > EndSection > > #Section "ServerLayout" > # Identifier "Dual-monitor Layout" > # Screen 0 "Default Screen" > # Screen 1 "Secondary Screen" #LeftOf "Default Screen" > # Option "Clone" "On" > # #Option "Xinerama" "On" > # InputDevice "Generic Keyboard" > # InputDevice "Configured Mouse" > # InputDevice "Synaptics Touchpad" > #EndSection > > > Section "DRI" > Group 0 > Mode 0666 > EndSection > > Section "Extensions" > Option "Composite" "Enable" > EndSection > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > ------------------------------------------------------------------------ > > _______________________________________________ > Mactel-linux-users mailing list > Mac...@li... > https://lists.sourceforge.net/lists/listinfo/mactel-linux-users |
From: Bradley H. <bd...@gm...> - 2007-04-02 16:50:01
|
Nicolas Boichat wrote: > Not needed anymore, with recent vanilla kernel, or mactel patched kernel. How recent? I have a mactel patched 2.6.20, and I have to re-bind the touchpad for it to work *correctly*. ~Bradley |
From: KLessou <kl...@gm...> - 2007-03-31 15:34:17
|
On 3/31/07, Bradley Hook <bd...@gm...> wrote: > > Your problem is probably that the USB HID kernel driver is binding the > touchpad before the appletouch driver can. Since all of my drivers are > compiled in (not modules), I had to add this to my bootup scripts to > make it work: > > echo "Attempting to ensure Synaptics driver will work..." > if [ -f /sys/bus/usb/drivers/appletouch/bind ]; then > echo -n 2-2:1.1 > /sys/bus/usb/drivers/usbhid/unbind > echo -n 2-2:1.1 > /sys/bus/usb/drivers/appletouch/bind > fi > > If you have the drivers compiled as modules, you can just ensure that > the appletouch driver gets loaded before the usbhid driver does. Before start X I run : modprobe -r usbhid; modprobe -r appletouch; modprobe appletouch,; modprobe usbhid But I have got the same error : Query no Synaptics: 6003C8 (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater device (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. (EE) PreInit failed for input device "Synaptics Touchpad" NOTE: My mac is a MBP17CD (not a c2d). The exact USB bus numbers may be > different on yours (i.e., the 2-2:1.1 part). > > ~Bradley > > KLessou wrote: > > I can't use my synaptics touchpad, I have got this mistake (with my > macbook > > c2d): > > > > (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater > > device > > (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. > > (EE) PreInit failed for input device "Synaptics Touchpad" > > > > Somebody can help me ? > > > > Here my xorg.conf : > > > > Section "Files" > > FontPath "/usr/share/fonts/misc:unscaled" > > FontPath "/usr/share/fonts/Type1" > > FontPath "/usr/share/fonts/TTF" > > FontPath "/usr/share/fonts/ttf-bitstream-vera" > > FontPath "/usr/share/fonts/corefonts" > > FontPath "/usr/share/fonts/freefont" > > FontPath "/usr/share/fonts/sharefonts" > > FontPath "/usr/share/fonts/terminus" > > FontPath "/usr/share/fonts/ttf-bitstream-vera" > > FontPath "/usr/share/fonts/unifont" > > FontPath "/usr/share/fonts/75dpi:unscaled" > > FontPath "/usr/share/fonts/100dpi:unscaled" > > FontPath "/usr/share/fonts/artwiz" > > FontPath "/usr/share/fonts/misci:unscaled" > > # path to defoma fonts > > FontPath "/var/lib/defoma/x-ttcidfont-conf.d > /dirs/TrueType" > > EndSection > > > > Section "Module" > > Load "i2c" > > Load "bitmap" > > Load "ddc" > > Load "dri" > > Load "drm" > > Load "extmod" > > Load "freetype" > > Load "glx" > > Load "int10" > > Load "type1" > > Load "vbe" > > Load "i810" > > Load "synaptics" > > EndSection > > > > Section "InputDevice" > > Identifier "Generic Keyboard" > > Driver "kbd" > > Option "CoreKeyboard" > > Option "XkbRules" "xorg" > > Option "XkbModel" "pc104" > > Option "XkbLayout" "fr" > > Option "XkbOptions" "ctrl:nocaps" > > EndSection > > > > Section "InputDevice" > > Identifier "Synaptics Touchpad" > > Driver "synaptics" > > #Option "CorePointer" > > #Option "SendCoreEvents" "true" > > #Option "Device" "/dev/input/mouse0" > > Option "Device" "/dev/psaux" > > #Option "Device" "/dev/input/appletouchpad" > > #Option "Protocol" "event" > > Option "Protocol" "auto-dev" > > Option "LeftEdge" "100" > > Option "RightEdge" "1120" > > Option "TopEdge" "50" > > Option "BottomEdge" "310" > > Option "FingerLow" "25" > > Option "FingerHigh" "30" > > Option "MaxTapTime" "180" > > Option "MaxTapMove" "220" > > Option "MaxDoubleTapTime" "180" > > Option "VertScrollDelta" "20" > > Option "HorizScrollDelta" "50" > > Option "MinSpeed" "0.79" > > Option "MaxSpeed" "0.88" > > Option "AccelFactor" "0.0015" > > Option "SHMConfig" "on" > > #Option "SHMConfig" "true" > > Option "VertTwoFingerScroll" "1" > > Option "HorizTwoFingerScroll" "1" > > Option "TapButton2" "1" > > Option "TapButton2" "3" > > Option "TapButton3" "2" > > EndSection > > > > Section "InputDevice" > > Identifier "Configured Mouse" > > Driver "mouse" > > Option "CorePointer" > > Option "Device" "/dev/input/mice" > > Option "Protocol" "ExplorerPS/2" > > Option "Emulate3Buttons" "true" > > EndSection > > > > Section "Device" > > Identifier "Generic Video Card" > > Driver "i810" > > Screen 0 > > Option "MonitorLayout" "CRT,LFP" > > BusID "PCI:0:2:0" > > > > Option "XAANoOffscreenPixmaps" "true" > > #Option "DRI" "true" > > EndSection > > > > Section "Device" > > Identifier "Device1" > > Driver "i810" > > Screen 1 > > Option "MonitorLayout" "CRT,LFP" > > BusID "PCI:0:2:0" > > EndSection > > > > > > Section "Monitor" > > Identifier "Generic Monitor" > > Option "DPMS" > > HorizSync 28-64 > > VertRefresh 43-60 > > EndSection > > > > Section "Monitor" > > Identifier "External Monitor" > > Option "DPMS" > > HorizSync 28-64 > > VertRefresh 43-60 > > EndSection > > > > Section "Screen" > > Identifier "Default Screen" > > Device "Generic Video Card" > > Monitor "Generic Monitor" > > DefaultDepth 24 > > SubSection "Display" > > Depth 1 > > Modes "1280x800" "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 4 > > Modes "1280x800" "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 8 > > Modes "1280x800" "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 15 > > Modes "1280x800" "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 16 > > Modes "1280x800" "1024x768" "800x600" "640x480" > > EndSubSection > > SubSection "Display" > > Depth 24 > > Modes "1280x800" > > EndSubSection > > EndSection > > > > Section "Screen" > > Identifier "Secondary Screen" > > Device "Device1" > > Monitor "External Monitor" > > DefaultDepth 24 > > SubSection "Display" > > Depth 1 > > Modes "1024x768" "800x600" > > EndSubSection > > SubSection "Display" > > Depth 4 > > Modes "1024x768" "800x600" > > EndSubSection > > SubSection "Display" > > Depth 8 > > Modes "1024x768" "800x600" > > EndSubSection > > SubSection "Display" > > Depth 16 > > Modes "1024x768" "800x600" > > EndSubSection > > SubSection "Display" > > Depth 24 > > Modes "1024x768" "800x600" > > EndSubSection > > EndSection > > > > > > Section "ServerLayout" > > Identifier "Default Layout" > > Screen "Default Screen" > > InputDevice "Generic Keyboard" > > InputDevice "Configured Mouse" > > InputDevice "Synaptics Touchpad" > > EndSection > > > > #Section "ServerLayout" > > # Identifier "Dual-monitor Layout" > > # Screen 0 "Default Screen" > > # Screen 1 "Secondary Screen" #LeftOf "Default Screen" > > # Option "Clone" "On" > > # #Option "Xinerama" "On" > > # InputDevice "Generic Keyboard" > > # InputDevice "Configured Mouse" > > # InputDevice "Synaptics Touchpad" > > #EndSection > > > > > > Section "DRI" > > Group 0 > > Mode 0666 > > EndSection > > > > Section "Extensions" > > Option "Composite" "Enable" > > EndSection > > > > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys-and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Mactel-linux-users mailing list > > Mac...@li... > > https://lists.sourceforge.net/lists/listinfo/mactel-linux-users > > -- ~~~~~ | klessou | ~~~~~ |
From: KLessou <kl...@gm...> - 2007-04-01 15:00:53
|
When I put my finger on the touchpad, the cursor move Vertically. When I click, the cursor move Horizontally. :-( Anybody would have had the same problem? On 3/31/07, KLessou <kl...@gm...> wrote: > > > > On 3/31/07, Bradley Hook <bd...@gm...> wrote: > > > > Your problem is probably that the USB HID kernel driver is binding the > > touchpad before the appletouch driver can. Since all of my drivers are > > compiled in (not modules), I had to add this to my bootup scripts to > > make it work: > > > > echo "Attempting to ensure Synaptics driver will work..." > > if [ -f /sys/bus/usb/drivers/appletouch/bind ]; then > > echo -n 2-2:1.1 > /sys/bus/usb/drivers/usbhid/unbind > > echo -n 2-2: 1.1 > /sys/bus/usb/drivers/appletouch/bind > > fi > > > > If you have the drivers compiled as modules, you can just ensure that > > the appletouch driver gets loaded before the usbhid driver does. > > > Before start X I run : modprobe -r usbhid; modprobe -r appletouch; > modprobe appletouch,; modprobe usbhid > > But I have got the same error : > > Query no Synaptics: 6003C8 > (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater > device > (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. > (EE) PreInit failed for input device "Synaptics Touchpad" > > > NOTE: My mac is a MBP17CD (not a c2d). The exact USB bus numbers may be > > different on yours (i.e., the 2-2:1.1 part). > > > > ~Bradley > > > > KLessou wrote: > > > I can't use my synaptics touchpad, I have got this mistake (with my > > macbook > > > c2d): > > > > > > (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater > > > > > device > > > (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. > > > (EE) PreInit failed for input device "Synaptics Touchpad" > > > > > > Somebody can help me ? > > > > > > Here my xorg.conf : > > > > > > Section "Files" > > > FontPath "/usr/share/fonts/misc:unscaled" > > > FontPath "/usr/share/fonts/Type1" > > > FontPath "/usr/share/fonts/TTF" > > > FontPath "/usr/share/fonts/ttf-bitstream-vera" > > > FontPath "/usr/share/fonts/corefonts" > > > FontPath "/usr/share/fonts/freefont" > > > FontPath "/usr/share/fonts/sharefonts" > > > FontPath "/usr/share/fonts/terminus" > > > FontPath "/usr/share/fonts/ttf-bitstream-vera" > > > FontPath "/usr/share/fonts/unifont" > > > FontPath "/usr/share/fonts/75dpi:unscaled" > > > FontPath "/usr/share/fonts/100dpi:unscaled" > > > FontPath "/usr/share/fonts/artwiz" > > > FontPath "/usr/share/fonts/misci:unscaled" > > > # path to defoma fonts > > > FontPath "/var/lib/defoma/x-ttcidfont-conf.d > > /dirs/TrueType" > > > EndSection > > > > > > Section "Module" > > > Load "i2c" > > > Load "bitmap" > > > Load "ddc" > > > Load "dri" > > > Load "drm" > > > Load "extmod" > > > Load "freetype" > > > Load "glx" > > > Load "int10" > > > Load "type1" > > > Load "vbe" > > > Load "i810" > > > Load "synaptics" > > > EndSection > > > > > > Section "InputDevice" > > > Identifier "Generic Keyboard" > > > Driver "kbd" > > > Option "CoreKeyboard" > > > Option "XkbRules" "xorg" > > > Option "XkbModel" "pc104" > > > Option "XkbLayout" "fr" > > > Option "XkbOptions" "ctrl:nocaps" > > > EndSection > > > > > > Section "InputDevice" > > > Identifier "Synaptics Touchpad" > > > Driver "synaptics" > > > #Option "CorePointer" > > > #Option "SendCoreEvents" "true" > > > #Option "Device" "/dev/input/mouse0" > > > Option "Device" "/dev/psaux" > > > #Option "Device" "/dev/input/appletouchpad" > > > #Option "Protocol" "event" > > > Option "Protocol" "auto-dev" > > > Option "LeftEdge" "100" > > > Option "RightEdge" "1120" > > > Option "TopEdge" "50" > > > Option "BottomEdge" "310" > > > Option "FingerLow" "25" > > > Option "FingerHigh" "30" > > > Option "MaxTapTime" "180" > > > Option "MaxTapMove" "220" > > > Option "MaxDoubleTapTime" "180" > > > Option "VertScrollDelta" "20" > > > Option "HorizScrollDelta" "50" > > > Option "MinSpeed" " 0.79" > > > Option "MaxSpeed" "0.88" > > > Option "AccelFactor" "0.0015" > > > Option "SHMConfig" "on" > > > #Option "SHMConfig" "true" > > > Option "VertTwoFingerScroll" "1" > > > Option "HorizTwoFingerScroll" "1" > > > Option "TapButton2" "1" > > > Option "TapButton2" "3" > > > Option "TapButton3" "2" > > > EndSection > > > > > > Section "InputDevice" > > > Identifier "Configured Mouse" > > > Driver "mouse" > > > Option "CorePointer" > > > Option "Device" "/dev/input/mice" > > > Option "Protocol" "ExplorerPS/2" > > > Option "Emulate3Buttons" "true" > > > EndSection > > > > > > Section "Device" > > > Identifier "Generic Video Card" > > > Driver "i810" > > > Screen 0 > > > Option "MonitorLayout" "CRT,LFP" > > > BusID "PCI:0:2:0" > > > > > > Option "XAANoOffscreenPixmaps" "true" > > > #Option "DRI" "true" > > > EndSection > > > > > > Section "Device" > > > Identifier "Device1" > > > Driver "i810" > > > Screen 1 > > > Option "MonitorLayout" "CRT,LFP" > > > BusID "PCI:0:2:0" > > > EndSection > > > > > > > > > Section "Monitor" > > > Identifier "Generic Monitor" > > > Option "DPMS" > > > HorizSync 28-64 > > > VertRefresh 43-60 > > > EndSection > > > > > > Section "Monitor" > > > Identifier "External Monitor" > > > Option "DPMS" > > > HorizSync 28-64 > > > VertRefresh 43-60 > > > EndSection > > > > > > Section "Screen" > > > Identifier "Default Screen" > > > Device "Generic Video Card" > > > Monitor "Generic Monitor" > > > DefaultDepth 24 > > > SubSection "Display" > > > Depth 1 > > > Modes "1280x800" "1024x768" "800x600" > > "640x480" > > > EndSubSection > > > SubSection "Display" > > > Depth 4 > > > Modes "1280x800" "1024x768" "800x600" > > "640x480" > > > EndSubSection > > > SubSection "Display" > > > Depth 8 > > > Modes "1280x800" "1024x768" "800x600" > > "640x480" > > > EndSubSection > > > SubSection "Display" > > > Depth 15 > > > Modes "1280x800" "1024x768" "800x600" > > "640x480" > > > EndSubSection > > > SubSection "Display" > > > Depth 16 > > > Modes "1280x800" "1024x768" "800x600" > > "640x480" > > > EndSubSection > > > SubSection "Display" > > > Depth 24 > > > Modes "1280x800" > > > EndSubSection > > > EndSection > > > > > > Section "Screen" > > > Identifier "Secondary Screen" > > > Device "Device1" > > > Monitor "External Monitor" > > > DefaultDepth 24 > > > SubSection "Display" > > > Depth 1 > > > Modes "1024x768" "800x600" > > > EndSubSection > > > SubSection "Display" > > > Depth 4 > > > Modes "1024x768" "800x600" > > > EndSubSection > > > SubSection "Display" > > > Depth 8 > > > Modes "1024x768" "800x600" > > > EndSubSection > > > SubSection "Display" > > > Depth 16 > > > Modes "1024x768" "800x600" > > > EndSubSection > > > SubSection "Display" > > > Depth 24 > > > Modes "1024x768" "800x600" > > > EndSubSection > > > EndSection > > > > > > > > > Section "ServerLayout" > > > Identifier "Default Layout" > > > Screen "Default Screen" > > > InputDevice "Generic Keyboard" > > > InputDevice "Configured Mouse" > > > InputDevice "Synaptics Touchpad" > > > EndSection > > > > > > #Section "ServerLayout" > > > # Identifier "Dual-monitor Layout" > > > # Screen 0 "Default Screen" > > > # Screen 1 "Secondary Screen" #LeftOf "Default Screen" > > > # Option "Clone" "On" > > > # #Option "Xinerama" "On" > > > # InputDevice "Generic Keyboard" > > > # InputDevice "Configured Mouse" > > > # InputDevice "Synaptics Touchpad" > > > #EndSection > > > > > > > > > Section "DRI" > > > Group 0 > > > Mode 0666 > > > EndSection > > > > > > Section "Extensions" > > > Option "Composite" "Enable" > > > EndSection > > > > > > > > > > > ------------------------------------------------------------------------ > > > > > > > > ------------------------------------------------------------------------- > > > Take Surveys. Earn Cash. Influence the Future of IT > > > Join SourceForge.net's Techsay panel and you'll get the chance to > > share your > > > opinions on IT & business topics through brief surveys-and earn cash > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > Mactel-linux-users mailing list > > > Mac...@li... > > > https://lists.sourceforge.net/lists/listinfo/mactel-linux-users > > > > > > > -- > ~~~~~ > | klessou | > ~~~~~ -- ~~~~~ | klessou | ~~~~~ |
From: KLessou <kl...@gm...> - 2007-04-01 15:02:08
|
I Try with kernel 2.6.19, 2.6.20, 2.6.21-rc5, udev 104-r12. On 4/1/07, KLessou <kl...@gm...> wrote: > > When I put my finger on the touchpad, the cursor move Vertically. > When I click, the cursor move Horizontally. > > :-( > > Anybody would have had the same problem? > > > On 3/31/07, KLessou <kl...@gm...> wrote: > > > > > > > > On 3/31/07, Bradley Hook < bd...@gm...> wrote: > > > > > > Your problem is probably that the USB HID kernel driver is binding the > > > touchpad before the appletouch driver can. Since all of my drivers are > > > compiled in (not modules), I had to add this to my bootup scripts to > > > make it work: > > > > > > echo "Attempting to ensure Synaptics driver will work..." > > > if [ -f /sys/bus/usb/drivers/appletouch/bind ]; then > > > echo -n 2-2:1.1 > /sys/bus/usb/drivers/usbhid/unbind > > > echo -n 2-2: 1.1 > /sys/bus/usb/drivers/appletouch/bind > > > fi > > > > > > If you have the drivers compiled as modules, you can just ensure that > > > the appletouch driver gets loaded before the usbhid driver does. > > > > > > Before start X I run : modprobe -r usbhid; modprobe -r appletouch; > > modprobe appletouch,; modprobe usbhid > > > > But I have got the same error : > > > > Query no Synaptics: 6003C8 > > (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater > > device > > (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. > > (EE) PreInit failed for input device "Synaptics Touchpad" > > > > > > NOTE: My mac is a MBP17CD (not a c2d). The exact USB bus numbers may be > > > different on yours (i.e., the 2-2:1.1 part). > > > > > > ~Bradley > > > > > > KLessou wrote: > > > > I can't use my synaptics touchpad, I have got this mistake (with my > > > macbook > > > > c2d): > > > > > > > > (EE) Synaptics Touchpad no synaptics touchpad detected and no > > > repeater > > > > device > > > > (EE) Synaptics Touchpad Unable to query/initialize Synaptics > > > hardware. > > > > (EE) PreInit failed for input device "Synaptics Touchpad" > > > > > > > > Somebody can help me ? > > > > > > > > Here my xorg.conf : > > > > > > > > Section "Files" > > > > FontPath "/usr/share/fonts/misc:unscaled" > > > > FontPath "/usr/share/fonts/Type1" > > > > FontPath "/usr/share/fonts/TTF" > > > > FontPath "/usr/share/fonts/ttf-bitstream-vera" > > > > FontPath "/usr/share/fonts/corefonts" > > > > FontPath "/usr/share/fonts/freefont" > > > > FontPath "/usr/share/fonts/sharefonts" > > > > FontPath "/usr/share/fonts/terminus" > > > > FontPath "/usr/share/fonts/ttf-bitstream-vera" > > > > FontPath "/usr/share/fonts/unifont" > > > > FontPath "/usr/share/fonts/75dpi:unscaled" > > > > FontPath "/usr/share/fonts/100dpi:unscaled" > > > > FontPath "/usr/share/fonts/artwiz" > > > > FontPath "/usr/share/fonts/misci:unscaled" > > > > # path to defoma fonts > > > > FontPath "/var/lib/defoma/x-ttcidfont-conf.d > > > /dirs/TrueType" > > > > EndSection > > > > > > > > Section "Module" > > > > Load "i2c" > > > > Load "bitmap" > > > > Load "ddc" > > > > Load "dri" > > > > Load "drm" > > > > Load "extmod" > > > > Load "freetype" > > > > Load "glx" > > > > Load "int10" > > > > Load "type1" > > > > Load "vbe" > > > > Load "i810" > > > > Load "synaptics" > > > > EndSection > > > > > > > > Section "InputDevice" > > > > Identifier "Generic Keyboard" > > > > Driver "kbd" > > > > Option "CoreKeyboard" > > > > Option "XkbRules" "xorg" > > > > Option "XkbModel" "pc104" > > > > Option "XkbLayout" "fr" > > > > Option "XkbOptions" "ctrl:nocaps" > > > > EndSection > > > > > > > > Section "InputDevice" > > > > Identifier "Synaptics Touchpad" > > > > Driver "synaptics" > > > > #Option "CorePointer" > > > > #Option "SendCoreEvents" "true" > > > > #Option "Device" "/dev/input/mouse0" > > > > Option "Device" "/dev/psaux" > > > > #Option "Device" "/dev/input/appletouchpad" > > > > #Option "Protocol" "event" > > > > Option "Protocol" "auto-dev" > > > > Option "LeftEdge" "100" > > > > Option "RightEdge" "1120" > > > > Option "TopEdge" "50" > > > > Option "BottomEdge" "310" > > > > Option "FingerLow" "25" > > > > Option "FingerHigh" "30" > > > > Option "MaxTapTime" "180" > > > > Option "MaxTapMove" "220" > > > > Option "MaxDoubleTapTime" "180" > > > > Option "VertScrollDelta" "20" > > > > Option "HorizScrollDelta" "50" > > > > Option "MinSpeed" " 0.79" > > > > Option "MaxSpeed" "0.88" > > > > Option "AccelFactor" "0.0015" > > > > Option "SHMConfig" "on" > > > > #Option "SHMConfig" "true" > > > > Option "VertTwoFingerScroll" "1" > > > > Option "HorizTwoFingerScroll" "1" > > > > Option "TapButton2" "1" > > > > Option "TapButton2" "3" > > > > Option "TapButton3" "2" > > > > EndSection > > > > > > > > Section "InputDevice" > > > > Identifier "Configured Mouse" > > > > Driver "mouse" > > > > Option "CorePointer" > > > > Option "Device" "/dev/input/mice" > > > > Option "Protocol" "ExplorerPS/2" > > > > Option "Emulate3Buttons" "true" > > > > EndSection > > > > > > > > Section "Device" > > > > Identifier "Generic Video Card" > > > > Driver "i810" > > > > Screen 0 > > > > Option "MonitorLayout" "CRT,LFP" > > > > BusID "PCI:0:2:0" > > > > > > > > Option "XAANoOffscreenPixmaps" "true" > > > > #Option "DRI" "true" > > > > EndSection > > > > > > > > Section "Device" > > > > Identifier "Device1" > > > > Driver "i810" > > > > Screen 1 > > > > Option "MonitorLayout" "CRT,LFP" > > > > BusID "PCI:0:2:0" > > > > EndSection > > > > > > > > > > > > Section "Monitor" > > > > Identifier "Generic Monitor" > > > > Option "DPMS" > > > > HorizSync 28-64 > > > > VertRefresh 43-60 > > > > EndSection > > > > > > > > Section "Monitor" > > > > Identifier "External Monitor" > > > > Option "DPMS" > > > > HorizSync 28-64 > > > > VertRefresh 43-60 > > > > EndSection > > > > > > > > Section "Screen" > > > > Identifier "Default Screen" > > > > Device "Generic Video Card" > > > > Monitor "Generic Monitor" > > > > DefaultDepth 24 > > > > SubSection "Display" > > > > Depth 1 > > > > Modes "1280x800" "1024x768" "800x600" > > > "640x480" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 4 > > > > Modes "1280x800" "1024x768" "800x600" > > > "640x480" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 8 > > > > Modes "1280x800" "1024x768" "800x600" > > > "640x480" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 15 > > > > Modes "1280x800" "1024x768" "800x600" > > > "640x480" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 16 > > > > Modes "1280x800" "1024x768" "800x600" > > > "640x480" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 24 > > > > Modes "1280x800" > > > > EndSubSection > > > > EndSection > > > > > > > > Section "Screen" > > > > Identifier "Secondary Screen" > > > > Device "Device1" > > > > Monitor "External Monitor" > > > > DefaultDepth 24 > > > > SubSection "Display" > > > > Depth 1 > > > > Modes "1024x768" "800x600" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 4 > > > > Modes "1024x768" "800x600" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 8 > > > > Modes "1024x768" "800x600" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 16 > > > > Modes "1024x768" "800x600" > > > > EndSubSection > > > > SubSection "Display" > > > > Depth 24 > > > > Modes "1024x768" "800x600" > > > > EndSubSection > > > > EndSection > > > > > > > > > > > > Section "ServerLayout" > > > > Identifier "Default Layout" > > > > Screen "Default Screen" > > > > InputDevice "Generic Keyboard" > > > > InputDevice "Configured Mouse" > > > > InputDevice "Synaptics Touchpad" > > > > EndSection > > > > > > > > #Section "ServerLayout" > > > > # Identifier "Dual-monitor Layout" > > > > # Screen 0 "Default Screen" > > > > # Screen 1 "Secondary Screen" #LeftOf "Default Screen" > > > > # Option "Clone" "On" > > > > # #Option "Xinerama" "On" > > > > # InputDevice "Generic Keyboard" > > > > # InputDevice "Configured Mouse" > > > > # InputDevice "Synaptics Touchpad" > > > > #EndSection > > > > > > > > > > > > Section "DRI" > > > > Group 0 > > > > Mode 0666 > > > > EndSection > > > > > > > > Section "Extensions" > > > > Option "Composite" "Enable" > > > > EndSection > > > > > > > > > > > > > > > ------------------------------------------------------------------------ > > > > > > > > > > > ------------------------------------------------------------------------- > > > > Take Surveys. Earn Cash. Influence the Future of IT > > > > Join SourceForge.net's Techsay panel and you'll get the chance to > > > share your > > > > opinions on IT & business topics through brief surveys-and earn cash > > > > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > > > > > > > > > > > > ------------------------------------------------------------------------ > > > > > > > > _______________________________________________ > > > > Mactel-linux-users mailing list > > > > Mac...@li... > > > > https://lists.sourceforge.net/lists/listinfo/mactel-linux-users > > > > > > > > > > > > -- > > ~~~~~ > > | klessou | > > ~~~~~ > > > > > -- > ~~~~~ > | klessou | > ~~~~~ -- ~~~~~ | klessou | ~~~~~ |
From: Nicolas B. <ni...@bo...> - 2007-04-02 06:55:29
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello, Bradley Hook wrote: > Your problem is probably that the USB HID kernel driver is binding the > touchpad before the appletouch driver can. Since all of my drivers are > compiled in (not modules), I had to add this to my bootup scripts to > make it work: > > echo "Attempting to ensure Synaptics driver will work..." > if [ -f /sys/bus/usb/drivers/appletouch/bind ]; then > echo -n 2-2:1.1 > /sys/bus/usb/drivers/usbhid/unbind > echo -n 2-2:1.1 > /sys/bus/usb/drivers/appletouch/bind > fi > > If you have the drivers compiled as modules, you can just ensure that > the appletouch driver gets loaded before the usbhid driver does. Not needed anymore, with recent vanilla kernel, or mactel patched kernel. > NOTE: My mac is a MBP17CD (not a c2d). The exact USB bus numbers may be > different on yours (i.e., the 2-2:1.1 part). > > ~Bradley > > KLessou wrote: >> I can't use my synaptics touchpad, I have got this mistake (with my macbook >> c2d): >> >> (EE) Synaptics Touchpad no synaptics touchpad detected and no repeater >> device >> (EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware. >> (EE) PreInit failed for input device "Synaptics Touchpad" I use something like this on my gentoo, it's the best way I've found so far. (if you have /dev/input/by-id/* on your system). Best regards, Nicolas # Trackpad with appletouch driver Section "InputDevice" Identifier "appletouch" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-event-mouse" Option "Protocol" "event" Option "LeftEdge" "0" Option "RightEdge" "1100" Option "TopEdge" "0" Option "BottomEdge" "330" Option "FingerLow" "55" Option "FingerHigh" "60" Option "MaxTapTime" "100" Option "MaxTapMove" "20" Option "VertScrollDelta" "30" Option "HorizScrollDelta" "30" Option "MinSpeed" "0.4" Option "MaxSpeed" "2.0" Option "AccelFactor" "0.03" Option "SHMConfig" "on" EndSection -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGEKik01ajQnpJXgERAq+DAJ9sbV8qpQQMVciLEp5c8GN5KEC6ZQCfe/o5 xuJsNJsjzeuV7DN84YD/A3g= =yvQ/ -----END PGP SIGNATURE----- |
From: Nicolas B. <ni...@bo...> - 2007-04-02 16:59:16
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Bradley Hook wrote: > Nicolas Boichat wrote: >> Not needed anymore, with recent vanilla kernel, or mactel patched kernel. > > How recent? I have a mactel patched 2.6.20, and I have to re-bind the > touchpad for it to work *correctly*. mactel patched 2.6.20.4 should work correctly (have you tried the latest patches?), and 2.6.21 will. Best regards, Nicolas -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD4DBQFGETYg01ajQnpJXgERAnzmAJUdjlT2EsBgmpK//SvVYgQd1QuMAJ4+Nt1e W6OV1ES2JsHpesIuR2diNA== =LzR8 -----END PGP SIGNATURE----- |
From: KLessou <kl...@gm...> - 2007-04-03 08:44:54
|
On 4/2/07, Nicolas Boichat <ni...@bo...> wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Bradley Hook wrote: > > Nicolas Boichat wrote: > >> Not needed anymore, with recent vanilla kernel, or mactel patched > kernel. > > > > How recent? I have a mactel patched 2.6.20, and I have to re-bind the > > touchpad for it to work *correctly*. > > mactel patched 2.6.20.4 should work correctly (have you tried the latest > patches?), and 2.6.21 will. > > Best regards, > > Nicolas I try with kernel 2.6.21-rc5 with mactel patch. My xorg.conf : Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" #Option "CorePointer" #Option "SendCoreEvents" "true" #Option "Device" "" Option "Device" "/dev/input/mouse1 #Option "Device" "/dev/input/appletouchpad" Option "Protocol" "/dev/input/event5" #Option "Protocol" "auto-dev" Option "LeftEdge" "100" Option "RightEdge" "1120" Option "TopEdge" "50" Option "BottomEdge" "310" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "MaxDoubleTapTime" "180" Option "VertScrollDelta" "20" Option "HorizScrollDelta" "50" Option "MinSpeed" "0.79" Option "MaxSpeed" "0.88" Option "AccelFactor" "0.0015" Option "SHMConfig" "on" #Option "SHMConfig" "true" Option "VertTwoFingerScroll" "1" Option "HorizTwoFingerScroll" "1" Option "TapButton2" "1" Option "TapButton2" "3" Option "TapButton3" "2" EndSection Now I have got this message : (--) Synaptics Touchpad auto-dev sets device to /dev/input/event5 (**) Option "Device" "/dev/input/event5" (--) Synaptics Touchpad touchpad found (II) Configured Mouse: ps2EnableDataReporting: succeeded ProcXCloseDevice to close or not ? But the cursor doesn't move :-( In my /dev/input/ ls -la /dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-* lrwxrwxrwx 1 root root 9 avr 2 13:01 /dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-event-kbd -> ../event6 lrwxrwxrwx 1 root root 9 avr 2 13:01 /dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-event-mouse -> ../event5 lrwxrwxrwx 1 root root 9 avr 2 13:01 /dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-mouse -> ../mouse1 -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.3 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD4DBQFGETYg01ajQnpJXgERAnzmAJUdjlT2EsBgmpK//SvVYgQd1QuMAJ4+Nt1e > W6OV1ES2JsHpesIuR2diNA== > =LzR8 > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Mactel-linux-users mailing list > Mac...@li... > https://lists.sourceforge.net/lists/listinfo/mactel-linux-users > -- ~~~~~ | klessou | ~~~~~ |
From: Nicolas B. <ni...@bo...> - 2007-04-09 12:04:20
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 KLessou wrote: > > > On 4/2/07, *Nicolas Boichat* <ni...@bo... > <mailto:ni...@bo...>> wrote: > > Bradley Hook wrote: >> Nicolas Boichat wrote: >>> Not needed anymore, with recent vanilla kernel, or mactel patched > kernel. > >> How recent? I have a mactel patched 2.6.20, and I have to re-bind the >> touchpad for it to work *correctly*. > > mactel patched 2.6.20.4 <http://2.6.20.4> should work correctly > (have you tried the latest > patches?), and 2.6.21 will. > > Best regards, > > Nicolas > > >> I try with kernel 2.6.21-rc5 with mactel patch. > >> My xorg.conf : > >> Section "InputDevice" > Identifier "Synaptics Touchpad" > Driver "synaptics" > #Option "CorePointer" > #Option "SendCoreEvents" "true" > #Option "Device" "" > Option "Device" "/dev/input/mouse1 > #Option "Device" "/dev/input/appletouchpad" > Option "Protocol" "/dev/input/event5" > #Option "Protocol" "auto-dev" > Option "LeftEdge" "100" > Option "RightEdge" "1120" > Option "TopEdge" "50" > Option "BottomEdge" "310" > Option "FingerLow" "25" > Option "FingerHigh" "30" > Option "MaxTapTime" "180" > Option "MaxTapMove" "220" > Option "MaxDoubleTapTime" "180" > Option "VertScrollDelta" "20" > Option "HorizScrollDelta" "50" > Option "MinSpeed" "0.79" > Option "MaxSpeed" "0.88" > Option "AccelFactor" "0.0015" > Option "SHMConfig" "on" > #Option "SHMConfig" "true" > Option "VertTwoFingerScroll" "1" > Option "HorizTwoFingerScroll" "1" > Option "TapButton2" "1" > Option "TapButton2" "3" > Option "TapButton3" "2" >> EndSection Maybe you should try with something like this: Section "InputDevice" Identifier "appletouch" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-event-mouse" Option "Protocol" "event" Option "LeftEdge" "0" Option "RightEdge" "1100" Option "TopEdge" "0" Option "BottomEdge" "330" Option "FingerLow" "55" Option "FingerHigh" "60" Option "MaxTapTime" "100" Option "MaxTapMove" "20" Option "VertScrollDelta" "30" Option "HorizScrollDelta" "30" Option "MinSpeed" "0.4" Option "MaxSpeed" "2.0" Option "AccelFactor" "0.03" Option "SHMConfig" "on" EndSection Works for me (at least when appletouch driver is loaded correctly, which is not always the case, for some strange reasons). Best regards, Nicolas -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGGiuQ01ajQnpJXgERAm3EAJ9j352lNM2ZsTPCd2PFXRjB/CtG/QCfUVcJ FwmzFQNvN+eKpfNNMJD26EU= =Zb3N -----END PGP SIGNATURE----- |
From: Sheer El-S. <sh...@gm...> - 2007-04-09 13:30:25
|
Hi Nicolas, I'm sure you've mentioned this many times before but you have a MacBook correct, not a macbook pro? Your touchpad config seems quite different form mine, especially the FingerLow and high. I've been looking for the ideal touchpad config for my MBP for a while and I've settled on something that's usable but still a little worse than OS X. Is the one you have above for an MBP or an MB? Is there some site online where an up-to-date config for an MBP touchpad can be found? cheers, Sheer On 4/9/07, Nicolas Boichat <ni...@bo...> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > KLessou wrote: > > > > > > On 4/2/07, *Nicolas Boichat* <ni...@bo... > > <mailto:ni...@bo...>> wrote: > > > > Bradley Hook wrote: > >> Nicolas Boichat wrote: > >>> Not needed anymore, with recent vanilla kernel, or mactel patched > > kernel. > > > >> How recent? I have a mactel patched 2.6.20, and I have to re-bind the > >> touchpad for it to work *correctly*. > > > > mactel patched 2.6.20.4 <http://2.6.20.4> should work correctly > > (have you tried the latest > > patches?), and 2.6.21 will. > > > > Best regards, > > > > Nicolas > > > > > >> I try with kernel 2.6.21-rc5 with mactel patch. > > > >> My xorg.conf : > > > >> Section "InputDevice" > > Identifier "Synaptics Touchpad" > > Driver "synaptics" > > #Option "CorePointer" > > #Option "SendCoreEvents" "true" > > #Option "Device" "" > > Option "Device" "/dev/input/mouse1 > > #Option "Device" "/dev/input/appletouchpad" > > Option "Protocol" "/dev/input/event5" > > #Option "Protocol" "auto-dev" > > Option "LeftEdge" "100" > > Option "RightEdge" "1120" > > Option "TopEdge" "50" > > Option "BottomEdge" "310" > > Option "FingerLow" "25" > > Option "FingerHigh" "30" > > Option "MaxTapTime" "180" > > Option "MaxTapMove" "220" > > Option "MaxDoubleTapTime" "180" > > Option "VertScrollDelta" "20" > > Option "HorizScrollDelta" "50" > > Option "MinSpeed" "0.79" > > Option "MaxSpeed" "0.88" > > Option "AccelFactor" "0.0015" > > Option "SHMConfig" "on" > > #Option "SHMConfig" "true" > > Option "VertTwoFingerScroll" "1" > > Option "HorizTwoFingerScroll" "1" > > Option "TapButton2" "1" > > Option "TapButton2" "3" > > Option "TapButton3" "2" > >> EndSection > > Maybe you should try with something like this: > Section "InputDevice" > Identifier "appletouch" > Driver "synaptics" > Option "SendCoreEvents" "true" > Option "Device" > "/dev/input/by-id/usb-Apple_Computer_Apple_Internal_Keyboard_._Trackpad-event-mouse" > Option "Protocol" "event" > Option "LeftEdge" "0" > Option "RightEdge" "1100" > Option "TopEdge" "0" > Option "BottomEdge" "330" > Option "FingerLow" "55" > Option "FingerHigh" "60" > Option "MaxTapTime" "100" > Option "MaxTapMove" "20" > Option "VertScrollDelta" "30" > Option "HorizScrollDelta" "30" > Option "MinSpeed" "0.4" > Option "MaxSpeed" "2.0" > Option "AccelFactor" "0.03" > Option "SHMConfig" "on" > EndSection > > Works for me (at least when appletouch driver is loaded correctly, which > is not always the case, for some strange reasons). > > Best regards, > > Nicolas > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.3 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iD8DBQFGGiuQ01ajQnpJXgERAm3EAJ9j352lNM2ZsTPCd2PFXRjB/CtG/QCfUVcJ > FwmzFQNvN+eKpfNNMJD26EU= > =Zb3N > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Mactel-linux-users mailing list > Mac...@li... > https://lists.sourceforge.net/lists/listinfo/mactel-linux-users > |
From: Michael G. <mig...@gm...> - 2007-04-09 13:40:32
|
Am Montag, 9. April 2007 14:30:23 schrieb Sheer El-Showk: > Hi Nicolas, > > I'm sure you've mentioned this many times before but you have a > MacBook correct, not a macbook pro? Your touchpad config seems quite > different form mine, especially the FingerLow and high. I've been > looking for the ideal touchpad config for my MBP for a while and I've > settled on something that's usable but still a little worse than OS X. > Is the one you have above for an MBP or an MB? > > Is there some site online where an up-to-date config for an MBP > touchpad can be found? > > cheers, > Sheer Hi, I don't know if this helps but you could try K/QSynaptics: http://qsynaptics.sourceforge.net/ss.html I'm using the config from the gentoo-wiki: http://gentoo-wiki.com/HARDWARE_Apple_MacBook#Input_Devices and it works good for me (scrolling is a bit slow but I'm not using it that often). Michael |