diff options
author | Bryan Kadzban <bryan@linuxfromscratch.org> | 2009-03-16 04:29:00 +0000 |
---|---|---|
committer | Bryan Kadzban <bryan@linuxfromscratch.org> | 2009-03-16 04:29:00 +0000 |
commit | bb8939c1e6fc50dbe981838c16043142fced4833 (patch) | |
tree | 139787051974509b763f9c6a3fac12ed3536cf2f /udev-config/55-lfs.rules | |
parent | 6a4a95fd50f6908f58940a9ed55e77eb48d61754 (diff) |
- Install udev's 40-isdn.rules to handle ISDN (CAPI) devices; remove udev-config
rules for them. Fixes more of #2297.
- Use the dialout group instead of uucp. Udev has moved to a Debian-like setup,
where the uucp group is for a UUCP daemon, and dialout is for devices. (This
undoes much of r8428 as well.) Fixes the rest of #2314, and more of #2297.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8841 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'udev-config/55-lfs.rules')
-rw-r--r-- | udev-config/55-lfs.rules | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/udev-config/55-lfs.rules b/udev-config/55-lfs.rules index 890311cc1..7d1953816 100644 --- a/udev-config/55-lfs.rules +++ b/udev-config/55-lfs.rules @@ -12,13 +12,11 @@ KERNEL=="rtc", MODE="0666" # Comms devices -KERNEL=="rfcomm[0-9]*", GROUP="uucp" -KERNEL=="ippp[0-9]*", GROUP="uucp" -KERNEL=="isdn[0-9]*", GROUP="uucp" -KERNEL=="isdnctrl[0-9]*", GROUP="uucp" -KERNEL=="capi", NAME="capi20", SYMLINK+="isdn/capi20" -KERNEL=="capi?*", NAME="capi/%n", GROUP="uucp" -KERNEL=="dcbri[0-9]*", GROUP="uucp" +KERNEL=="rfcomm[0-9]*", GROUP="dialout" +KERNEL=="ippp[0-9]*", GROUP="dialout" +KERNEL=="isdn[0-9]*", GROUP="dialout" +KERNEL=="isdnctrl[0-9]*", GROUP="dialout" +KERNEL=="dcbri[0-9]*", GROUP="dialout" # ALSA devices go in their own subdirectory |