You are not logged in.
Pages: 1
Hello, I have no idea why my mouse is not working, the laser is detecting moves (there is for a while change to dim red when passing with finger), I have tried the cat on every device in /dev/input/... but the mouse did not respond, it is like some driver is missing??? Normal optical mouse is working without problems.
cat /proc/bus/input/devices
I: Bus=0017 Vendor=0001 Product=0001 Version=0100
N: Name="Macintosh mouse button emulation"
P: Phys=
S: Sysfs=/devices/virtual/input/input0
U: Uniq=
H: Handlers=mouse0 event0
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
S: Sysfs=/devices/platform/i8042/serio0/input/input1
U: Uniq=
H: Handlers=kbd event1
B: EV=120013
B: KEY=4 2000000 3803078 f800d001 feffffdf ffefffff ffffffff fffffffe
B: MSC=10
B: LED=7
I: Bus=0019 Vendor=0000 Product=0006 Version=0000
N: Name="Video Bus"
P: Phys=/video/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/device:02/input/input2
U: Uniq=
H: Handlers=kbd event2
B: EV=3
B: KEY=3f000b 0 0 0 0 0 0 0
I: Bus=0019 Vendor=1043 Product=0000 Version=0000
N: Name="b43-phy0"
P: Phys=
S: Sysfs=/devices/virtual/input/input9
U: Uniq=
H: Handlers=kbd event9 rfkill
B: EV=3
B: KEY=4000 0 0 0 0 0 0 0
lsusb
Bus 005 Device 002: ID 09da:000a A4 Tech Co., Ltd Port Mouse
cat /etc/X11/xorg.conf
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
dmesg
input: Macintosh mouse button emulation as /devices/virtual/input/input0
mice: PS/2 mouse device common for all mice
hub 1-0:1.0: unable to enumerate USB device on port 6
usb 4-2: new low speed USB device using ohci_hcd and address 2
usb 4-2: configuration #1 chosen from 1 choice
modules from rc.conf
MODULES=(i2c_piix4 ide_pci_generic ide_cd_mod ata_generic b43 ohci_hcd usbhid usb_storage xfs cdrom ext2 atiixp acpi-cpufreq cpufreq_powersave cpufreq_ondemand atl2 ati_agp !snd_hda_intel !snd_pcm_oss !snd_hda_codec_si3054 evdev thermal video fan button battery asus-laptop psmouse)
mkinitcpio.conf
MODULES="sd_mod reiserfs ahci ext4"
BINARIES=""
# FILES="/etc/modprobe.conf"
FILES=""
# HOOKS
HOOKS="base udev"
Last edited by blazzter (2009-07-01 20:28:55)
Offline
Hi, i have same problem. It is bug .
http://bugs.archlinux.org/task/16972
The solution is (works for my) :
nano /etc/X11/xorg.conf
...
Section "ServerFlags"
Option "AutoAddDevices" "False"
Option "AllowEmpthyInput" "false"
Option "DontZap" "false"
EndSection
...
Section "InputDevice"
# Identifier and driver
Identifier "Mouse"
Driver "mouse"
Option "ZAxisMapping" "4 5 6 7"
# Option "Sensitivity" "1.5"
Option "Device" "/dev/input/mice"
Option "Protocol" "IMPS/2"
# Option "Resolution" "256"
# Option "BaudRate" "9600"
# Option "SampleRate" "150"
# Option "Emulate3Buttons"
# Option "Emulate3Timeout" "50"
# Option "ChordMiddle"
EndSection
...
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1"
# Screen "Screen 2"
InputDevice "Mouse" "CorePointer"
# InputDevice "Keyboard" "CoreKeyboard"
EndSection
Zdar Max
Offline
Pages: 1