You are not logged in.

#1 2012-01-04 01:28:16

gr1mE
Member
Registered: 2012-01-04
Posts: 7

Bluetooth does not work after resume from Suspend - HP Elitebook 8540p

Whenever I resume from suspend, my bluetooth is unusuable until I restart the daemon in my terminal. The modules are all loaded and everything when I wake up the notebook.

Any ideas would be very much appreciated, cheers

Offline

#2 2012-01-11 07:32:07

abhinandh
Member
Registered: 2008-03-07
Posts: 29

Re: Bluetooth does not work after resume from Suspend - HP Elitebook 8540p

Same problem on my HP envy 14. Couldn't find a fix but for the timebeing, I set pm config to switch off bluetooth when going into suspend mode and switch on when resume.

Create a file /etc/pm/sleep.d/49bluetooth

!/bin/bash
case $1 in
    hibernate|suspend)
        rfkill block bluetooth
	;;
    resume|thaw)
        rfkill unblock bluetooth
	;;
    *)  
        ;;
esac

Just make sure rfkill is installed. Works like a charm. Only downside is if bluetooth already is switched off before suspend, I gets turned on after resume.

Offline

#3 2012-01-11 13:13:16

caskale13c
Member
From: Colleyville, TX, US
Registered: 2008-12-29
Posts: 33

Re: Bluetooth does not work after resume from Suspend - HP Elitebook 8540p

I had this problem too unltil last night's bluez update to 4.97-1.  Maybe it fixed it for you as well.

Offline

Board footer

Powered by FluxBB