mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5079 311d38ba-8fff-0310-9ca6-ca027cbcb966
14 lines
317 B
Bash
14 lines
317 B
Bash
#! /bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: save-rtc
|
|
# Required-Start:
|
|
# Required-Stop: $local_fs hwclock
|
|
# Default-Start: S
|
|
# Default-Stop: 0 6
|
|
# Short-Description: Store system clock into file
|
|
# Description:
|
|
### END INIT INFO
|
|
|
|
# Update the timestamp
|
|
date +%Y%m%d%2H%2M > /etc/timestamp2
|