1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 02:00:04 +00:00

initscripts: Add save-rtc script and ALSA manual devices table from OE.dev

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@921 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2006-11-21 12:19:17 +00:00
parent ad790e96c6
commit e38a607f95
3 changed files with 41 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
#! /bin/sh
#
# Copyright Matthias Hentges <devel@hentges.net> (c) 2006
# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
#
# Filename: save-rtc.sh
# Date: 03-Jul-06
# Update the timestamp, if there is already one
if test -e /etc/timestamp
then
echo "Will restore RCT from /etc/timestamp on next boot"
echo "Delete that file to disable this feature."
date +%2m%2d%2H%2M%Y > /etc/timestamp
fi