summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bluez5/bluez5
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2015-11-10 21:24:58 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-11-25 08:08:15 +0000
commit1732a8a92477db4842780e15268a0320287762c2 (patch)
treea2037d403791f8d66a8f25b2442382097c73a1d3 /meta/recipes-connectivity/bluez5/bluez5
parent160fdd846e4f8b3d5bb15dd7c9a07f4ee16a7479 (diff)
downloadpoky-1732a8a92477db4842780e15268a0320287762c2.tar.gz
bluez5: enable sysvinit support
This is from Shrikant Bobade <Shrikant_Bobade@mentor.com>. (From OE-Core rev: f4c16f53af27ad459e77ae7f43e7bf1bad70645a) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bluez5/bluez5')
-rw-r--r--meta/recipes-connectivity/bluez5/bluez5/init68
1 files changed, 68 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5/init b/meta/recipes-connectivity/bluez5/bluez5/init
new file mode 100644
index 0000000000..1606a5c663
--- /dev/null
+++ b/meta/recipes-connectivity/bluez5/bluez5/init
@@ -0,0 +1,68 @@
1#!/bin/sh
2
3PATH=/sbin:/bin:/usr/sbin:/usr/bin
4DESC=bluetooth
5
6DAEMON=/usr/lib/bluez5/bluetooth/bluetoothd
7
8# If you want to be ignore error of "org.freedesktop.hostname1",
9# please enable NOPLUGIN_OPTION.
10# NOPLUGIN_OPTION="--noplugin=hostname"
11NOPLUGIN_OPTION=""
12SSD_OPTIONS="--oknodo --quiet --exec $DAEMON -- $NOPLUGIN_OPTION"
13
14test -f $DAEMON || exit 0
15
16# FIXME: any of the sourced files may fail if/with syntax errors
17test -f /etc/default/bluetooth && . /etc/default/bluetooth
18test -f /etc/default/rcS && . /etc/default/rcS
19
20set -e
21
22case $1 in
23 start)
24 echo "Starting $DESC"
25
26 if test "$BLUETOOTH_ENABLED" = 0; then
27 echo "disabled. see /etc/default/bluetooth"
28 exit 0
29 fi
30
31 start-stop-daemon --start --background $SSD_OPTIONS
32 echo "${DAEMON##*/}"
33
34 ;;
35 stop)
36 echo "Stopping $DESC"
37 if test "$BLUETOOTH_ENABLED" = 0; then
38 echo "disabled."
39 exit 0
40 fi
41 start-stop-daemon --stop $SSD_OPTIONS
42 echo "${DAEMON}"
43 ;;
44 restart|force-reload)
45 $0 stop
46 sleep 1
47 $0 start
48 ;;
49 status)
50 pidof ${DAEMON} >/dev/null
51 status=$?
52 if [ $status -eq 0 ]; then
53 echo "bluetooth is running."
54 else
55 echo "bluetooth is not running"
56 fi
57 exit $status
58 ;;
59 *)
60 N=/etc/init.d/bluetooth
61 echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
62 exit 1
63 ;;
64esac
65
66exit 0
67
68# vim:noet