Summary: | bluetooth stops working on sleep/resume | ||
---|---|---|---|
Product: | [Unmaintained] solid | Reporter: | Jonathan Challinger <mr.challinger> |
Component: | bluetooth-daemon | Assignee: | Alex Fiestas <afiestas> |
Status: | RESOLVED UPSTREAM | ||
Severity: | normal | CC: | lamarque |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jonathan Challinger
2012-01-22 07:31:19 UTC
grepping syslog for "blue" returns the same stuff on every sleep cycle. The only error message is this: < Jan 22 11:31:30 jon-laptop pulseaudio[2416]: [pulseaudio] bluetooth-util.c: Error from RegisterEndpoint reply: org.freedesktop.DBus.Error.UnknownMethod I'm looking for anything else I can do to find the source of the problem. The following solution worked for me, but I still think the bug is kde-related: jschall@jon-laptop:~$ cat /etc/pm/sleep.d/49bluetooth #!/bin/sh case $1 in suspend|suspend_hybrid|hibernate) /etc/init.d/bluetooth stop ;; resume|thaw) bash -c "sleep 2;/etc/init.d/bluetooth start"& ;; This bug was upstream (BlueZ), seems to be fixed: https://bugzilla.redhat.com/show_bug.cgi?id=733230 https://bbs.archlinux.org/viewtopic.php?id=122936 https://lists.ubuntu.com/archives/ubuntu-bluetooth/2011-July/010356.html Many more out there. So, I'm going to close this bug, if I'm mistaken and you can reproduce this with a distro with modern packages (arch, kubuntu 12.04) please don't hesitate on reopening the bug ! |