From: Andrey Borzenkov <arvidjaar-JGs/UdohzUI@public.gmane.org>
To: initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [PATCH] Add user suspend support
Date: Sat, 9 Jan 2010 18:59:15 +0300 [thread overview]
Message-ID: <201001091859.15780.arvidjaar@mail.ru> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 930 bytes --]
Attached patch adds use mode suspend support. Currently dracut won't
resume after s2disk. There are several points that likely need
discussion.
1. Command like parsing partially duplicates that of 95resume. Both are
using the same parameter resume=; and I'd like to make sure each one is
self contained in case other module is disabled. Alternative probably is
a) make 95uswsusp install file from 95resume under the same name
b) supply resume= parsing like some (library) file outside of these
modules and make both of them install it
I do not particular care one way or other except currently dracut stops
to ask me whether file should be overwritten. This will break non-
interactive usage.
2. Location of resume binary may well be system dependant
3. Splashed handling is rather biased toward plymouth and how I
understand it (i.e. - either splash everywhere or nowhere).
Comments welcome :)
[-- Attachment #1.2: uswsusp --]
[-- Type: message/rfc822, Size: 2434 bytes --]
From: Andrey Borzenkov <arvidjaar-JGs/UdohzUI@public.gmane.org>
Subject: [PATCH] Add user suspend support
This patch adds support for user mode suspend to disk. It is installed
in parallel to kernel mode suspend module; either will fail if
system was not suspended using correct tool so next one can be tried.
Signed-off-by: Andrey Borzenkov <arvidjaar-JGs/UdohzUI@public.gmane.org>
---
modules.d/95uswsusp/check | 2 ++
modules.d/95uswsusp/install | 6 ++++++
modules.d/95uswsusp/parse-uswsusp.sh | 20 ++++++++++++++++++++
modules.d/95uswsusp/resume-uswsusp.sh | 11 +++++++++++
4 files changed, 39 insertions(+), 0 deletions(-)
create mode 100755 modules.d/95uswsusp/check
create mode 100755 modules.d/95uswsusp/install
create mode 100755 modules.d/95uswsusp/parse-uswsusp.sh
create mode 100755 modules.d/95uswsusp/resume-uswsusp.sh
diff --git a/modules.d/95uswsusp/check b/modules.d/95uswsusp/check
new file mode 100755
index 0000000..ba95479
--- /dev/null
+++ b/modules.d/95uswsusp/check
@@ -0,0 +1,2 @@
+#!/bin/sh
+[ -x /usr/sbin/resume ]
diff --git a/modules.d/95uswsusp/install b/modules.d/95uswsusp/install
new file mode 100755
index 0000000..f8afe3a
--- /dev/null
+++ b/modules.d/95uswsusp/install
@@ -0,0 +1,6 @@
+#!/bin/bash
+inst /usr/sbin/resume
+[ -f /etc/suspend.conf ] && inst /etc/suspend.conf
+
+inst_hook cmdline 10 "$moddir/parse-uswsusp.sh"
+inst_hook mount 10 "$moddir/resume-uswsusp.sh"
diff --git a/modules.d/95uswsusp/parse-uswsusp.sh b/modules.d/95uswsusp/parse-uswsusp.sh
new file mode 100755
index 0000000..7a0925f
--- /dev/null
+++ b/modules.d/95uswsusp/parse-uswsusp.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+if resume=$(getarg resume=) && ! getarg noresume; then
+ export resume
+else
+ unset resume
+fi
+
+case "$resume" in
+ LABEL=*)
+ resume="$(echo $resume | sed 's,/,\\x2f,g')"
+ resume="/dev/disk/by-label/${resume#LABEL=}" ;;
+ UUID=*)
+ resume="/dev/disk/by-uuid/${resume#UUID=}" ;;
+esac
+
+if splash=$(getarg splash=); then
+ export splash
+else
+ unset splash
+fi
diff --git a/modules.d/95uswsusp/resume-uswsusp.sh b/modules.d/95uswsusp/resume-uswsusp.sh
new file mode 100755
index 0000000..9b18567
--- /dev/null
+++ b/modules.d/95uswsusp/resume-uswsusp.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+case "$splash" in
+ quiet )
+ a_splash="-P splash=y"
+ ;;
+ * )
+ a_splash="-P splash=n"
+ ;;
+esac
+
+/usr/sbin/resume $a_splash "$resume"
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
next reply other threads:[~2010-01-09 15:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-09 15:59 Andrey Borzenkov [this message]
[not found] ` <201001091859.15780.arvidjaar-JGs/UdohzUI@public.gmane.org>
2010-01-18 9:11 ` [PATCH] Add user suspend support Harald Hoyer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201001091859.15780.arvidjaar@mail.ru \
--to=arvidjaar-jgs/udohzui@public.gmane.org \
--cc=initramfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox