script/sysconfig/ethercat
changeset 699 112abd5b04d2
parent 639 aa23c48dca2d
child 700 a6b61f1a062d
equal deleted inserted replaced
698:6693ea7c9047 699:112abd5b04d2
    12 # The MASTER<X>_DEVICE variable specifies the ethernet device for master 'X',
    12 # The MASTER<X>_DEVICE variable specifies the ethernet device for master 'X',
    13 # while the MASTER<X>_BACKUP variable specifies the backup ethernet device for
    13 # while the MASTER<X>_BACKUP variable specifies the backup ethernet device for
    14 # redundancy purposes.
    14 # redundancy purposes.
    15 #
    15 #
    16 # Specify the MAC address (hexadecimal with colons) of the Ethernet device to
    16 # Specify the MAC address (hexadecimal with colons) of the Ethernet device to
    17 # use. Example: 00:00:08:44:ab:66
    17 # use. Example: "00:00:08:44:ab:66"
    18 #
    18 #
    19 # The MASTER<X>_DEVICE variables also determine, how many masters will be
    19 # The MASTER<X>_DEVICE variables also determine, how many masters will be
    20 # created: A non-empty variable MASTER0_DEVICE will create one master, adding
    20 # created: A non-empty variable MASTER0_DEVICE will create one master, adding
    21 # a non-empty variable MASTER1_DEVICE will create a second master, and so on.
    21 # a non-empty variable MASTER1_DEVICE will create a second master, and so on.
    22 #
    22 #
    23 MASTER0_DEVICE=
    23 # Note: The backup devices are not implemented, yet.
    24 MASTER0_BACKUP=
    24 #
       
    25 MASTER0_DEVICE=""
       
    26 MASTER0_BACKUP=""
       
    27 
       
    28 #MASTER1_DEVICE=""
       
    29 #MASTER1_BACKUP=""
    25 
    30 
    26 #
    31 #
    27 # Ethernet driver modules to replace with EtherCAT-capable ones.
    32 # Ethernet driver modules to replace with EtherCAT-capable ones.
    28 #
    33 #
    29 # The init script will try to unload the ethernet driver modules in the list
    34 # The init script will try to unload the ethernet driver modules in the list
    30 # and replace them with the EtherCAT-capable ones, respectively. If a certain
    35 # and replace them with the EtherCAT-capable ones, respectively. If a certain
    31 # (EtherCAT-capable) driver is not found, a warning will appear.
    36 # (EtherCAT-capable) driver is not found, a warning will appear.
    32 #
    37 #
    33 # Remove all unused driver modules to prevent unnecesessary module
    38 # Possible values are "8139too", "e100", "e1000", and "forcedeth".
    34 # replacement.
    39 # Separate multiple drivers with spaces.
       
    40 #
       
    41 # Note: The e100, e1000 and forcedeth drivers are not built by default. Enable
       
    42 # them with the --enable-<driver> configure switches.
    35 # 
    43 # 
    36 DEVICE_MODULES="8139too e100 forcedeth"
    44 DEVICE_MODULES=""
    37 
    45 
    38 #------------------------------------------------------------------------------
    46 #------------------------------------------------------------------------------