i added a hook in /ect/pm/sleep.d/11_mmc_mounts

#!/bin/sh
# mmcard must be mounted or unmounted before suspend | hibinate
case "$1" in
        hibernate|suspend)
                umount /dev/mmcblk0p1
                ;;
        thaw|resume) 
                mount /dev/mmcblk0p1
                ;;
        *) exit 0
                ;;
esac

chmod +x /ect/pm/sleep.d/11_mmc_mounts

end of problem, though perhaps i should be smarter about running through
mm cards, and cards which wont unmount

-- 
[Acer Aspire one] suspend/resume failure
https://bugs.launchpad.net/bugs/424877
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

Reply via email to