author | Florian Pose <fp@igh-essen.com> |
Tue, 05 May 2009 09:43:32 +0000 | |
changeset 1443 | 731422684dfd |
parent 1353 | 22b1de4c74e4 |
child 1556 | 52ec7297637c |
permissions | -rw-r--r-- |
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
1 |
#------------------------------------------------------------------------------ |
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
2 |
# |
573
cdee4ea90ce9
Introduced device IDs; removed comment lines from 8139too; removed
Florian Pose <fp@igh-essen.com>
parents:
563
diff
changeset
|
3 |
# EtherCAT master sysconfig file |
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
4 |
# |
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
5 |
# $Id$ |
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
6 |
# |
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
7 |
#------------------------------------------------------------------------------ |
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
8 |
|
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
9 |
# |
1091
363205c2ebaf
Improved doc; removed BACKUP variables.
Florian Pose <fp@igh-essen.com>
parents:
812
diff
changeset
|
10 |
# Master devices. |
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
11 |
# |
1091
363205c2ebaf
Improved doc; removed BACKUP variables.
Florian Pose <fp@igh-essen.com>
parents:
812
diff
changeset
|
12 |
# The MASTER<X>_DEVICE variable specifies the Ethernet device for a master |
363205c2ebaf
Improved doc; removed BACKUP variables.
Florian Pose <fp@igh-essen.com>
parents:
812
diff
changeset
|
13 |
# with index 'X'. |
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
14 |
# |
639
aa23c48dca2d
Allow only MAC addresses as device identifiers; replaced master list by
Florian Pose <fp@igh-essen.com>
parents:
588
diff
changeset
|
15 |
# Specify the MAC address (hexadecimal with colons) of the Ethernet device to |
699 | 16 |
# use. Example: "00:00:08:44:ab:66" |
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
17 |
# |
700
a6b61f1a062d
Broadcast MAC address accepts first device.
Florian Pose <fp@igh-essen.com>
parents:
699
diff
changeset
|
18 |
# The broadcast address "ff:ff:ff:ff:ff:ff" has a special meaning: It tells |
1091
363205c2ebaf
Improved doc; removed BACKUP variables.
Florian Pose <fp@igh-essen.com>
parents:
812
diff
changeset
|
19 |
# the master to accept the first device offered by any Ethernet driver. |
700
a6b61f1a062d
Broadcast MAC address accepts first device.
Florian Pose <fp@igh-essen.com>
parents:
699
diff
changeset
|
20 |
# |
639
aa23c48dca2d
Allow only MAC addresses as device identifiers; replaced master list by
Florian Pose <fp@igh-essen.com>
parents:
588
diff
changeset
|
21 |
# The MASTER<X>_DEVICE variables also determine, how many masters will be |
573
cdee4ea90ce9
Introduced device IDs; removed comment lines from 8139too; removed
Florian Pose <fp@igh-essen.com>
parents:
563
diff
changeset
|
22 |
# created: A non-empty variable MASTER0_DEVICE will create one master, adding |
cdee4ea90ce9
Introduced device IDs; removed comment lines from 8139too; removed
Florian Pose <fp@igh-essen.com>
parents:
563
diff
changeset
|
23 |
# a non-empty variable MASTER1_DEVICE will create a second master, and so on. |
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
24 |
# |
699 | 25 |
MASTER0_DEVICE="" |
26 |
#MASTER1_DEVICE="" |
|
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
27 |
|
588
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
28 |
# |
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
29 |
# Ethernet driver modules to replace with EtherCAT-capable ones. |
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
30 |
# |
1091
363205c2ebaf
Improved doc; removed BACKUP variables.
Florian Pose <fp@igh-essen.com>
parents:
812
diff
changeset
|
31 |
# The init script will try to unload the Ethernet driver modules in the list |
588
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
32 |
# and replace them with the EtherCAT-capable ones, respectively. If a certain |
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
33 |
# (EtherCAT-capable) driver is not found, a warning will appear. |
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
34 |
# |
1353
22b1de4c74e4
First version of r8169 driver.
Florian Pose <fp@igh-essen.com>
parents:
1233
diff
changeset
|
35 |
# Possible values: 8139too, e100, e1000, r8169. |
699 | 36 |
# Separate multiple drivers with spaces. |
37 |
# |
|
1353
22b1de4c74e4
First version of r8169 driver.
Florian Pose <fp@igh-essen.com>
parents:
1233
diff
changeset
|
38 |
# Note: The e100, e1000 and r8169 drivers are not built by default. Enable them |
22b1de4c74e4
First version of r8169 driver.
Florian Pose <fp@igh-essen.com>
parents:
1233
diff
changeset
|
39 |
# with the --enable-<driver> configure switches. |
588
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
40 |
# |
699 | 41 |
DEVICE_MODULES="" |
588
ba69f7f34fbf
Introduced DEVICE_MODULES variable in sysconfig file; enabled init
Florian Pose <fp@igh-essen.com>
parents:
573
diff
changeset
|
42 |
|
812
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
43 |
# |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
44 |
# Flags for loading kernel modules. |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
45 |
# |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
46 |
# This can usually be left empty. Adjust this variable, if you have problems |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
47 |
# with module loading. |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
48 |
# |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
49 |
#MODPROBE_FLAGS="-b" |
80c3d9c8292f
Added MODPROBE_FLAGS variable.
Florian Pose <fp@igh-essen.com>
parents:
700
diff
changeset
|
50 |
|
563
d113b63c55c4
Changed structure of scripts subdirectory.
Florian Pose <fp@igh-essen.com>
parents:
diff
changeset
|
51 |
#------------------------------------------------------------------------------ |