Catch up with renaming of macros IRQn -> ICU_IRQn in i386/icu/icu.h,1.7
[dragonfly.git] / etc / rc.d / atm1
blob88d80ed50d563aebdc051eb9d8aa152f71d39165
1 #!/bin/sh
3 # Copyright (c) 2000 The FreeBSD Project
4 # All rights reserved.
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.
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.
27 # $FreeBSD: src/etc/rc.d/atm1,v 1.12 2003/04/18 17:55:05 mtm Exp $
28 # $DragonFly: src/etc/rc.d/atm1,v 1.2 2004/01/26 17:21:15 rob Exp $
31 # PROVIDE: atm1
32 # REQUIRE: root
33 # BEFORE: netif
34 # KEYWORD: DragonFly
36 . /etc/rc.subr
38 name="atm"
39 rcvar="atm_enable"
40 start_cmd="atm_start"
41 stop_cmd=":"
43 # ATM networking startup script
45 # Initial interface configuration.
46 # N.B. /usr is not mounted.
48 atm_start()
50 # Locate all probed ATM adapters
51 atmdev=`atm sh stat int | while read dev junk; do
52 case ${dev} in
53 hea[0-9] | hea[0-9][0-9])
54 echo "${dev} "
56 hfa[0-9] | hfa[0-9][0-9])
57 echo "${dev} "
59 idt[0-9] | idt[0-9][0-9])
60 echo "${dev} "
63 continue
65 esac
66 done`
68 if [ -z "${atmdev}" ]; then
69 echo 'No ATM adapters found'
70 return 0
73 # Load microcode into FORE adapters (if needed)
74 if [ `expr "${atmdev}" : '.*hfa.*'` -ne 0 ]; then
75 fore_dnld
78 # Configure physical interfaces
79 ilmid=0
80 for phy in ${atmdev}; do
81 echo -n "Configuring ATM device ${phy}:"
83 # Define network interfaces
84 eval netif_args=\$atm_netif_${phy}
85 if [ -n "${netif_args}" ]; then
86 atm set netif ${phy} ${netif_args} || continue
87 else
88 echo ' missing network interface definition'
89 continue
92 # Override physical MAC address
93 eval macaddr_args=\$atm_macaddr_${phy}
94 if [ -n "${macaddr_args}" ]; then
95 case ${macaddr_args} in
96 [Nn][Oo] | '')
99 atm set mac ${phy} ${macaddr_args} || continue
101 esac
104 # Configure signalling manager
105 eval sigmgr_args=\$atm_sigmgr_${phy}
106 if [ -n "${sigmgr_args}" ]; then
107 atm attach ${phy} ${sigmgr_args} || continue
108 else
109 echo ' missing signalling manager definition'
110 continue
113 # Configure UNI NSAP prefix
114 eval prefix_args=\$atm_prefix_${phy}
115 if [ `expr "${sigmgr_args}" : '[uU][nN][iI].*'` -ne 0 ]; then
116 if [ -z "${prefix_args}" ]; then
117 echo ' missing NSAP prefix for UNI interface'
118 continue
121 case ${prefix_args} in
122 ILMI)
123 ilmid=1
126 atm set prefix ${phy} ${prefix_args} || continue
128 esac
131 atm_phy="${atm_phy} ${phy}"
132 echo '.'
133 done
135 echo -n 'Starting initial ATM daemons:'
136 # Start ILMI daemon (if needed)
137 case ${ilmid} in
139 echo -n ' ilmid'
140 ilmid
142 esac
144 echo '.'
147 load_rc_config $name
148 run_rc_command "$1"