diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2005-06-11 08:09:00 +0200 |
---|---|---|
committer | Greg KH <greg@press.(none)> | 2005-06-16 16:23:34 -0700 |
commit | ae8d5e161fe916e39f226ce53f2c5f8b31f582a0 (patch) | |
tree | c3e7a5621bbe3db0ac6b9318c1e597998f6f9977 | |
parent | e2bd03ff63789e0ffcc1955f15d9927f3ce87465 (diff) |
[PATCH] Dialout group fix for capi devices in the gentoo rules file
currently it is not possible to use the capi devices for users even
when the user is in the dialout group. Please apply the attached patch
and fix the issue.
There is also a gentoo bug about this:
http://bugs.gentoo.org/show_bug.cgi?id=92445
diff -ur udev-056.orig/etc/udev/gentoo/udev.rules udev-056/etc/udev/gentoo/udev.rules
-rw-r--r-- | etc/udev/gentoo/udev.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/udev/gentoo/udev.rules b/etc/udev/gentoo/udev.rules index db8c5d9263..65113aebf7 100644 --- a/etc/udev/gentoo/udev.rules +++ b/etc/udev/gentoo/udev.rules @@ -51,8 +51,8 @@ KERNEL="timer", NAME="snd/%k" KERNEL="seq", NAME="snd/%k" # capi devices -KERNEL="capi", NAME="capi20", SYMLINK="isdn/capi20" -KERNEL="capi*", NAME="capi/%n" +KERNEL="capi", NAME="capi20", SYMLINK="isdn/capi20", GROUP="dialout" +KERNEL="capi*", NAME="capi/%n", GROUP="dialout" # cpu devices KERNEL="cpu[0-9]*", NAME="cpu/%n/cpuid" |