summaryrefslogtreecommitdiff
path: root/meta/recipes-support/hal/files/20hal
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-07 10:53:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-12 14:10:34 +0100
commit72c010af2c0fe967a5cacc7fbdba75c3ea3e5c3a (patch)
treecaf2b1be1512228c6be2d727a801d245f23b3994 /meta/recipes-support/hal/files/20hal
parent4e95c177c4d0ee593945fd020f8d0c22810d8956 (diff)
downloadopenembedded-core-72c010af2c0fe967a5cacc7fbdba75c3ea3e5c3a.tar.gz
openembedded-core-72c010af2c0fe967a5cacc7fbdba75c3ea3e5c3a.tar.bz2
openembedded-core-72c010af2c0fe967a5cacc7fbdba75c3ea3e5c3a.tar.xz
openembedded-core-72c010af2c0fe967a5cacc7fbdba75c3ea3e5c3a.zip
hal/hal-info: This is unsed in OE-Core and deprecated, drop
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/hal/files/20hal')
-rwxr-xr-xmeta/recipes-support/hal/files/20hal58
1 files changed, 0 insertions, 58 deletions
diff --git a/meta/recipes-support/hal/files/20hal b/meta/recipes-support/hal/files/20hal
deleted file mode 100755
index 5b97c4f9e..000000000
--- a/meta/recipes-support/hal/files/20hal
+++ /dev/null
@@ -1,58 +0,0 @@
-#! /bin/sh
-#
-# hal Start the Daemon that stores device informations
-# for the Hardware abstraction layer
-#
-# Written by Martin Waitz based on skeleton code
-# written by Miquel van Smoorenburg <miquels@cistron.nl>.
-# Modified for Debian
-# by Ian Murdock <imurdock@gnu.ai.mit.edu>.
-#
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-DAEMON=/usr/sbin/hald
-PIDDIR=/var/run/hald
-PIDFILE=$PIDDIR/hald.pid
-NAME=hald
-DAEMONUSER=haldaemon
-DESC="Hardware abstraction layer"
-
-test -x $DAEMON || exit 0
-
-set -e
-
-do_start() {
- if [ ! -d $PIDDIR ]; then
- mkdir -p $PIDDIR
- chown $DAEMONUSER:$DAEMONUSER $PIDDIR
- fi
- echo "Starting $DESC" "$NAME"
- start-stop-daemon --start --pidfile $PIDFILE \
- --exec $DAEMON -- $DAEMON_OPTS
-}
-
-do_stop() {
- echo "Stopping $DESC" "$NAME"
- start-stop-daemon --stop --quiet --pidfile $PIDFILE \
- --exec $DAEMON
-}
-
-case "$1" in
- start)
- do_start
- ;;
- stop)
- do_stop
- ;;
- restart|force-reload)
- do_stop
- sleep 5
- do_start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0