summaryrefslogtreecommitdiffstats
path: root/meta/packages/initscripts/initscripts-1.0
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-21 12:19:17 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-21 12:19:17 +0000
commite38a607f952a255a1f3b2e42f722b6ceabeb5396 (patch)
treee827ef6d051ac0025dc46c6de52a6d82566cbc5d /meta/packages/initscripts/initscripts-1.0
parentad790e96c6264a8a2007855fdab5f16aa37745fa (diff)
downloadpoky-e38a607f952a255a1f3b2e42f722b6ceabeb5396.tar.gz
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
Diffstat (limited to 'meta/packages/initscripts/initscripts-1.0')
-rw-r--r--meta/packages/initscripts/initscripts-1.0/device_table.txt18
-rw-r--r--meta/packages/initscripts/initscripts-1.0/save-rtc.sh16
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/packages/initscripts/initscripts-1.0/device_table.txt b/meta/packages/initscripts/initscripts-1.0/device_table.txt
index 35560b4025..a302c5aca3 100644
--- a/meta/packages/initscripts/initscripts-1.0/device_table.txt
+++ b/meta/packages/initscripts/initscripts-1.0/device_table.txt
@@ -160,6 +160,24 @@
160/dev/smtpe2 c 640 0 0 35 130 - - - 160/dev/smtpe2 c 640 0 0 35 130 - - -
161/dev/smtpe3 c 640 0 0 35 131 - - - 161/dev/smtpe3 c 640 0 0 35 131 - - -
162/dev/sndstat c 660 0 29 14 6 - - - 162/dev/sndstat c 660 0 29 14 6 - - -
163/dev/snd/seq c 660 0 0 116 1 - - -
164/dev/snd/timer c 660 0 0 116 33 - - -
165/dev/snd/controlC0 c 660 0 0 116 0 - - -
166/dev/snd/controlC1 c 660 0 0 116 32 - - -
167/dev/snd/controlC2 c 660 0 0 116 64 - - -
168/dev/snd/controlC3 c 660 0 0 116 96 - - -
169/dev/snd/hwC0D0 c 660 0 0 116 4 - - -
170/dev/snd/hwC0D1 c 660 0 0 116 5 - - -
171/dev/snd/hwC0D2 c 660 0 0 116 6 - - -
172/dev/snd/hwC0D3 c 660 0 0 116 7 - - -
173/dev/snd/pcmC0D0c c 660 0 0 116 24 - - -
174/dev/snd/pcmC0D0p c 660 0 0 116 16 - - -
175/dev/snd/pcmC0D1c c 660 0 0 116 25 - - -
176/dev/snd/pcmC0D1p c 660 0 0 116 17 - - -
177/dev/snd/pcmC0D2c c 660 0 0 116 26 - - -
178/dev/snd/pcmC0D2p c 660 0 0 116 18 - - -
179/dev/snd/pcmC0D3c c 660 0 0 116 27 - - -
180/dev/snd/pcmC0D3p c 660 0 0 116 19 - - -
163/dev/st0 c 660 0 11 9 0 - - - 181/dev/st0 c 660 0 11 9 0 - - -
164/dev/st0a c 660 0 11 9 96 - - - 182/dev/st0a c 660 0 11 9 96 - - -
165/dev/st0l c 660 0 11 9 32 - - - 183/dev/st0l c 660 0 11 9 32 - - -
diff --git a/meta/packages/initscripts/initscripts-1.0/save-rtc.sh b/meta/packages/initscripts/initscripts-1.0/save-rtc.sh
new file mode 100644
index 0000000000..d06aa6d569
--- /dev/null
+++ b/meta/packages/initscripts/initscripts-1.0/save-rtc.sh
@@ -0,0 +1,16 @@
1#! /bin/sh
2#
3# Copyright Matthias Hentges <devel@hentges.net> (c) 2006
4# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)
5#
6# Filename: save-rtc.sh
7# Date: 03-Jul-06
8
9
10# Update the timestamp, if there is already one
11if test -e /etc/timestamp
12then
13 echo "Will restore RCT from /etc/timestamp on next boot"
14 echo "Delete that file to disable this feature."
15 date +%2m%2d%2H%2M%Y > /etc/timestamp
16fi