blob: cbef45362d1286fe1a0378bf7a53fa7e590aa001 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# vim:set ft=sh:
install ()
{
MODULES=""
BINARIES=""
FILES=""
SCRIPT="resume"
}
help ()
{
cat<<HELPEOF
This hook initializes support for resuming from Disk.
Supports swsusp and suspend2.
HELPEOF
}
|