Comment 2 for bug 459376

Revision history for this message
Michael Vogt (mvo) wrote :

The problem is that the gdm upstart file has:

script
...
    # Check kernel command-line for inhibitors
    for ARG in $(cat /proc/cmdline)
    do
        case "${ARG}" in
            text|-s|s|S|single)
                exit 0
                ;;
        esac
    done
...
end script

Combined with friendly-recovery just doing a "exit" on resume. To fix we need to change the upstart script and
make friendly recovery emit that we are now resuming.