Comment 35 for bug 436729

Revision history for this message
erlguta (gonzalomarcote) wrote : Re: [Dell Inc. Inspiron 910] suspend/resume failure [non-free: wl]

I think this bug is related with this one:
https://bugs.launchpad.net/ubuntu/karmic/+source/linux/+bug/424877

It seems that it is independent from hardware model. The systems complety hangs up if you try to suspend with one MicroSD inserted.

Is the workaround mentioned in #424877 bug, of installing 'linux-backports-modules-karmic' and adding GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pciehp.pciehp_force=1" to /etc/default/grub solving this bug?.

or perhaps someone simply forgot to put in karmic one script in /etc/pm/sleep.d/ or /usr/lib/pm-utils/sleep.d/ like this:
case "$1" in
    hibernate|suspend)
        umount /path/to/SD_Card
        ;;
    resume|thaw)
        mount /path/to/SD_Card /mount/point/
        ;;
    *) exit 0
        ;;
    esac

Somebody can say something about this bug, please?