]> git.pld-linux.org Git - projects/rc-scripts.git/blob - lib/ifup-irda
drop raidutils (raidstart, /etc/raidtab) support. our geninitrd doesn't support it...
[projects/rc-scripts.git] / lib / ifup-irda
1 #!/bin/sh
2 #
3 #    ifup-irda - IrDA configuration script
4 #    Copyright (C) 2001 Arkadiusz Miƛkiewicz <misiek@pld-linux.org>
5 #
6 #    This program is free software; you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation; either version 2 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program; if not, write to the Free Software
18 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 #    $Id$
21 #
22 PATH=/sbin:/usr/sbin:/bin:/usr/bin
23
24 cd /lib/rc-scripts
25 . /etc/sysconfig/network
26 . /etc/rc.d/init.d/functions
27 . /lib/rc-scripts/functions.network
28
29 CONFIG=$1
30 source_config
31
32 if [ "foo$2" = "fooboot" ] && is_no "${ONBOOT}"; then
33         exit
34 fi
35
36 if [ ! -x /sbin/irattach ]; then
37         nls "%s is missing. Can't continue." "/sbin/irattach"
38         exit 1
39 fi
40
41 . /etc/sysconfig/network
42
43 # set all major variables
44 setup_ip_param
45
46 IRDAOPTS=
47
48 if [ -n "${DONGLE}" ]; then
49         IRDAOPTS="${IRDAOPTS} -d ${DONGLE}"
50 fi
51
52 if is_yes "${DISCOVERY}" || [ -z "${DISCOVERY}" ]; then
53         IRDAOPTS="${IRDAOPTS} -s"
54 fi
55
56 /sbin/irattach ${IRDAPORT} ${IRDAOPTS}
57
58 ip link set dev ${DEVICE} multicast ${MULTICAST} ${ARP}
59 if ! (ip link set dev ${DEVICE} up); then
60         nls "problems with setting %s %s" "IrDA" "${DEVICE}"
61         exit 1
62 fi
This page took 0.031932 seconds and 3 git commands to generate.