aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init
blob: b8038e08a30441dfba3f3b703887630572891c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#! /bin/sh
### BEGIN INIT INFO
# Provides:          irda
# Required-Start:    $network $remote_fs
# Required-Stop:     $network $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Infrared port support
### END INIT INFO

# Source function library.
. /etc/init.d/functions

module_id() {
        awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
}

if [ ! -f /etc/sysconfig/irda ]; then
    case `module_id` in
	"HP iPAQ H2200" | "HP iPAQ HX4700" | "HTC Universal")
	    IRDA=yes
	    DEVICE=/dev/ttyS2
	    DONGLE=
	    DISCOVERY=
	    ;;
	*)
	    IRDA=yes
	    DEVICE=/dev/ttyS1
	    DONGLE=
	    DISCOVERY=
	    ;;
    esac
else
    . /etc/sysconfig/irda
fi

# Check that irda is up.
[ ${IRDA} = "no" ] && exit 0

[ -f /usr/sbin/irattach ] || exit 0

ARGS=
if [ $DONGLE ]; then
	ARGS="$ARGS -d $DONGLE"
fi
if [ "$DISCOVERY" = "yes" ];then
	ARGS="$ARGS -s"
fi

case "$1" in
  start)
        echo -n "Starting IrDA: "
		irattach ${DEVICE} ${ARGS} > /dev/null 2>&1 &
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping IrDA: "
		killall irattach > /dev/null 2>&1
        echo "$NAME."
        ;;
  restart|force-reload)
        echo -n "Restarting IrDA: "
		irattach ${DEVICE} ${ARGS} > /dev/null 2>&1 &
        sleep 1
		killall irattach > /dev/null 2>&1
        echo "$NAME."
        ;;
  status)
	status irattach
	exit $?
	;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
        exit 1
        ;;
esac