summaryrefslogtreecommitdiffstats
path: root/hooks/resume
blob: bec926e5643e966772ad238a9455ac2fdc3384fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# vim:set ft=sh:
run_hook ()
{
    fmtdevice () { echo "${1}:${2}"; }
    if [ -e /sys/power/resume ]; then
        if [ -e "${resume}" ]; then
            dev_t=$( /bin/parseblock "${resume}" )
            fmtdevice ${dev_t} > /sys/power/resume
        fi

        [ -e /proc/suspend2 ] && echo "" > /proc/suspend2/do_resume
    fi
}