summaryrefslogtreecommitdiff
path: root/pm/sleep.d/01grub
blob: 4500c395bfdf2f1dced82414fae63ac08e39a9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

default_resume_kernel()
{
    case $(uname -m) in
	i?86|x86_64|athlon)
	    ;;
	*) # this is only valid for x86 and x86_64
	    return 1
    esac

    [ -x /sbin/grubby -a -x /sbin/grub ] || return 1
    [ -e "/boot/vmlinuz-$(uname -r)" ] || return 1

    out=$(/sbin/grubby --info /boot/vmlinuz-$(uname -r) |grep index)
    [ -n "${out}" ] || return 1
    current=${out#index=}
    echo "savedefault --default=${current} --once" | /sbin/grub --batch --no-floppy --device-map=/boot/grub/device.map --no-curses >/dev/null

    return 0
}

RETVAL=0
case "$1" in
	hibernate)
		default_resume_kernel
		RETVAL=$?
		;;
	*)
		;;
esac

exit $RETVAL