summaryrefslogtreecommitdiff
path: root/meta/packages/irda-utils/files
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2010-06-25 15:15:04 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-06-30 13:11:28 +0100
commita1fb73e5883b3f4353845f4b5c927093885a85c0 (patch)
tree190169d0eae1bfc0426086262c67556d5b442b91 /meta/packages/irda-utils/files
parent01c5b29bf8274f2f5e888ef6d5a05cebf2f24ef8 (diff)
downloadopenembedded-core-a1fb73e5883b3f4353845f4b5c927093885a85c0.tar.gz
openembedded-core-a1fb73e5883b3f4353845f4b5c927093885a85c0.tar.bz2
openembedded-core-a1fb73e5883b3f4353845f4b5c927093885a85c0.tar.xz
openembedded-core-a1fb73e5883b3f4353845f4b5c927093885a85c0.zip
irda-utils: upgraded to version 0.9.18
Removed irdadump patches configure.patch and m4.patch because the new version doesn't use autotool for irdadump. Change the local file directory name to ${PN}-${PV} Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/packages/irda-utils/files')
-rwxr-xr-xmeta/packages/irda-utils/files/init80
1 files changed, 0 insertions, 80 deletions
diff --git a/meta/packages/irda-utils/files/init b/meta/packages/irda-utils/files/init
deleted file mode 100755
index 63750f187..000000000
--- a/meta/packages/irda-utils/files/init
+++ /dev/null
@@ -1,80 +0,0 @@
-#! /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
-
-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
-
- mkdir -p /etc/sysconfig
- echo "IRDA=$IRDA" > /etc/sysconfig/irda
- if [ $IRDA = "yes" ]; then
- echo "DEVICE=$DEVICE" >> /etc/sysconfig/irda
- echo "DONGLE=$DONGLE" >> /etc/sysconfig/irda
- echo "DISCOVERY=$DISCOVERY" >> /etc/sysconfig/irda
- fi
-fi
-
-. /etc/sysconfig/irda
-
-# 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."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-