fp@169: #!/bin/sh fp@169: fp@169: #------------------------------------------------------------------------------ fp@169: # fp@247: # Init script for EtherCAT fp@169: # fp@169: # $Id$ fp@169: # fp@197: # Copyright (C) 2006 Florian Pose, Ingenieurgemeinschaft IgH fp@197: # fp@197: # This file is part of the IgH EtherCAT Master. fp@197: # fp@197: # The IgH EtherCAT Master is free software; you can redistribute it fp@197: # and/or modify it under the terms of the GNU General Public License fp@246: # as published by the Free Software Foundation; either version 2 of the fp@246: # License, or (at your option) any later version. fp@197: # fp@197: # The IgH EtherCAT Master is distributed in the hope that it will be fp@197: # useful, but WITHOUT ANY WARRANTY; without even the implied warranty of fp@197: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the fp@197: # GNU General Public License for more details. fp@197: # fp@197: # You should have received a copy of the GNU General Public License fp@197: # along with the IgH EtherCAT Master; if not, write to the Free Software fp@197: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA fp@197: # fp@246: # The right to use EtherCAT Technology is granted and comes free of fp@246: # charge under condition of compatibility of product made by fp@246: # Licensee. People intending to distribute/sell products based on the fp@246: # code, have to sign an agreement to guarantee that products using fp@246: # software based on IgH EtherCAT master stay compatible with the actual fp@246: # EtherCAT specification (which are released themselves as an open fp@246: # standard) as the (only) precondition to have the right to use EtherCAT fp@246: # Technology, IP and trade marks. fp@246: # fp@169: #------------------------------------------------------------------------------ fp@169: fp@243: ### BEGIN INIT INFO fp@248: # Provides: ethercat fp@245: # Required-Start: $local_fs $syslog $network fp@324: # Should-Start: $time ntp fp@245: # Required-Stop: $local_fs $syslog $network fp@324: # Should-Stop: $time ntp fp@243: # Default-Start: 3 5 fp@243: # Default-Stop: 0 1 2 6 fp@247: # Short-Description: IgH EtherCAT master modules fp@243: # Description: fp@243: ### END INIT INFO fp@169: fp@169: #------------------------------------------------------------------------------ fp@169: fp@243: ETHERCAT_CONFIG=/etc/sysconfig/ethercat fp@169: fp@324: if [ ! -r $ETHERCAT_CONFIG ]; then fp@360: echo "$ETHERCAT_CONFIG not existing"; fp@360: if [ "$1" = "stop" ]; then fp@360: exit 0 fp@360: else fp@360: exit 6 fp@360: fi fp@324: fi fp@243: fp@243: . $ETHERCAT_CONFIG fp@169: fp@169: #------------------------------------------------------------------------------ fp@169: fp@289: # fp@289: # Function for setting up the EoE bridge fp@289: # fp@324: build_eoe_bridge() fp@324: { fp@360: if [ -z "$EOE_BRIDGE" ]; then return; fi fp@360: fp@360: EOEIF=`/sbin/ifconfig -a | grep -o -E "^eoe[0-9]+ "` fp@360: fp@360: # add bridge, if it does not already exist fp@360: if ! /sbin/brctl show | grep -E -q "^$EOE_BRIDGE"; then fp@360: if ! /sbin/brctl addbr $EOE_BRIDGE; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: fi fp@289: fp@321: # check if specified interfaces are bridged fp@360: for interf in $EOEIF $EOE_EXTRA_INTERFACES; do fp@360: # interface is already part of the bridge fp@360: if /sbin/brctl show $EOE_BRIDGE | grep -E -q $interf fp@360: then continue fp@360: fi fp@360: # clear IP address and open interface fp@360: if ! /sbin/ifconfig $interf 0.0.0.0 up; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: # add interface to the bridge fp@360: if ! /sbin/brctl addif $EOE_BRIDGE $interf; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: done fp@360: fp@360: # configure IP on bridge fp@360: if [ -n "$EOE_IP_ADDRESS" -a -n "$EOE_IP_NETMASK" ]; then fp@360: if ! /sbin/ifconfig $EOE_BRIDGE $EOE_IP_ADDRESS \ fp@360: netmask $EOE_IP_NETMASK; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: fi fp@360: fp@360: # open bridge fp@360: if ! /sbin/ifconfig $EOE_BRIDGE up; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: fp@360: # install new default gateway fp@360: if [ -n "$EOE_GATEWAY" ]; then fp@360: while /sbin/route -n | grep -E -q "^0.0.0.0"; do fp@360: if ! /sbin/route del default; then fp@360: echo "Failed to remove route!" 1>&2 fp@324: /bin/false fp@289: rc_status -v fp@289: rc_exit fp@360: fi fp@360: done fp@360: if ! /sbin/route add default gw $EOE_GATEWAY; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: fi fp@289: } fp@289: fp@289: #------------------------------------------------------------------------------ fp@289: fp@243: . /etc/rc.status fp@243: rc_reset fp@169: fp@243: case "$1" in fp@324: fp@243: start) fp@360: echo -n "Starting EtherCAT master " fp@360: fp@360: if [ -z "$DEVICE_INDEX" ]; then fp@360: echo "ERROR: DEVICE_INDEX not set!" fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@360: fp@360: if [ -z "$EOE_INTERFACES" ]; then fp@360: if [ -n "$EOE_DEVICES" ]; then # support legacy sysconfig files fp@360: EOE_INTERFACES=$EOE_DEVICES fp@360: else fp@360: EOE_INTERFACES=0 fp@360: fi fp@360: fi fp@360: fp@360: # unload conflicting modules at first fp@360: for mod in 8139too; do fp@360: if lsmod | grep "^$mod " > /dev/null; then fp@360: if ! rmmod $mod; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@324: fi fp@360: fi fp@360: done fp@360: fp@360: # load master module fp@360: if ! modprobe ec_master ec_eoeif_count=$EOE_INTERFACES; then fp@360: modprobe 8139too fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@324: fp@324: # load device module fp@360: if ! modprobe ec_8139too ec_device_index=$DEVICE_INDEX; then fp@360: rmmod ec_master fp@360: modprobe 8139too fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi fp@324: fp@324: # build EoE bridge fp@360: build_eoe_bridge fp@360: fp@360: rc_status -v fp@360: ;; fp@174: fp@169: stop) fp@360: echo -n "Shutting down EtherCAT master " fp@360: fp@360: # unload modules fp@360: for mod in ec_8139too ec_master; do fp@360: if lsmod | grep "^$mod " > /dev/null; then fp@360: if ! rmmod $mod; then fp@360: /bin/false fp@360: rc_status -v fp@360: rc_exit fp@360: fi; fp@360: fi; fp@360: done fp@360: fp@360: sleep 1 fp@360: fp@360: # reload previous modules fp@360: if ! modprobe 8139too; then fp@360: echo "Warning: Failed to restore 8139too module." fp@360: fi fp@360: fp@360: rc_status -v fp@360: ;; fp@174: fp@243: restart) fp@360: $0 stop || exit 1 fp@360: sleep 1 fp@360: $0 start fp@360: rc_status fp@360: ;; fp@244: fp@244: status) fp@360: echo -n "Checking for EtherCAT " fp@360: fp@360: lsmod | grep "^ec_master " > /dev/null fp@360: master_running=$? fp@360: lsmod | grep "^ec_8139too " > /dev/null fp@360: device_running=$? fp@360: fp@360: # master module and device module loaded? fp@360: test $master_running -eq 0 -a $device_running -eq 0 fp@360: fp@360: rc_status -v fp@360: ;; fp@289: fp@289: bridge) fp@360: echo -n "Building EoE bridge " fp@360: build_eoe_bridge fp@360: rc_status -v fp@360: ;; fp@289: fp@289: *) fp@360: echo "USAGE: $0 {start|stop|restart|status|bridge}" fp@360: ;; fp@324: fp@169: esac fp@324: fp@243: rc_exit fp@169: fp@169: #------------------------------------------------------------------------------