Comment 27 for bug 823467

Revision history for this message
Jacques (jacques-eavr) wrote :

Hi,

I have OO 64 bits on a EEEPC 1015PX with the latest updates (bluez 4.96-0ubuntu4) and i still have this bug.

My workaround is to add this file in /etc/pm/sleep.d/ :

cat 99_bluetooth_WA

#!/bin/sh

# Action script that restarts BT on EEE PC
# platform to work around a bug
#
# Copyright: Copyright (c) 2009 Michael Vogt
# License: GPL-2
#

PATH=/sbin:/usr/sbin:/bin:/usr/bin

case "${1}" in
        hibernate)
          # nothing
                ;;
        resume|thaw)
  /etc/init.d/bluetooth restart
                ;;
esac