summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-connectivity/irda-utils/irda-utils-0.9.18
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-connectivity/irda-utils/irda-utils-0.9.18')
-rwxr-xr-xmeta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init80
1 files changed, 80 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init b/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init
new file mode 100755
index 0000000000..63750f187c
--- /dev/null
+++ b/meta/recipes-connectivity/irda-utils/irda-utils-0.9.18/init
@@ -0,0 +1,80 @@
1#! /bin/sh
2### BEGIN INIT INFO
3# Provides: irda
4# Required-Start: $network $remote_fs
5# Required-Stop: $network $remote_fs
6# Default-Start: 2 3 4 5
7# Default-Stop: 0 1 6
8# Short-Description: Infrared port support
9### END INIT INFO
10
11module_id() {
12 awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo
13}
14
15if [ ! -f /etc/sysconfig/irda ]; then
16
17 case `module_id` in
18 "HP iPAQ H2200" | "HP iPAQ HX4700" | "HTC Universal")
19 IRDA=yes
20 DEVICE=/dev/ttyS2
21 DONGLE=
22 DISCOVERY=
23 ;;
24 *)
25 IRDA=yes
26 DEVICE=/dev/ttyS1
27 DONGLE=
28 DISCOVERY=
29 ;;
30 esac
31
32 mkdir -p /etc/sysconfig
33 echo "IRDA=$IRDA" > /etc/sysconfig/irda
34 if [ $IRDA = "yes" ]; then
35 echo "DEVICE=$DEVICE" >> /etc/sysconfig/irda
36 echo "DONGLE=$DONGLE" >> /etc/sysconfig/irda
37 echo "DISCOVERY=$DISCOVERY" >> /etc/sysconfig/irda
38 fi
39fi
40
41. /etc/sysconfig/irda
42
43# Check that irda is up.
44[ ${IRDA} = "no" ] && exit 0
45
46[ -f /usr/sbin/irattach ] || exit 0
47
48ARGS=
49if [ $DONGLE ]; then
50 ARGS="$ARGS -d $DONGLE"
51fi
52if [ "$DISCOVERY" = "yes" ];then
53 ARGS="$ARGS -s"
54fi
55
56case "$1" in
57 start)
58 echo -n "Starting IrDA: "
59 irattach ${DEVICE} ${ARGS} > /dev/null 2>&1 &
60 echo "$NAME."
61 ;;
62 stop)
63 echo -n "Stopping IrDA: "
64 killall irattach > /dev/null 2>&1
65 echo "$NAME."
66 ;;
67 restart|force-reload)
68 echo -n "Restarting IrDA: "
69 irattach ${DEVICE} ${ARGS} > /dev/null 2>&1 &
70 sleep 1
71 killall irattach > /dev/null 2>&1
72 echo "$NAME."
73 ;;
74 *)
75 N=/etc/init.d/$NAME
76 echo "Usage: $N {start|stop|restart|force-reload}" >&2
77 exit 1
78 ;;
79esac
80