brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 5fb7564 Raw
27 lines · plain
1# These rules tell udev what device nodes to create for aoe support.2# They may be installed along the following lines.  Check the section3# 8 udev manpage to see whether your udev supports SUBSYSTEM, and4# whether it uses one or two equal signs for SUBSYSTEM and KERNEL.5# 6#   ecashin@makki ~$ su7#   Password:8#   bash# find /etc -type f -name udev.conf9#   /etc/udev/udev.conf10#   bash# grep udev_rules= /etc/udev/udev.conf11#   udev_rules="/etc/udev/rules.d/"12#   bash# ls /etc/udev/rules.d/13#   10-wacom.rules  50-udev.rules14#   bash# cp /path/to/linux/Documentation/admin-guide/aoe/udev.txt \15#           /etc/udev/rules.d/60-aoe.rules16#  17 18# aoe char devices19SUBSYSTEM=="aoe", KERNEL=="discover",	NAME="etherd/%k", GROUP="disk", MODE="0220"20SUBSYSTEM=="aoe", KERNEL=="err",	NAME="etherd/%k", GROUP="disk", MODE="0440"21SUBSYSTEM=="aoe", KERNEL=="interfaces",	NAME="etherd/%k", GROUP="disk", MODE="0220"22SUBSYSTEM=="aoe", KERNEL=="revalidate",	NAME="etherd/%k", GROUP="disk", MODE="0220"23SUBSYSTEM=="aoe", KERNEL=="flush",	NAME="etherd/%k", GROUP="disk", MODE="0220"24 25# aoe block devices     26KERNEL=="etherd*",       GROUP="disk"27