diff options
Diffstat (limited to 'Documentation/aoe/udev.txt')
-rw-r--r-- | Documentation/aoe/udev.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Documentation/aoe/udev.txt b/Documentation/aoe/udev.txt index a7ed1dc4f33..8686e789542 100644 --- a/Documentation/aoe/udev.txt +++ b/Documentation/aoe/udev.txt | |||
@@ -1,6 +1,7 @@ | |||
1 | # These rules tell udev what device nodes to create for aoe support. | 1 | # These rules tell udev what device nodes to create for aoe support. |
2 | # They may be installed along the following lines (adjusted to what | 2 | # They may be installed along the following lines. Check the section |
3 | # you see on your system). | 3 | # 8 udev manpage to see whether your udev supports SUBSYSTEM, and |
4 | # whether it uses one or two equal signs for SUBSYSTEM and KERNEL. | ||
4 | # | 5 | # |
5 | # ecashin@makki ~$ su | 6 | # ecashin@makki ~$ su |
6 | # Password: | 7 | # Password: |
@@ -15,10 +16,11 @@ | |||
15 | # | 16 | # |
16 | 17 | ||
17 | # aoe char devices | 18 | # aoe char devices |
18 | SUBSYSTEM="aoe", KERNEL="discover", NAME="etherd/%k", GROUP="disk", MODE="0220" | 19 | SUBSYSTEM=="aoe", KERNEL=="discover", NAME="etherd/%k", GROUP="disk", MODE="0220" |
19 | SUBSYSTEM="aoe", KERNEL="err", NAME="etherd/%k", GROUP="disk", MODE="0440" | 20 | SUBSYSTEM=="aoe", KERNEL=="err", NAME="etherd/%k", GROUP="disk", MODE="0440" |
20 | SUBSYSTEM="aoe", KERNEL="interfaces", NAME="etherd/%k", GROUP="disk", MODE="0220" | 21 | SUBSYSTEM=="aoe", KERNEL=="interfaces", NAME="etherd/%k", GROUP="disk", MODE="0220" |
21 | SUBSYSTEM="aoe", KERNEL="revalidate", NAME="etherd/%k", GROUP="disk", MODE="0220" | 22 | SUBSYSTEM=="aoe", KERNEL=="revalidate", NAME="etherd/%k", GROUP="disk", MODE="0220" |
23 | SUBSYSTEM=="aoe", KERNEL=="flush", NAME="etherd/%k", GROUP="disk", MODE="0220" | ||
22 | 24 | ||
23 | # aoe block devices | 25 | # aoe block devices |
24 | KERNEL="etherd*", NAME="%k", GROUP="disk" | 26 | KERNEL=="etherd*", NAME="%k", GROUP="disk" |