script/sysconfig/ethercat
author Florian Pose <fp@igh-essen.com>
Tue, 30 Sep 2008 14:10:50 +0000
branchstable-1.4
changeset 1641 e260d76b9c70
parent 1639 d4db7ad736a5
permissions -rw-r--r--
Removed some more old driver relics.
#------------------------------------------------------------------------------
#
#  EtherCAT master sysconfig file
#
#  $Id$
#
#------------------------------------------------------------------------------

#
# Master devices.
#
# The MASTER<X>_DEVICE variable specifies the Ethernet device for a master
# with index 'X'.
#
# 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.
#
MASTER0_DEVICE=""
#MASTER1_DEVICE=""

#
# 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, e1000.
# Separate multiple drivers with spaces.
#
# Note: The e1000 driver is not built by default. Enable it with
# the --enable-e1000 configure switch.
# 
DEVICE_MODULES=""

#
# Flags for loading kernel modules.
#
# This can usually be left empty. Adjust this variable, if you have problems
# with module loading.
# 
#MODPROBE_FLAGS="-b"

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