Glad to hear unloading the module works as a workaround. Yes, it will
have to be done before every suspend.

Looking at:
https://wiki.archlinux.org/index.php/Pm-utils#Creating_your_own_hooks

this should be able to automate that:

#!/bin/bash
case $1 in
    hibernate)
        modprobe -r ath5k
        ;;
    suspend)
        modprobe -r ath5k
        ;;
    thaw)
        modprobe ath5k
        ;;
    resume)
        modprobe ath5k
        ;;
    *)  echo "somebody is calling me totally wrong."
        ;;
esac

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/769092

Title:
  Atheros  AR5001 [168c:001c] Wifi not working after suspend/resume

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to