Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
IBM ThinkPad - Trackpoint einbinden
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
dem_che
n00b
n00b


Joined: 21 Dec 2005
Posts: 3

PostPosted: Wed Dec 21, 2005 8:18 am    Post subject: IBM ThinkPad - Trackpoint einbinden Reply with quote

Wie instaliere ich den IBM Trackpoint meines Thinkpads R50e bei Gentoo und Xorg?
Danke für die Hilfe im vorraus!!!
MfG
dem ché
Back to top
View user's profile Send private message
samsonus
Apprentice
Apprentice


Joined: 18 Jan 2005
Posts: 225
Location: Siegen

PostPosted: Wed Dec 21, 2005 10:29 am    Post subject: Reply with quote

ich glaube nicht, dass das an xorg liegt.
ich vermute es liegt eher am kernel.

gruss samsonus
Back to top
View user's profile Send private message
pommespaula
Apprentice
Apprentice


Joined: 25 Jul 2004
Posts: 177
Location: Würzburg

PostPosted: Wed Dec 21, 2005 10:33 am    Post subject: Reply with quote

Im Kernel gibt es extra Einstellung für Thinkpad. Wenn du die aktivierst sollten alle Knöpfe und Funktionen gehen. Das tolle am Thinkpad ist doch ,dass es vollkommen Linux verträglich ist.
_________________
Da geht er hin, einer von Gottes eigenen Prototypen, ein aufgemotzter Mutant von der Sorte, die nie zur Massenproduktion in Betracht gezogen wurde. Zu spleenig zum leben und zu selten zum sterben...
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3925
Location: Hamburg

PostPosted: Wed Dec 21, 2005 2:19 pm    Post subject: Reply with quote

Habe ein T41, hier meine Kernel-config:
Code:
tfoerste@n22 ~ $ grep -i -e mouse -e ibm -e ps2 -e input /usr/src/linux/.config | grep -v '^#'
CONFIG_ACPI_IBM=m
CONFIG_HOTPLUG_PCI_ACPI_IBM=m
CONFIG_INPUT=y
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1400
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1050
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=m
CONFIG_INPUT_KEYBOARD=y
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=m
CONFIG_SERIO_LIBPS2=y
CONFIG_USB_HIDINPUT=y
und hier ein Auszug aus xorg.conf (nutze neben dem Trackpoint eine 3-Tasten-USB-Maus von Logitech):
Code:
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen          0  "Screen0" 0 0
        InputDevice    "Keyboard0"      "CoreKeyboard"
        InputDevice    "Mouse0"         "CorePointer"
        InputDevice    "Mouse1"         "SendCoreEvents"
EndSection

Section "Files"
        RgbPath      "/usr/lib/X11/rgb"
        ModulePath   "/usr/lib/modules"
        FontPath     "/usr/share/fonts/misc/"
        FontPath     "unix/:-1"
EndSection

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


Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"

        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "de"
        Option      "XkbVariant" "nodeadkeys"
EndSection


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

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "ImPS/2"
        Option      "Device" "/dev/input/mice"
        Option      "ZaxisMapping" "4 5"
EndSection
Back to top
View user's profile Send private message
hoschi
Advocate
Advocate


Joined: 19 Jul 2003
Posts: 2517
Location: Ulm, Germany, Europe

PostPosted: Wed Dec 21, 2005 3:48 pm    Post subject: Reply with quote

In der xorg.conf wird der Trackpoint wie eine normale Maus behandelt, und aus Sicht des Kernels ist der Trackpoint (vorsicht: einer meiner freunde heißt "make oldconfig") handelt es sich um eine stinknormale PS/2 Maus :D

PS: Hat ein Thinkpad nicht 102 Tasten?
Wobei Xorg 7.0 da sowieso sehr wählerisch ist, was die Anzahl der Tasten der Tastatur angeht.
_________________
Just you and me strogg!
Back to top
View user's profile Send private message
Lenz
Veteran
Veteran


Joined: 17 Jul 2003
Posts: 1439
Location: Marburg [HE, D, EU]

PostPosted: Wed Dec 21, 2005 4:24 pm    Post subject: Reply with quote

hoschi wrote:
Wobei Xorg 7.0 da sowieso sehr wählerisch ist, was die Anzahl der Tasten der Tastatur angeht.


OMG, ich hoffe wir bleiben beim Stablewerden von Xorg 7.0 von "Taste > | < geht nicht" -Threads verschont... nicht, dass das wieder anfängt. ;)
_________________
.:: Lenz' Signature 1.7b ::.

| Gentoo Linux since v1.4 (08-2003) [Screenshot]
| NetHack Highscore: 5.476.380 Pts., Val-Dwa-Fem-Law, ~ ascended to demigoddess-hood ~
Back to top
View user's profile Send private message
toralf
Developer
Developer


Joined: 01 Feb 2004
Posts: 3925
Location: Hamburg

PostPosted: Wed Dec 21, 2005 5:06 pm    Post subject: Reply with quote

hoschi wrote:
PS: Hat ein Thinkpad nicht 102 Tasten?
Oops, machte bisher überhaupt keinen Unterschied. Wobei mir jetzt beim Testen auffällt, daß ich die Num-Lock-Taste nicht aktivieren kann, weder mit 102, 104 oder 105 Tasten (zumindest geht die LED nicht an und die Tastatur "hakt" anschließend bei den entsprechenden Tasten), auf der Konsole funktioniert es jedoch tadellos.
Back to top
View user's profile Send private message
hoschi
Advocate
Advocate


Joined: 19 Jul 2003
Posts: 2517
Location: Ulm, Germany, Europe

PostPosted: Wed Dec 21, 2005 11:46 pm    Post subject: Reply with quote

Lenz wrote:
hoschi wrote:
Wobei Xorg 7.0 da sowieso sehr wählerisch ist, was die Anzahl der Tasten der Tastatur angeht.


OMG, ich hoffe wir bleiben beim Stablewerden von Xorg 7.0 von "Taste > | < geht nicht" -Threads verschont... nicht, dass das wieder anfängt. ;)


Ohh, ich glaube schon daran :D
Aber die Leute werden vorher von XKB-Fehlermeldungen überheuft, sofern man nicht irgend eine "Intel-Tastatur" in Xorg gewählt hat. Sollte man die nicht sehen, knallt eine Gnome auch noch eine XKB-Fehler beim Start ins Gesicht...

PS: Schau einfach ins "Desktop-Forum" die Sammeln sich schon...
_________________
Just you and me strogg!
Back to top
View user's profile Send private message
dem_che
n00b
n00b


Joined: 21 Dec 2005
Posts: 3

PostPosted: Thu Dec 22, 2005 4:13 pm    Post subject: Reply with quote

mhh....hab meinen Kernel und meine xorg.conf geändert wie von toralf beschrieben. hatte danach immer noch keine Maus,
also hab ich mal versucht mit genkernel wie in der doku beschrieben einen Kernel herzustellen (diemal keinen selber gebacken)
Hab meine grub.conf auch geändert (mit richtigen kernel und initram namen!!!).
Jetzt habe ich das Problem das gentoo mitten beim Start (nach erfolgreicher ausführung von grub) abstürzt.
Also kann mir jemand helfen wie ich einen vernünftigen Kernel für mein ThinkPad R50e - UR0Q3GE zusammenstelle.
Sitze schon seit 4 tagen an der installation (kein witz).
besten dank für die vorherige hilfe....und für die folgende im vorraus...
MfG dem_che

edit: Der bootvorgang bricht an der stelle veafb: scolling: redraw ab
Back to top
View user's profile Send private message
SvenFischer
Veteran
Veteran


Joined: 05 Feb 2003
Posts: 1033
Location: Berlin

PostPosted: Thu Dec 22, 2005 6:17 pm    Post subject: Reply with quote

http://www.kaltertee.de/R50e.html

www.tuxmobil.de

Hilft nur am Rande, aber sollte immer die erste Anlaufstelle sein.
_________________
Core2Duo, 4GB RAM, AMD/ATI 4850 and nice person in front!
Back to top
View user's profile Send private message
dem_che
n00b
n00b


Joined: 21 Dec 2005
Posts: 3

PostPosted: Thu Dec 22, 2005 6:31 pm    Post subject: Reply with quote

Ich war schon auf diesen Seiten. Aber trotzdem danke. Hatte auch schon mehrere Kernel kompiliert (ca. 10).
Hat bis jetzt nicht geholfen eine Mouse zu kriegen. Wenn ich mit der InstallationsCD Linux starte hab ich ja die Mouse. Bloß meine Kernel unterstützen sie aus mir unerklärlichen Gründen nicht.
Back to top
View user's profile Send private message
gentop
l33t
l33t


Joined: 29 Nov 2004
Posts: 639

PostPosted: Thu Dec 22, 2005 8:38 pm    Post subject: Reply with quote

Hi,

habe auch nen IBM Thinkpad. Geholfen haben bei mir folgende Häkchen unter den Maustreibern PS/2 sowie InPort/MS/ATIXL busmouse. Damit funktioniert mein Trackpoint wunderbest.

//gentop
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) 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