From: Stefan Schweizer Date: Sat, 11 Jun 2005 06:09:00 +0000 (+0200) Subject: [PATCH] Dialout group fix for capi devices in the gentoo rules file X-Git-Tag: 059~14 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=ae8d5e161fe916e39f226ce53f2c5f8b31f582a0;hp=e2bd03ff63789e0ffcc1955f15d9927f3ce87465 [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 --- diff --git a/etc/udev/gentoo/udev.rules b/etc/udev/gentoo/udev.rules index db8c5d926..65113aebf 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"