]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.isdn
Add an entry for the Dlink Air 660 Wireless PC Card.
[FreeBSD/FreeBSD.git] / etc / rc.isdn
1 #!/bin/sh
2 #
3 # Copyright (c) 1999  Hellmuth Michaelis
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD$
28 #
29
30 #---------------------------------------------------------------------------
31 #
32 #       /etc/rc.isdn - isdn4bsd startup script
33 #       --------------------------------------
34 #
35 #---------------------------------------------------------------------------
36
37 case ${isdn_enable} in
38 [Yy][Ee][Ss])
39         echo -n 'ISDN subsystem setup:'
40
41         # Check for pcvt driver (VT100/VT220 emulator)
42         #
43         if [ -x /usr/sbin/ispcvt ]; then
44                 if /usr/sbin/ispcvt; then
45                         # No vidcontrol if we are using pcvt
46                         #
47                         isdn_screenflags=NO
48                 fi
49         fi
50
51         case ${isdn_flags} in
52         [Nn][Oo])
53                 isdn_flags=''
54                 ;;
55         esac
56
57         # Start the isdn daemon
58         #
59         if [ -x /usr/sbin/isdnd ]; then
60                 echo -n ' isdnd'
61                 case ${isdn_fsdev} in
62                 [Nn][Oo] | '')
63                         /usr/sbin/isdnd ${isdn_flags}
64                         ;;
65                 *)
66                         # Change vidmode of ${isdn_fsdev}
67                         #
68                         case ${isdn_screenflags} in
69                         [Nn][Oo])
70                                 ;;
71                         *)
72                                 if [ -x /usr/sbin/vidcontrol ]; then
73                                         /usr/sbin/vidcontrol < ${isdn_fsdev} > ${isdn_fsdev} 2>&1 ${isdn_screenflags}
74                                 fi
75                                 ;;
76                         esac
77
78                         /usr/sbin/isdnd ${isdn_flags} -f -r ${isdn_fsdev} -t ${isdn_ttype}
79                         ;;
80                 esac
81         fi
82
83         # Start isdntrace
84         #
85         case ${isdn_trace} in
86         [Yy][Ee][Ss])
87                 if [ -x /usr/sbin/isdntrace ]; then
88                         echo -n ' isdntrace'
89                         nohup /usr/sbin/isdntrace ${isdn_traceflags} >/dev/null 2>&1 &
90                 fi
91                 ;;
92         esac
93
94         echo '.'
95         ;;
96 esac