diff --git a/board/coreboot/rootfs-additions/sbin/suspend b/board/coreboot/rootfs-additions/sbin/suspend new file mode 100755 index 0000000..810b081 --- /dev/null +++ b/board/coreboot/rootfs-additions/sbin/suspend @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ -e /sys/power/state ]; then + echo mem > /sys/power/state +else + echo "System power state missing" + exit 1 +fi + +exit $?