blob: d261aad6b83a3061a4d1ec37369453fbb2ffcc9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
build() {
SCRIPT="resume"
}
help() {
cat <<HELPEOF
This hook initializes support for resuming from Disk. Supports swsusp and
suspend2.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
|