fp@1740: #------------------------------------------------------------------------------ fp@1740: # fp@1744: # EtherCAT master sysconfig file fp@1740: # fp@1740: # $Id$ fp@1740: # fp@1740: #------------------------------------------------------------------------------ fp@1740: fp@1740: # fp@1744: # Master device and backup-device settings. fp@1740: # fp@1744: # The MASTER_DEVICE variable specifies the ethernet device for master 'X', fp@1744: # while the MASTER_BACKUP variable specifies the backup ethernet device for fp@1744: # redundancy purposes. fp@1744: # fp@1744: # Specify the MAC address (hexadecimal with colons) of the Ethernet device to fp@1744: # use. Example: "00:00:08:44:ab:66" fp@1744: # fp@1744: # The broadcast address "ff:ff:ff:ff:ff:ff" has a special meaning: It tells fp@1744: # the master to accept the first device offered by any ethernet driver. fp@1744: # fp@1744: # The MASTER_DEVICE variables also determine, how many masters will be fp@1744: # created: A non-empty variable MASTER0_DEVICE will create one master, adding fp@1744: # a non-empty variable MASTER1_DEVICE will create a second master, and so on. fp@1744: # fp@1744: # Note: The backup devices are not implemented, yet. fp@1744: # fp@1744: MASTER0_DEVICE="" fp@1744: MASTER0_BACKUP="" fp@1744: fp@1744: #MASTER1_DEVICE="" fp@1744: #MASTER1_BACKUP="" fp@1740: fp@1740: # fp@1744: # Ethernet driver modules to replace with EtherCAT-capable ones. fp@1740: # fp@1744: # The init script will try to unload the ethernet driver modules in the list fp@1744: # and replace them with the EtherCAT-capable ones, respectively. If a certain fp@1744: # (EtherCAT-capable) driver is not found, a warning will appear. fp@1740: # fp@1758: # Possible values: 8139too, e100, e1000. fp@1744: # Separate multiple drivers with spaces. fp@1740: # fp@1758: # Note: The e100 and e1000 drivers are not built by default. Enable them with fp@1758: # the --enable- configure switches. fp@1744: # fp@1744: DEVICE_MODULES="" fp@1740: fp@1740: #------------------------------------------------------------------------------