You are not logged in.

#1 2009-04-28 22:13:48

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Bluetooth mouse works once, then doesn't ever again until I reboot.

The situation is as follows:
* I have a Logitech V470 Bluetooth mouse.
* It seems to work fine with Arch at first, running GNOME as a DE. Using bluez-4.30-1, bluez-gnome-1.8-4, and gnome-bluetooth-0.12.0-1 (as is output by "pacman -Q | grep blue").
* However, when I turn off the mouse and then turn it back on, it doesn't seem to be detected properly. In other words, moving the mouse doesn't move the cursor.
* "cat /dev/input/mice" spews characters when I do anything with the mouse, so it is connecting. It just isn't being used by whatever controls the cursor (X?).

I've tried searching but found nothing relevant. Can anyone point me to a fix?

[clarification] I don't actually have to reboot, just restart X. Which is just as annoying.

Last edited by Peasantoid (2009-04-29 02:15:42)

Offline

#2 2009-04-29 02:11:06

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

In /var/log/Xorg.0.log:

(II) config/hal: Adding input device Bluetooth Laser Travel Mouse
(**) Bluetooth Laser Travel Mouse: always reports core events
(**) Bluetooth Laser Travel Mouse: Device: "/dev/input/event8"
(WW) Bluetooth Laser Travel Mouse: device file already in use. Ignoring. <-- This is the problem!
(II) UnloadModule: "evdev"
(EE) PreInit returned NULL for "Bluetooth Laser Travel Mouse"
(EE) config/hal: NewInputDeviceRequest failed (8)

This makes me think something is still trying to use the mouse device. The question is: what?

<wild-speculation>Perhaps whatever is communicating with the mouse isn't giving up when it disconnects? I assume this utility/daemon would be located in the BlueZ stack, but I have no idea which one.</wild-speculation>

Update... A quick "sudo lsof /dev/input/event8" reveals that the only process using the device at any given time is Xorg itself. Which I believe means something, somewhere, is not reporting that the mouse has gone away and Xorg happily continues to use the device file, all the while reporting "Bluetooth Laser Travel Mouse: Read error: No such device" because it can't get any information from the thing. What is the weak link here? I can think of several things, such as HAL and any Bluetooth/HID utilities/daemons. (It appears to be HAL, see here.)

Last edited by Peasantoid (2009-04-29 19:32:56)

Offline

#3 2009-04-29 11:25:57

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

Anyone? Would quite like some assistance on this.

If it helps, here's what I understand of the situation so far:
* I turn on the mouse for the first time after booting.
* It's recognized by the BlueZ stack, which reports it to HAL as a device.
* Xorg uses the device properly.
* I turn off the mouse.
* HAL doesn't register this as a device removal. This could be a) BlueZ not recognizing it, b) BlueZ recognizing it but not reporting it to HAL, or c) HAL being reported to but not caring.
* Xorg, not knowing any better, continues to use the [now invalid] device file, spouting read errors left and right.
* I turn on the mouse again.
* At this point, I'm not sure why BlueZ/HAL/Xorg isn't reinstating the old connection...

Last edited by Peasantoid (2009-04-29 11:26:38)

Offline

#4 2009-04-29 15:39:11

Lazer
Banned
Registered: 2007-08-02
Posts: 111

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

I'm not able to help you at the moment, but I can confirm the issue... It was working fine some months ago, maybe a bluez (or hal) update broke it...

Offline

#5 2009-04-29 15:54:59

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

I am still using the old bluez stack here, but the bluez update has been rolled out weeks ago (and not days ago), so it would surprise me if that would be your problem. As you point out yourself looking at the Xorg log it does look like a device file conflict... It looks like your mouse is not deactivated when it gets shut down?

If I check my Xorg log for such hal messages, it always shows 'disabling input device blabla' when my bluetooth keyboard and/or mouse (a Logitech V470 just like yours) are going to sleep. They wake up again just fine, though.

If you only had the bluez update recently (grep your pacman log for it), then you might try rolling back to the old packages if you can't get it fixed:

bluez-libs
bluez-utils
obex-data-server
openobex
bluez-gnome

Anyway, my problem after the bluez update would be that the devices would not reconnect - whether it was after a reboot or after going to sleep with the computer still running. I had to reconnect them manually every time.


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#6 2009-04-29 19:41:21

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

Thanks for your responses. Also, clarification request for B: What do you mean by "reconnect"? Just use the command-line Bluetooth connecting tool (can't remember the name right now)?

I've been thinking about this for a while and there is another possibility: the problem is Xorg's. Since it's saying the device file is "already being used", that means it's still using it, which means it may not have responded properly to any disconnection event that occurred, and so did not relinquish control of the file. When I reconnect the mouse, Xorg tries to re-access said file, but since it's already using it, it can't. This theory, however, does not explain why the old connection doesn't just start working again, since it's clear that the mouse still sends data to the file.

Perhaps I could temporarily work around this with a(n?) xorg.conf change?

Update: Interestingly, "tail -f /var/log/Xorg.0.log" reveals that nothing is reported when the mouse is turned off. Either someone was lax when writing the logging code, or something in the input toolchain (BlueZ, HAL, etc.) really isn't detecting/reporting the loss of connection.

Unfortunately, I only installed about four-five days ago, so I wouldn't know whether this was caused by an update.

Last edited by Peasantoid (2009-04-29 19:49:13)

Offline

#7 2009-04-29 20:41:25

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

This problem seems related: http://forum.soft32.com/linux/gentoo-us … 77457.html

And here is my xorg.conf in its entirety (relevant sections placed at the top):

Section "InputDevice"
    Driver "mouse"
    Identifier "LogitechV470"
    Option "Protocol" "IMPS/2"
    Option "Device" "/dev/input/mice"
    Option "Buttons" "5"
    Option "ZAxisMapping" "4 5"
EndSection

Section "ServerLayout"
    Identifier "DefaultLayout"
    InputDevice "LogitechV470" "SendCoreEvents"
EndSection

### The rest is graphics-related.

Section "Device"
    Identifier    "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
    Driver        "intel"
    BusID        "PCI:0:2:0"
EndSection

Section "Monitor"
    Identifier    "Generic Monitor"
    Option        "DPMS"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Viewport 0 0
        Depth    16
        Modes        "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport    0 0
        Depth       24
        Modes       "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "DRI"
    Group "video"
    Mode 0666
EndSection

Section "ServerFlags"
    Option "DontZap" "false"
EndSection

Section "Module"
    # Graphics stuff.
    Load "glx" # OpenGL
    Load "GLcore" # ^
    Load "dri" # Direct rendering
    Load "dbe" # Double buffering -- unused?
    Load "i2c" # Monitor info
    Load "ddc" # ^
    Load "vbe" # VESA BIOS (?)
    Load "int10" # ^

    # Font stuff.
    Load "bitmap"
    Load "extmod"
    #Load "freetype"
    #Load "type1"
EndSection

Last edited by Peasantoid (2009-04-29 20:42:35)

Offline

#8 2009-04-29 21:37:38

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

The old bluetooth stack uses hidd, but in the new one that command is deprecated. I meant that for me, after the upgrade, the connection would not be re-established like happens with the old stack once you have a device paired. I can e.g. shut down or reboot and Linux will reconnect to my mouse and keyboard without user intervention; with the new stack, that was not the case (and trust me, I have spent a few hours on that trying every possibility I could find before deciding to roll back).

Have you tried without a config alltogether?


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#9 2009-04-29 21:46:11

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

What do you mean "without a config"? You mean with no entry in xorg.conf?

I suppose I can try removing it, but I added it because of this problem in the first place (fat lot of good that did...).

Offline

#10 2009-04-29 22:08:22

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

Makes no difference whether it's there or not...hmm.

Offline

#11 2009-04-30 11:22:47

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

I'm going to try converting the entry in xorg.conf to a HAL .fdi file, since putting it in the Xorg config had no effect.

Offline

#12 2009-04-30 20:07:15

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

This didn't work either. Here's my .fdi, is something wrong with it?

<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
  <device>
    <match key="input.x11_driver" string="evdev">
        <merge key="input.x11_options.SendCoreEvents" type="string">true</merge>
        <merge key="input.x11_options.Dev Phys" type="string">00:1E:52:DD:4D:89</merge> <!-- Physical MAC address? -->
        <merge key="input.x11_options.HWHEELRelativeAxisButtons" type="string">7 6</merge>
    </match>
  </device>
</deviceinfo>

Edit: Oops, quadruple-posted.

Last edited by Peasantoid (2009-04-30 20:12:22)

Offline

#13 2009-04-30 20:26:22

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

You have the necessary drivers installed? Any relevant errors in Xorg.conf?


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#14 2009-04-30 20:56:36

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

I have evdev installed.

Xorg.conf does not contain errors, so I assume you meant the log (/var/log/Xorg.0.log)... I'll post it here.

X.Org X Server 1.6.1
Release Date: 2009-4-14
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.29-ARCH x86_64 
Current Operating System: Linux poisson-rouge 2.6.29-ARCH #1 SMP PREEMPT Fri Apr 17 14:14:28 CEST 2009 x86_64
Build Date: 15 April 2009  11:01:49AM
 
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 30 16:21:26 2009
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
(**) Option "DontZap" "false"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
(==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/Type1,
    built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
(II) Loader magic: 0x15c0
(II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0@0:2:0) Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller rev 3, Mem @ 0xd0100000/1048576, 0xc0000000/268435456, I/O @ 0x00003110/8
(--) PCI: (0@0:2:1) Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller rev 3, Mem @ 0xd0200000/1048576
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) System resource ranges:
    [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
(II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
(II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
(II) "glx" will be loaded. This was enabled by default and also specified in the config file.
(II) "record" will be loaded by default.
(II) "dri" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri2" will be loaded by default.
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "i2c"
(II) Module "i2c" already built-in
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules//libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.1.0
    ABI class: X.Org Video Driver, version 5.0
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules//libint10.so
(II) Module int10: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 5.0
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "intel"
(II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
(II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.6.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
(II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ,
    965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41
(II) Primary Device is: PCI 00@00:02:0
(II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
(II) resource ranges after probing:
    [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0    0    0x000003c0 - 0x000003df (0x20) IS[b]
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules//libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 5.0
(**) intel(0): Depth 24, (--) framebuffer bpp 32
(==) intel(0): RGB weight 888
(==) intel(0): Default visual is TrueColor
(II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
(--) intel(0): Chipset: "965GM"
(--) intel(0): Linear framebuffer at 0xC0000000
(--) intel(0): IO registers at addr 0xD0100000
(WW) intel(0): libpciaccess reported 0 rom size, guessing 64kB
(==) intel(0): Using EXA for acceleration
(II) intel(0): 2 display pipes available.
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Module "i2c" already built-in
(II) intel(0): Output VGA using monitor section Generic Monitor
(II) intel(0): Output LVDS has no monitor section
(II) intel(0): I2C bus "LVDSDDC_C" initialized.
(II) intel(0): Attempting to determine panel fixed mode.
(II) intel(0): I2C device "LVDSDDC_C:E-EDID segment register" registered at address 0x60.
(II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0.
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized.
(II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70.
(II) intel(0): I2C bus "SDVOB DDC Bus" initialized.
(II) intel(0): Output TMDS-1 has no monitor section
(II) intel(0): SDVOB: device VID/DID: 04:AA.03, clock range 25.0MHz - 165.0MHz
(II) intel(0): SDVOB: 1 input channel
(II) intel(0): SDVOB: TMDS0 output reported
(II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" initialized.
(II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" registered at address 0x72.
(II) intel(0): No SDVO device found on SDVOC
(II) intel(0): I2C device "SDVOCTRL_E for SDVOC:SDVO Controller C" removed.
(II) intel(0): I2C bus "SDVOCTRL_E for SDVOC" removed.
(II) intel(0): Output TV has no monitor section
(II) intel(0): Current clock rate multiplier: 1
(II) intel(0): Resizable framebuffer: not available (1 3)
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): Output VGA disconnected
(II) intel(0): Output LVDS connected
(II) intel(0): Output TMDS-1 disconnected
(II) intel(0): Output TV disconnected
(II) intel(0): Using user preference for initial modes
(II) intel(0): Output LVDS using initial mode 1280x800
(II) intel(0): detected 512 kB GTT.
(II) intel(0): detected 15868 kB stolen memory.
(==) intel(0): video overlay key set to 0x101fe
(==) intel(0): Will not try to enable page flipping
(==) intel(0): Triple buffering disabled
(==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
(==) intel(0): DPI set to (96, 96)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "exa"
(II) LoadModule: "exa"
(II) Loading /usr/lib/xorg/modules//libexa.so
(II) Module exa: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 2.4.0
    ABI class: X.Org Video Driver, version 5.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Module "ramdac" already built-in
(II) intel(0): Comparing regs from server start up to After PreInit
(WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009
(WW) intel(0): PP_STATUS before: on, ready, sequencing idle
(WW) intel(0): PP_STATUS after: on, ready, sequencing on
(WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x00000203 to 0x80000207
(WW) intel(0): PIPEASTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
(WW) intel(0): PIPEASTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS
(WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000206 to 0x80000206
(WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS
(WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS
(WW) intel(0): Register 0x68000 (TV_CTL) changed from 0x100000c0 to 0x000c00c0
(WW) intel(0): Register 0x68010 (TV_CSC_Y) changed from 0x00000000 to 0x0332012d
(WW) intel(0): Register 0x68014 (TV_CSC_Y2) changed from 0x00000000 to 0x07d30104
(WW) intel(0): Register 0x68018 (TV_CSC_U) changed from 0x00000000 to 0x0733052d
(WW) intel(0): Register 0x6801c (TV_CSC_U2) changed from 0x00000000 to 0x05c70200
(WW) intel(0): Register 0x68020 (TV_CSC_V) changed from 0x00000000 to 0x0340030c
(WW) intel(0): Register 0x68024 (TV_CSC_V2) changed from 0x00000000 to 0x06d00200
(WW) intel(0): Register 0x68028 (TV_CLR_KNOBS) changed from 0x00000000 to 0x00404000
(WW) intel(0): Register 0x6802c (TV_CLR_LEVEL) changed from 0x00000000 to 0x010b00e1
(WW) intel(0): Register 0x68030 (TV_H_CTL_1) changed from 0x00000000 to 0x00400359
(WW) intel(0): Register 0x68034 (TV_H_CTL_2) changed from 0x00000000 to 0x80480022
(WW) intel(0): Register 0x68038 (TV_H_CTL_3) changed from 0x00000000 to 0x007c0344
(WW) intel(0): Register 0x6803c (TV_V_CTL_1) changed from 0x00000000 to 0x00f01415
(WW) intel(0): Register 0x68040 (TV_V_CTL_2) changed from 0x00000000 to 0x00060607
(WW) intel(0): Register 0x68044 (TV_V_CTL_3) changed from 0x00000000 to 0x80120001
(WW) intel(0): Register 0x68048 (TV_V_CTL_4) changed from 0x00000000 to 0x000900f0
(WW) intel(0): Register 0x6804c (TV_V_CTL_5) changed from 0x00000000 to 0x000a00f0
(WW) intel(0): Register 0x68050 (TV_V_CTL_6) changed from 0x00000000 to 0x000900f0
(WW) intel(0): Register 0x68054 (TV_V_CTL_7) changed from 0x00000000 to 0x000a00f0
(WW) intel(0): Register 0x68060 (TV_SC_CTL_1) changed from 0x00000000 to 0xc1710087
(WW) intel(0): Register 0x68064 (TV_SC_CTL_2) changed from 0x00000000 to 0x6b405140
(WW) intel(0): Register 0x68070 (TV_WIN_POS) changed from 0x00000000 to 0x00360024
(WW) intel(0): Register 0x68074 (TV_WIN_SIZE) changed from 0x00000000 to 0x02640198
(WW) intel(0): Register 0x68080 (TV_FILTER_CTL_1) changed from 0x00000000 to 0x8000085e
(WW) intel(0): Register 0x68084 (TV_FILTER_CTL_2) changed from 0x00000000 to 0x00028283
(WW) intel(0): Register 0x68088 (TV_FILTER_CTL_3) changed from 0x00000000 to 0x00014141
(WW) intel(0): Register 0x68100 (TV_H_LUMA_0) changed from 0x00000000 to 0xb1403000
(WW) intel(0): Register 0x681ec (TV_H_LUMA_59) changed from 0x00000000 to 0x0000b060
(WW) intel(0): Register 0x68200 (TV_H_CHROMA_0) changed from 0x00000000 to 0xb1403000
(WW) intel(0): Register 0x682ec (TV_H_CHROMA_59) changed from 0x00000000 to 0x0000b060
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
    [0] -1    0    0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1    0    0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1    0    0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1    0    0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0    0    0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [5] 0    0    0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [6] 0    0    0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [7] -1    0    0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1    0    0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0    0    0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [10] 0    0    0x000003c0 - 0x000003df (0x20) IS[b](OprU)
(II) intel(0): Kernel reported 1264128 total, 1 used
(II) intel(0): I830CheckAvailableMemory: 5056508 kB available
(WW) intel(0): DRI2 requires UXA
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: drmOpenMinor returns 10
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) [drm] loaded kernel module for "i915" driver.
(II) [drm] DRM interface version 1.3
(II) [drm] DRM open master succeeded.
(II) intel(0): [drm] Using the DRM lock SAREA also for drawables.
(II) intel(0): [drm] framebuffer mapped by ddx driver
(II) intel(0): [drm] added 1 reserved context for kernel
(II) intel(0): X context handle = 0x1
(II) intel(0): [drm] installed DRM signal handler
(**) intel(0): Framebuffer compression disabled
(**) intel(0): Tiling enabled
(==) intel(0): VideoRam: 262144 KB
(II) intel(0): Attempting memory allocation with tiled buffers.
(II) intel(0): Tiled allocation successful.
(II) intel(0): [drm] Registers = 0xd0100000
(II) intel(0): [drm] Initialized kernel agp heap manager, 33554432
(II) intel(0): [dri] visual configs initialized
(II) intel(0): Page Flipping disabled
(II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) EXA(0): Offscreen pixmap area of 19660800 bytes
(II) EXA(0): Driver registered support for the following operations:
(II)         Solid
(II)         Copy
(II)         Composite (RENDER acceleration)
(==) intel(0): Backing store disabled
(==) intel(0): Silken mouse enabled
(II) intel(0): Initializing HW Cursor
(II) intel(0): [DRI] installation complete
(II) intel(0): Current clock rate multiplier: 1
(II) intel(0): xf86BindGARTMemory: bind key 0 at 0x0cd40000 (pgoffset 52544)
(II) intel(0): xf86BindGARTMemory: bind key 1 at 0x0e000000 (pgoffset 57344)
(II) intel(0): Fixed memory allocation layout:
(II) intel(0): 0x00000000-0x00000fff: power context (4 kB)
(II) intel(0): 0x00f7f000:            end of stolen memory
(II) intel(0): 0x00f7f000-0x0cd3ffff: DRI memory manager (194308 kB)
(II) intel(0): 0x0cd40000-0x0dffffff: exa offscreen (19200 kB)
(II) intel(0): 0x0e000000-0x0fffffff: classic textures (32768 kB)
(II) intel(0): 0x10000000:            end of aperture
(II) intel(0): BO memory allocation layout:
(II) intel(0): 0x00f7f000:            start of memory manager
(II) intel(0): 0x00f9f000-0x015defff: depth buffer (6400 kB) Y tiled
(II) intel(0): 0x0179f000-0x01ddefff: back buffer (6400 kB) X tiled
(II) intel(0): 0x01f9f000-0x025defff: front buffer (6400 kB) X tiled
(II) intel(0): 0x0279f000-0x0279ffff: overlay registers (4 kB)
(II) intel(0): 0x027a0000-0x027a9fff: HW cursors (40 kB)
(II) intel(0): 0x0cd40000:            end of memory manager
(WW) intel(0): ESR is 0x00000010, page table error
(WW) intel(0): PGTBL_ER is 0x00000100, display B pte
(WW) intel(0): Existing errors found in hardware state.
(II) intel(0): Selecting standard 18 bit TMDS pixel format.
(II) intel(0): Output configuration:
(II) intel(0):   Pipe A is off
(II) intel(0):   Display plane A is now disabled and connected to pipe A.
(II) intel(0):   Pipe B is on
(II) intel(0):   Display plane B is now enabled and connected to pipe B.
(II) intel(0):   Output VGA is connected to pipe none
(II) intel(0):   Output LVDS is connected to pipe B
(II) intel(0):   Output TMDS-1 is connected to pipe none
(II) intel(0):   Output TV is connected to pipe none
(II) intel(0): [drm] mapped front buffer at 0xc1f9f000, handle = 0xc1f9f000
(II) intel(0): [drm] mapped back buffer at 0xc179f000, handle = 0xc179f000
(II) intel(0): [drm] mapped depth buffer at 0xc0f9f000, handle = 0xc0f9f000
(II) intel(0): [drm] mapped classic textures at 0xce000000, handle = 0xce000000
(II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
(**) Option "dpms"
(**) intel(0): DPMS enabled
(==) intel(0): Intel XvMC decoder disabled
(II) intel(0): Set up textured video
(II) intel(0): Set up overlay video
(II) intel(0): direct rendering: XF86DRI Enabled
(--) RandR disabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) AIGLX: enabled GLX_SGI_make_current_read
(II) AIGLX: enabled GLX_MESA_copy_sub_buffer
(II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
(II) AIGLX: enabled GLX_texture_from_pixmap with driver support
(II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
(II) GLX: Initialized DRI GL provider for screen 0
(II) intel(0): Setting screen physical size to 286 x 179
(II) config/hal: Adding input device Bluetooth Laser Travel Mouse
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
(**) Option "SendCoreEvents" "true"
(**) Bluetooth Laser Travel Mouse: always reports core events
(**) Bluetooth Laser Travel Mouse: Device: "/dev/input/event12"
(II) Bluetooth Laser Travel Mouse: Found 8 mouse buttons
(II) Bluetooth Laser Travel Mouse: Found x and y relative axes
(II) Bluetooth Laser Travel Mouse: Found scroll wheel(s)
(II) Bluetooth Laser Travel Mouse: Configuring as mouse
(**) Bluetooth Laser Travel Mouse: YAxisMapping: buttons 4 and 5
(**) Bluetooth Laser Travel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Bluetooth Laser Travel Mouse" (type: MOUSE)
(**) Bluetooth Laser Travel Mouse: (accel) keeping acceleration scheme 1
(**) Bluetooth Laser Travel Mouse: (accel) filter chain progression: 2.00
(**) Bluetooth Laser Travel Mouse: (accel) filter stage 0: 20.00 ms
(**) Bluetooth Laser Travel Mouse: (accel) set acceleration profile 0
(II) config/hal: Adding input device Macintosh mouse button emulation
(**) Option "SendCoreEvents" "true"
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event0"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
(**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
(**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
(**) Macintosh mouse button emulation: (accel) set acceleration profile 0
(II) config/hal: Adding input device appletouch
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
(II) Synaptics touchpad driver version 1.1.0
(--) appletouch auto-dev sets device to /dev/input/event10
(**) Option "Device" "/dev/input/event10"
(II) appletouch: x-axis range 0 - 1215
(II) appletouch: y-axis range 0 - 575
(II) appletouch: pressure range 0 - 300
(II) appletouch: finger width range 0 - 0
(II) appletouch: buttons: left double triple
(**) Option "SHMConfig" "true"
(**) Option "LeftEdge" "10"
(**) Option "RightEdge" "1200"
(**) Option "TopEdge" "10"
(**) Option "BottomEdge" "370"
(**) Option "FingerLow" "10"
(**) Option "FingerHigh" "20"
(**) Option "MaxTapTime" "180"
(**) Option "MaxTapMove" "220"
(**) Option "MaxDoubleTapTime" "180"
(**) Option "VertScrollDelta" "20"
(**) Option "HorizScrollDelta" "20"
(**) Option "VertEdgeScroll" "0"
(**) Option "HorizEdgeScroll" "0"
(**) Option "VertTwoFingerScroll" "1"
(**) Option "HorizTwoFingerScroll" "1"
(**) Option "LockedDrags" "off"
(**) Option "RTCornerButton" "0"
(**) Option "RBCornerButton" "0"
(**) Option "LTCornerButton" "0"
(**) Option "LBCornerButton" "0"
(**) Option "TapButton1" "1"
(**) Option "TapButton2" "3"
(**) Option "TapButton3" "2"
(**) Option "SingleTapTimeout" "100"
(**) Option "MinSpeed" "0.70"
(**) Option "MaxSpeed" "0.90"
(**) Option "AccelFactor" "0.08"
(--) appletouch touchpad found
(**) Option "SendCoreEvents" "true"
(**) appletouch: always reports core events
(II) XINPUT: Adding extended input device "appletouch" (type: TOUCHPAD)
(**) appletouch: (accel) keeping acceleration scheme 1
(**) appletouch: (accel) filter chain progression: 2.00
(**) appletouch: (accel) filter stage 0: 20.00 ms
(**) appletouch: (accel) set acceleration profile 0
(--) appletouch touchpad found
(II) config/hal: Adding input device Apple Computer Apple Internal Keyboard / Trackpad
(**) Option "SendCoreEvents" "true"
(**) Apple Computer Apple Internal Keyboard / Trackpad: always reports core events
(**) Apple Computer Apple Internal Keyboard / Trackpad: Device: "/dev/input/event8"
(II) Apple Computer Apple Internal Keyboard / Trackpad: Found keys
(II) Apple Computer Apple Internal Keyboard / Trackpad: Configuring as keyboard
(II) XINPUT: Adding extended input device "Apple Computer Apple Internal Keyboard / Trackpad" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "us"
(II) config/hal: Adding input device Video Bus
(**) Option "SendCoreEvents" "true"
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event5"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "us"
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): Using EDID range info for horizontal sync
(II) intel(0): Using EDID range info for vertical refresh
(II) intel(0): Printing DDC gathered Modelines:
(II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): Using hsync ranges from config file
(II) intel(0): Using vrefresh ranges from config file
(II) intel(0): Printing DDC gathered Modelines:
(II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): EDID vendor "APP", prod id 40031
(II) intel(0): Using hsync ranges from config file
(II) intel(0): Using vrefresh ranges from config file
(II) intel(0): Printing DDC gathered Modelines:
(II) intel(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.3 kHz)
(II) intel(0): EDID vendor "APP", prod id 40031
exaCopyDirty: Pending damage region empty!
(WW) Apple Computer Apple Internal Keyboard / Trackpad: unable to handle keycode 464
# Here I turn off the mouse.
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
# Here I turn it back on.
(II) config/hal: Adding input device Bluetooth Laser Travel Mouse
(**) Option "SendCoreEvents" "true"
(**) Bluetooth Laser Travel Mouse: always reports core events
(**) Bluetooth Laser Travel Mouse: Device: "/dev/input/event12"
(WW) Bluetooth Laser Travel Mouse: device file already in use. Ignoring.
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(II) UnloadModule: "evdev"
(EE) PreInit returned NULL for "Bluetooth Laser Travel Mouse"
(EE) config/hal: NewInputDeviceRequest failed (8)
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
# ...and so on with the above line. It gets written every time I do any
# sort of input, like use the trackpad, press a key, etc. (moving the
# Bluetooth mouse does NOT cause this)

Last edited by Peasantoid (2009-04-30 20:57:49)

Offline

#15 2009-04-30 21:22:05

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

grep EE /var/log/Xorg.0.log

Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#16 2009-05-02 00:33:09

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

Current Operating System: Linux poisson-rouge 2.6.29-ARCH #1 SMP PREEMPT Fri Apr 17 14:14:28 CEST 2009 x86_64
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(II) Loading extension MIT-SCREEN-SAVER
(EE) Unable to open evdev device "/dev/input/event12".
(EE) PreInit returned NULL for "Bluetooth Laser Travel Mouse"
(EE) config/hal: NewInputDeviceRequest failed (8)
(EE) Unable to open evdev device "/dev/input/event12".
(EE) PreInit returned NULL for "Bluetooth Laser Travel Mouse"
(EE) config/hal: NewInputDeviceRequest failed (8)
(EE) Unable to open evdev device "/dev/input/event12".
(EE) PreInit returned NULL for "Bluetooth Laser Travel Mouse"
(EE) config/hal: NewInputDeviceRequest failed (8)
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) PreInit returned NULL for "Bluetooth Laser Travel Mouse"
(EE) config/hal: NewInputDeviceRequest failed (8)
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device
(EE) Bluetooth Laser Travel Mouse: Read error: No such device

Interestingly, the "no such device" errors only occur after I turn the mouse back on.

Offline

#17 2009-05-02 02:08:31

Peasantoid
Member
Registered: 2009-04-26
Posts: 928
Website

Re: Bluetooth mouse works once, then doesn't ever again until I reboot.

Uh... I just updated (pacman -Syu) and the problem fixed itself. HAL was in the list of packages to be upgraded.

Well, that's cool...huh...

Offline

Board footer

Powered by FluxBB