Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
No Keyboard, Mouse with Gentoo kernel 2.6.9 - r1
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Eibwen
n00b
n00b


Joined: 02 Nov 2004
Posts: 8

PostPosted: Tue Nov 02, 2004 9:47 pm    Post subject: No Keyboard, Mouse with Gentoo kernel 2.6.9 - r1 Reply with quote

I recently installed the latest gentoo kernel 2.6.9-r1

After a reboot i had no keyboard or mouse in X.
But X is running. (Clock, Restoring Session, etc)

Did something change in the input stuff of the kernel?

cat /dev/input/event0 reports events being generated by my synaptics touchpad.
Keyboard works fine before i startx.

I can't see anything wrong in the Xorg.0.log file.

Anyone else having this problem?
Back to top
View user's profile Send private message
Eibwen
n00b
n00b


Joined: 02 Nov 2004
Posts: 8

PostPosted: Wed Nov 03, 2004 7:14 am    Post subject: Reply with quote

Ok i played around some more with my X config and i got my joystick mouse thingy to work.
I can move the cursor around but i don't have any mousebuttons that work.

The mouse that works is "Mouse1" from the xorg.conf file.

Code:

cat /proc/bus/input/devices

I: Bus=0011 Vendor=0002 Product=0007 Version=0000
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio1/input0
H: Handlers=mouse0 event0
B: EV=b
B: KEY=6420 0 70000 0 0 0 0 0 0 0 0
B: ABS=11000003

I: Bus=0011 Vendor=0002 Product=0001 Version=0000
N: Name="PS/2 Generic Mouse"
P: Phys=synaptics-pt/serio0/input0
H: Handlers=mouse1 event1
B: EV=7
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=3

I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
H: Handlers=event2 kbd
B: EV=120003
B: KEY=4 2001e00 3802078 f840d001 f2ffffdf ffefffff ffffffff ffffffff
B: LED=7


Here is my latest Xorg.conf file:

Code:

Section "ServerLayout"
   Identifier     "X.org Configured"
   Screen      0  "Screen0" 0 0
   InputDevice    "Mouse0" "CorePointer"
   InputDevice    "Mouse1" "SendCoreEvents"
   InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
   RgbPath      "/usr/X11R6/lib/X11/rgb"
   ModulePath   "/usr/X11R6/lib/modules"
   FontPath     "/usr/share/fonts/misc/"
   FontPath     "/usr/share/fonts/TTF/"
   FontPath     "/usr/share/fonts/Speedo/"
   FontPath     "/usr/share/fonts/Type1/"
   FontPath     "/usr/share/fonts/CID/"
   FontPath     "/usr/share/fonts/75dpi/"
   FontPath     "/usr/share/fonts/100dpi/"
EndSection

Section "Module"
   Load  "extmod"
   Load  "dri"
   Load  "dbe"
   Load  "record"
   Load  "xtrap"
   Load  "glx"
   Load  "speedo"
   Load  "type1"
   Load  "freetype"
   Load  "synaptics"
EndSection

Section "InputDevice"
   Identifier  "Keyboard0"
   Driver      "kbd"
   Option       "CoreKeyboard"

   Option      "XkbModel"    "pc105"
   Option      "XkbLayout"   "de_CH"
EndSection

Section "InputDevice"
   Identifier  "Mouse1"
   Driver      "mouse"
   Option       "Protocol" "auto"
   Option       "Device" "/dev/input/mouse1"
EndSection

# Touchpad - Synaptics driver

Section "InputDevice"
   Driver      "synaptics"
   Identifier  "Mouse0"
   Option      "Device"       "/dev/input/event0"
   Option      "Protocol"     "event"
   Option      "LeftEdge"     "1900"
   Option      "RightEdge"    "5400"
   Option      "BottomEdge"   "4500"
   Option      "TopEdge"      "1800"
   Option      "FingerLow"    "25"
   Option      "FingerHigh"   "30"
   Option      "MaxTapTime"   "180"
   Option      "MaxTapMove"   "220"
   Option      "VertScrollDelta" "100"
   Option      "MinSpeed"     "0.02"
   Option      "MaxSpeed"     "0.14"
   Option      "AccelFactor"  "0.0010"
   #    Option      "Repeater"     "/dev/ps2mouse"
   Option      "SHMConfig"    "on"
EndSection

Section "Monitor"
Identifier   "Monitor0"
VendorName   "Monitor Vendor"
ModelName    "Monitor Model"
EndSection

Section "Device"
   Identifier  "Card0"
   Driver      "nv"
   VendorName  "nVidia Corporation"
   BoardName   "NV11 [GeForce2 Go]"
   BusID       "PCI:1:0:0"
EndSection

Section "Screen"
   Identifier "Screen0"
   Device     "Card0"
   Monitor    "Monitor0"
   SubSection "Display"
      Modes "1400x1050" "1280x800" "1024x768" "800x600" "640x480"
      Depth     32
   EndSubSection
EndSection

[/code]
Back to top
View user's profile Send private message
Eibwen
n00b
n00b


Joined: 02 Nov 2004
Posts: 8

PostPosted: Fri Nov 05, 2004 7:26 pm    Post subject: Reply with quote

Ok i found out what the problem was.

It's the new version of synaptics that is causing the complete lock up of the input stuff.

Didn't find a solution yet.
Back to top
View user's profile Send private message
El Tazar
n00b
n00b


Joined: 06 Nov 2004
Posts: 57

PostPosted: Sat Nov 06, 2004 12:24 am    Post subject: Reply with quote

Try changing the line in the Section "InputDevice" for the Synaptics touchpad
from

Code:
Option      "Protocol"     "event"


to

Code:
Option      "Protocol"     "auto"


I had excactly the same problem and that did it for me.
Back to top
View user's profile Send private message
Eibwen
n00b
n00b


Joined: 02 Nov 2004
Posts: 8

PostPosted: Sat Nov 06, 2004 11:23 am    Post subject: Reply with quote

Yay!

That was exactly my problem as well.

Thanks El Tazar
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum