You are not logged in.
Pages: 1
Yikes, I did a pacman -Syu and restarted -> mouse got broken in X11. It works fine in console mode with gpm, but when I start X I can move the pointer sideways for about 0.5 secs and after that only vertical movement is possible. I tried to change in xorg.conf between normal and evdev driver, but neither works... How should I fix this?
PS. I tried with stock 2.6.24 kernel and with custom 2.6.23, doesn't work.
Offline
pacman -Syu
Look in /var/log/pacman.log and show what happened.
Offline
Look in /var/log/pacman.log and show what happened.
I checked it through it warned about changing xorg input detection to hal based stuff or something. I found this file related to that message:
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
<!-- FIXME: Support tablets too. -->
<match key="info.capabilities" contains="input.mouse">
<merge key="input.x11_driver" type="string">mouse</merge>
<match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
string="Linux">
<merge key="input.x11_driver" type="string">evdev</merge>
</match>
</match>
<match key="info.capabilities" contains="input.keys">
<merge key="input.xkb.rules" type="string">base</merge>
<!-- If we're using Linux, we use evdev by default (falling back to
keyboard otherwise). -->
<merge key="input.x11_driver" type="string">keyboard</merge>
<merge key="input.xkb.model" type="string">pc105</merge>
<match key="/org/freedesktop/Hal/devices/computer:system.kernel.name"
string="Linux">
<merge key="input.x11_driver" type="string">evdev</merge>
<merge key="input.xkb.model" type="string">evdev</merge>
</match>
<merge key="input.xkb.layout" type="string">fi</merge>
<merge key="input.xkb.variant" type="string" />
</match>
</device>
</deviceinfo>
It seems like changing something from it might solve it...?
Offline
Do you have the [testing] repository enabled in your /etc/pacman.conf?
Offline
Thanks, that was the problem. I reverted to the stable xorg version and it works now.
Offline
Pages: 1