Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Evergreen:11.4
suspend
mkinitrd-boot.userspace.sh
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File mkinitrd-boot.userspace.sh of Package suspend
#!/bin/bash # #%stage: filesystem #%provides: resume #%depends: dump # #%if: -x /usr/sbin/resume -o -x /sbin/resume #%programs: /sbin/resume # ##### software suspend resume ## ## If software suspending has suspended the computer before ## this script tries to resume it to the state ## it was before. ## This is the implementation using a userspace program. ## ## Command line parameters ## ----------------------- ## ## resume the device to resume from ## [ "$noresume" ] && resume_mode=off # Verify manual resume mode if [ "$resume_mode" != "off" -a -n "$resumedev" ]; then if [ -x /sbin/resume -o -w /sys/power/resume ]; then echo "Trying manual resume from $resumedev" resume_mode=1 else resumedev= fi fi discover_user_resume() { local resume devn major minor if [ ! -f /sys/power/resume ] ; then return fi if [ ! -e "$resumedev" ] ; then echo "resume device $resumedev not found (ignoring)" return fi # Waits for the resume device to appear if [ "$resume_mode" != "off" ]; then if [ -x /sbin/resume ]; then echo "Invoking userspace resume from $resumedev" [ -f /proc/splash ] && read procsplash < /proc/splash case "$procsplash" in *silent*) # if the version of "resume" is not new enough, "-P" will fail. /sbin/resume -P 'splash = y' $resumedev || /sbin/resume $resumedev ;; *) /sbin/resume -P 'splash = n' $resumedev || /sbin/resume $resumedev ;; esac fi fi } wait_for_events # Check for a resume device discover_user_resume unset discover_user_resume
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor