I had this problem, too.
Thanks to you guys I now have a workaround to share:

I created /etc/pm/sleep.d/20_umount-fat with the content below and did a 'chmod 
755' on it.
YMMV...

#!/bin/sh

case "${1}" in
        suspend|hibernate)
          for MOUNTPOINT in `mount | grep vfat | awk '{print $3}'` ;
          do
            umount $MOUNTPOINT ;
          done
                ;;
        resume|thaw)
                        # nothing
                ;;
esac

-- 
suspend to RAM crash when SD card filesystem mounted
https://bugs.launchpad.net/bugs/468298
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