Hallo!
Ich habe ein kleines Problem mit der xorg.conf auf meiner SMT.
Ich starte aus VDR heraus verschiedene Emulatoren. Um die Bedienbarkeit
einigermassen zu gewährleisten, wird bei Bedarf lircmd und irxevent gestartet,
bzw. beendet. Das funktioniert wunderbar. Doch die LIRC-Mouse bewirkt, dass
beim Start von X ein angeschlossenes Keyboard nicht mehr funktioniert.
Wenn ich bei der LIRC-Mouse die Option "SendCoreEvents" auskommentiere,
geht das Keyboard wieder, aber die LIRC-Mouse nicht mehr.
Hier meine xorg.conf:
Code
Section "Module"
Load "record"
Load "extmod"
Load "dbe"
Load "dri"
Load "glx"
Load "xtrap"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "CorePointer"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "LIRC-Mouse"
Driver "mouse"
Option "Device" "/dev/lircm"
Option "Protocol" "ImPS/2"
Option "SendCoreEvents"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
Section "Monitor"
Identifier "Default Monitor"
HorizSync 27-96
VertRefresh 48-61
Modeline "720x576" 27.5 720 744 800 880 576 581 583 625
# Set for 4:3 display
# DisplaySize 300 225
# Set for 16:9 display
DisplaySize 400 225
EndSection
Section "Device"
Identifier "i810"
Driver "i810"
BusID "0000:02:00"
VideoRam 4096
Option "DDC" "off"
Option "XvMCSurfaces" "6"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "i810"
Monitor "Default Monitor"
DefaultDepth 24
SubSection "Display"
Modes "720x576"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "DRI"
Mode 0666
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "LIRC-Mouse"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection
Display More
By the way: Ich habe fogende lircmd.conf:
Code
PROTOCOL IMPS/2
ACCELERATOR 1 30 5
TOGGLE_ACTIVATE * ASPECT
MOVE_N * UP
MOVE_E * RIGHT
MOVE_S * DOWN
MOVE_W * LEFT
#MOVE_NE * 1
#MOVE_SE * 2
#MOVE_SW * 3
#MOVE_NW * 4
BUTTON1_CLICK * OK
BUTTON2_CLICK * EXIT
Display More
Die Maus ist sehr langsam und die Beschleunigung funktioniert auch nicht.
Ich nehme an, dass die FB der SMT im Keyrepeat zu schlecht ist. Oder gibt
es da Abhilfe?