mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 03:32:12 +02:00
235 B
235 B
#!/bin/sh
Preserve the system clock around suspend/resume.
INIT="/etc/init.d/hwclock.sh" [ -x "${INIT}" ] || exit 0
case "${1},${2}" in (suspend,*) "${INIT}" stop ;; (resume,suspend) "${INIT}" start ;; esac
exit 0