Comment 82 for bug 1415880

Revision history for this message
Grzegorz Bartman (grzegorz-bartman) wrote :

I have some workaround (distable/enable wl module when suspend)

- check this http://askubuntu.com/questions/620494/ubuntu-15-04-suspend-doesnt-run-pm-suspend (needed for 15.04 or higher)
- in /etc/pm/sleep.d create file with some name (for example 01_wifi_wl) with content:

=========================
#!/bin/bash

case "$1" in
    suspend)
 modprobe -r wl
        ;;
    resume)
 modprobe wl
        ;;
    *)
        ;;
esac
=========================