script/sysconfig/ethercat
author Florian Pose <fp@igh-essen.com>
Thu, 02 Oct 2008 08:00:18 +0000
branchstable-1.3
changeset 1758 2f7f5fa7b870
parent 1744 7bc131b92039
permissions -rw-r--r--
merge -r1464:1467 trunk: Removed unstable forcedeth and e100.
#------------------------------------------------------------------------------
#
#  EtherCAT master sysconfig file
#
#  $Id$
#
#------------------------------------------------------------------------------

#
# Master device and backup-device settings.
#
# The MASTER<X>_DEVICE variable specifies the ethernet device for master 'X',
# while the MASTER<X>_BACKUP variable specifies the backup ethernet device for
# redundancy purposes.
#
# Specify the MAC address (hexadecimal with colons) of the Ethernet device to
# use. Example: "00:00:08:44:ab:66"
#
# The broadcast address "ff:ff:ff:ff:ff:ff" has a special meaning: It tells
# the master to accept the first device offered by any ethernet driver.
#
# The MASTER<X>_DEVICE variables also determine, how many masters will be
# created: A non-empty variable MASTER0_DEVICE will create one master, adding
# a non-empty variable MASTER1_DEVICE will create a second master, and so on.
#
# Note: The backup devices are not implemented, yet.
#
MASTER0_DEVICE=""
MASTER0_BACKUP=""

#MASTER1_DEVICE=""
#MASTER1_BACKUP=""

#
# Ethernet driver modules to replace with EtherCAT-capable ones.
#
# The init script will try to unload the ethernet driver modules in the list
# and replace them with the EtherCAT-capable ones, respectively. If a certain
# (EtherCAT-capable) driver is not found, a warning will appear.
#
# Possible values: 8139too, e100, e1000.
# Separate multiple drivers with spaces.
#
# Note: The e100 and e1000 drivers are not built by default. Enable them with
# the --enable-<driver> configure switches.
# 
DEVICE_MODULES=""

#------------------------------------------------------------------------------