diff options
-rw-r--r-- | etc/udev/gentoo/udev.rules | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/udev/gentoo/udev.rules b/etc/udev/gentoo/udev.rules index d89d8d0a2c..3c09d072da 100644 --- a/etc/udev/gentoo/udev.rules +++ b/etc/udev/gentoo/udev.rules @@ -77,6 +77,15 @@ KERNEL="loop[0-9]*", NAME="loop/%n", SYMLINK="%k", GROUP="disk" # md block devices KERNEL="md[0-9]*", NAME="md/%n", SYMLINK="%k", GROUP="disk" +# aoe char devices, +# we might have to add a "CLASS" type one of these days to make this a bit saner +KERNEL="discover", NAME="etherd/%k", GROUP="disk", MODE="0220" +KERNEL="err", NAME="etherd/%k", GROUP="disk", MODE="0440" +KERNEL="interfaces", NAME="etherd/%k", GROUP="disk", MODE="0220" + +# aoe block devices +KERNEL="etherd*", NAME="%k", GROUP="disk" + # misc devices KERNEL="agpgart", NAME="misc/%k", SYMLINK="%k" KERNEL="psaux", NAME="misc/%k", SYMLINK="%k" |