Introduced DEVICE_MODULES variable in sysconfig file; enabled init

script to handle serveral device modules.
This commit is contained in:
Florian Pose
2007-02-21 13:38:02 +00:00
parent 304ecf7dcc
commit f4e19ee613
2 changed files with 56 additions and 38 deletions
+13 -1
View File
@@ -14,7 +14,7 @@
# redundancy purposes.
#
# There are three formats for specifying ethernet devices:
# 1) MAC address (example: "00:00:08:44:55:66"). Specify the MAC address of
# 1) MAC address (example: "00:00:08:44:ab:66"). Specify the MAC address of
# the ethernet card to use.
# 2) PCI bus address (example: "01:1c.0"). Specify the PCU bis address of the
# ethernet card to use.
@@ -29,4 +29,16 @@
MASTER0_DEVICE=
MASTER0_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.
#
# Remove all unused driver modules to prevent unnecesessary module
# replacement.
#
DEVICE_MODULES="8139too e100 forcedeth"
#------------------------------------------------------------------------------