diff options
author | Ross Burton <ross@openedhand.com> | 2008-07-03 15:27:51 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-07-03 15:27:51 +0000 |
commit | 8499da7f6b721d9d57a2637c9fa10469d51e0c08 (patch) | |
tree | 53e5413414aba24341ff61a692108f6beca51acc /meta | |
parent | 8c28cb514d76a5deb86bbd6aef97bce6dfd659a6 (diff) | |
download | poky-8499da7f6b721d9d57a2637c9fa10469d51e0c08.tar.gz |
busybox: add init script depends
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4808 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/busybox/busybox_1.9.1.bb | 2 | ||||
-rw-r--r-- | meta/packages/busybox/files/hwclock.sh | 12 | ||||
-rw-r--r-- | meta/packages/busybox/files/syslog | 13 |
3 files changed, 20 insertions, 7 deletions
diff --git a/meta/packages/busybox/busybox_1.9.1.bb b/meta/packages/busybox/busybox_1.9.1.bb index cec4af8d59..acef718276 100644 --- a/meta/packages/busybox/busybox_1.9.1.bb +++ b/meta/packages/busybox/busybox_1.9.1.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | require busybox.inc | 1 | require busybox.inc |
2 | PR = "r4" | 2 | PR = "r6" |
3 | 3 | ||
4 | SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ | 4 | SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ |
5 | http://busybox.net/downloads/fixes-1.9.1/busybox-1.9.1-lineedit.patch;patch=1 \ | 5 | http://busybox.net/downloads/fixes-1.9.1/busybox-1.9.1-lineedit.patch;patch=1 \ |
diff --git a/meta/packages/busybox/files/hwclock.sh b/meta/packages/busybox/files/hwclock.sh index 5acfb9fb24..2e50425ba8 100644 --- a/meta/packages/busybox/files/hwclock.sh +++ b/meta/packages/busybox/files/hwclock.sh | |||
@@ -1,6 +1,14 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # hwclock.sh Set system clock to hardware clock, according to the UTC | 2 | ### BEGIN INIT INFO |
3 | # setting in /etc/default/rcS (see also rcS(5)). | 3 | # Provides: hwclock |
4 | # Required-Start: | ||
5 | # Required-Stop: $local_fs | ||
6 | # Default-Start: S | ||
7 | # Default-Stop: 0 6 | ||
8 | # Short-Description: Set system clock | ||
9 | # Description: Set system clock to hardware clock, according to the UTC | ||
10 | # setting in /etc/default/rcS (see also rcS(5)). | ||
11 | ### END INIT INFO | ||
4 | # | 12 | # |
5 | # WARNING: If your hardware clock is not in UTC/GMT, this script | 13 | # WARNING: If your hardware clock is not in UTC/GMT, this script |
6 | # must know the local time zone. This information is | 14 | # must know the local time zone. This information is |
diff --git a/meta/packages/busybox/files/syslog b/meta/packages/busybox/files/syslog index a999565e84..544524b26c 100644 --- a/meta/packages/busybox/files/syslog +++ b/meta/packages/busybox/files/syslog | |||
@@ -1,8 +1,13 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # | 2 | ### BEGIN INIT INFO |
3 | # syslog init.d script for busybox syslogd/klogd | 3 | # Provides: sysklogd |
4 | # Written by Robert Griebl <sandman@handhelds.org> | 4 | # Required-Start: $remote_fs $time |
5 | # Configuration file added by <bruno.randolf@4g-systems.biz> | 5 | # Required-Stop: $remote_fs $time |
6 | # Default-Start: 2 3 4 5 | ||
7 | # Default-Stop: 0 1 6 | ||
8 | # Short-Description: System logger | ||
9 | ### END INIT INFO | ||
10 | |||
6 | set -e | 11 | set -e |
7 | 12 | ||
8 | if [ -f /etc/syslog.conf ]; then | 13 | if [ -f /etc/syslog.conf ]; then |