1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-22 06:50:18 +03:00

[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
This commit is contained in:
Stefan Schweizer 2005-06-11 08:09:00 +02:00 committed by Greg KH
parent e2bd03ff63
commit ae8d5e161f

View File

@ -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"