Changeset bb8939c


Ignore:
Timestamp:
03/16/2009 04:29:00 AM (15 years ago)
Author:
Bryan Kadzban <bryan@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
c222e85
Parents:
6a4a95f
Message:
  • 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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r6a4a95f rbb8939c  
    3737
    3838-->
     39    <xxx>
     40    </xxx>
     41
     42    <listitem>
     43      <para>2009-03-15</para>
     44      <itemizedlist>
     45        <listitem>
     46          <para>[bryan] - Remove the uucp group (replace with dialout).  Handle
     47          ISDN devices with a file from upstream.</para>
     48        </listitem>
     49      </itemizedlist>
     50    </listitem>
    3951
    4052    <listitem>
  • chapter06/createfiles.xml

    r6a4a95f rbb8939c  
    8484disk:x:8:
    8585lp:x:9:
    86 uucp:x:10:
     86dialout:x:10:
    8787audio:x:11:
    8888video:x:12:
     
    9090usb:x:14:
    9191cdrom:x:15:
    92 dialout:x:16:
    9392mail:x:34:
    9493nogroup:x:99:</literal>
  • chapter06/udev.xml

    r6a4a95f rbb8939c  
    8787    /lib/udev/rules.d/</userinput></screen>
    8888
     89    <para>Now install a file to handle ISDN devices:</para>
     90
     91<screen><userinput remap="install">install -m644 -v rules/packages/40-isdn.rules \
     92    /lib/udev/rules.d/</userinput></screen>
     93
    8994    <!-- There are more files available in the packages/ directory, if we want
    9095         to consider using them.  Most are probably irrelevant to LFS though.
  • udev-config/55-lfs.rules

    r6a4a95f rbb8939c  
    1313# Comms devices
    1414
    15 KERNEL=="rfcomm[0-9]*",     GROUP="uucp"
    16 KERNEL=="ippp[0-9]*",       GROUP="uucp"
    17 KERNEL=="isdn[0-9]*",       GROUP="uucp"
    18 KERNEL=="isdnctrl[0-9]*",   GROUP="uucp"
    19 KERNEL=="capi",             NAME="capi20",  SYMLINK+="isdn/capi20"
    20 KERNEL=="capi?*",           NAME="capi/%n", GROUP="uucp"
    21 KERNEL=="dcbri[0-9]*",      GROUP="uucp"
     15KERNEL=="rfcomm[0-9]*",     GROUP="dialout"
     16KERNEL=="ippp[0-9]*",       GROUP="dialout"
     17KERNEL=="isdn[0-9]*",       GROUP="dialout"
     18KERNEL=="isdnctrl[0-9]*",   GROUP="dialout"
     19KERNEL=="dcbri[0-9]*",      GROUP="dialout"
    2220
    2321# ALSA devices go in their own subdirectory
  • udev-config/ChangeLog

    r6a4a95f rbb8939c  
     12009-03-15      Bryan Kadzban <bryan@linuxfromscratch.org>
     2        * 55-lfs.rules: Remove the ISDN-handling rules (replaced with upstream's
     3          version, which has a better match via SUBSYSTEM).
     4        * 55-lfs.rules: Replace "uucp" with "dialout" now that udev has decided
     5          to standardize on a Debian-like setup (uucp is for UUCP daemons to use
     6          for privilege separation; dialout is for users and devices).
     7
    182008-12-07  Bruce Dubbs <bdubbs@linuxfromscratch.org>
    2    * 55-lfs.rules: Change one line to use continuation so it does
    3      not overflow the book's width.
     9        * 55-lfs.rules: Change one line to use continuation so it does
     10          not overflow the book's width.
    411
    5122008-12-07  Bryan Kadzban  <bryan@linuxfromscratch.org>
    6    * 55-lfs.rules: Remove several rules that are either provided by upstream,
    7      or that don't have any effect (there is no /dev/js or /dev/djs according
    8      to devices.txt).
    9    * 55-lfs.rules, 61-cdrom.rules: Replace ACTION=="add" with "add|change"
    10      everywhere, per upstream's general request.
     13        * 55-lfs.rules: Remove several rules that are either provided by upstream,
     14          or that don't have any effect (there is no /dev/js or /dev/djs according
     15          to devices.txt).
     16        * 55-lfs.rules, 61-cdrom.rules: Replace ACTION=="add" with "add|change"
     17          everywhere, per upstream's general request.
    1118
    12192008-11-11  Bryan Kadzban  <bryan@linuxfromscratch.org>
    13    * 55-lfs.rules, 61-cdrom.rules: Fix comments to use the right rule
    14      numbers.  Thanks to Trent Shea for the fix.  Closes #2278.
     20        * 55-lfs.rules, 61-cdrom.rules: Fix comments to use the right rule
     21          numbers.  Thanks to Trent Shea for the fix.  Closes #2278.
    1522
    16232008-10-15  DJ Lucas <dj@linuxfromscratch.org>
    17    * 55-lfs.rules: Override default perms on floppy disk devices provided
    18      by 50-udev-default.rules.  Thanks to Bruce Dubbs for the fix.  Closes
    19      LFS ticket #2076.
     24        * 55-lfs.rules: Override default perms on floppy disk devices provided
     25          by 50-udev-default.rules.  Thanks to Bruce Dubbs for the fix.  Closes
     26          LFS ticket #2076.
    2027
    21282008-05-21  Bryan Kadzban  <bryan@linuxfromscratch.org>
    22    * 81-firmware.rules, doc/81-firmware.txt: Remove.  This rule is
    23      already handled by udev's 50-udev-default.rules file.  The docs
    24      can be added back later if needed.
    25    * Makefile: Don't install the above deleted files.
    26    * 55-lfs.rules: Remove the device-mapper rule, since the upstream
    27      50-udev-default.rules file handles it properly.
     29        * 81-firmware.rules, doc/81-firmware.txt: Remove.  This rule is
     30          already handled by udev's 50-udev-default.rules file.  The docs
     31          can be added back later if needed.
     32        * Makefile: Don't install the above deleted files.
     33        * 55-lfs.rules: Remove the device-mapper rule, since the upstream
     34          50-udev-default.rules file handles it properly.
    2835
    29362008-04-02  Bryan Kadzban  <bryan@linuxfromscratch.org>
    30    * Makefile: Make the package DESTDIR-friendly by installing the docs
    31      into a fixed $(PREFIX)/share/doc/udev-config directory, instead of
    32      trying to figure out what version of udev was just installed.
     37        * Makefile: Make the package DESTDIR-friendly by installing the docs
     38          into a fixed $(PREFIX)/share/doc/udev-config directory, instead of
     39          trying to figure out what version of udev was just installed.
    3340
    34412007-10-30  Bryan Kadzban  <bryan@linuxfromscratch.org>
    35    * 55-lfs.rules: Since the dialout group was renamed to uucp, delete
    36      the rules that override upstream's assignment of the dialout group.
    37      Replace "dialout" with "uucp" on the remaining rules.
     42        * 55-lfs.rules: Since the dialout group was renamed to uucp, delete
     43          the rules that override upstream's assignment of the dialout group.
     44          Replace "dialout" with "uucp" on the remaining rules.
    3845
    39462007-10-29  Bryan Kadzban  <bryan@linuxfromscratch.org>
    40    * 51-lfs.rules: Move to 55-lfs.rules.
    41    * doc/51-lfs.rules: Move to doc/55-lfs.rules.
     47        * 51-lfs.rules: Move to 55-lfs.rules.
     48        * doc/51-lfs.rules: Move to doc/55-lfs.rules.
    4249
    43502007-10-27  Bryan Kadzban  <bryan@linuxfromscratch.org>
    44    * 25-lfs.rules: Some rules in here are duplicates of rules from udev's
    45      new 50-udev-defaults.rules file; remove them. Override permissions
    46      where needed elsewhere (and document overrides in comments).
    47    * 26-modprobe.rules: Provided by udev's 80-drivers.rules and built-in
    48      modaliases for SCSI device-type modules in 2.6.22+ kernels; remove.
    49 
    50    * 25-lfs.rules: Move to 51-lfs.rules.
    51    * 27-firmware.rules: Move to 81-firmware.rules.
    52    * 81-cdrom.rules: Move to 61-cdrom.rules.
    53 
    54    * doc/25-lfs.txt: Rename to 51-lfs.txt.
    55    * doc/26-modprobe.txt: Rename to 80-drivers.txt, and modify to reflect
    56      the upstream rules.
    57    * doc/27-firmware.txt: Rename to 81-firmware.txt.
    58    * doc/81-cdrom.txt: Rename to 61-cdrom.txt.
    59 
    60    * Makefile: Use new filenames.
     51        * 25-lfs.rules: Some rules in here are duplicates of rules from udev's
     52          new 50-udev-defaults.rules file; remove them. Override permissions
     53          where needed elsewhere (and document overrides in comments).
     54        * 26-modprobe.rules: Provided by udev's 80-drivers.rules and built-in
     55          modaliases for SCSI device-type modules in 2.6.22+ kernels; remove.
     56
     57        * 25-lfs.rules: Move to 51-lfs.rules.
     58        * 27-firmware.rules: Move to 81-firmware.rules.
     59        * 81-cdrom.rules: Move to 61-cdrom.rules.
     60
     61        * doc/25-lfs.txt: Rename to 51-lfs.txt.
     62        * doc/26-modprobe.txt: Rename to 80-drivers.txt, and modify to reflect
     63          the upstream rules.
     64        * doc/27-firmware.txt: Rename to 81-firmware.txt.
     65        * doc/81-cdrom.txt: Rename to 61-cdrom.txt.
     66
     67        * Makefile: Use new filenames.
    6168
    62692007-07-31  Dan Nicholson <dnicholson@linuxfromscratch.org>
    63    * 25-lfs.rules: Changed the usb_device rule tto create /dev/bus/usb
    64      nodes if the usb_device in 2.6.22+ kernels. The rule was also changed
    65      to only trigger on "add" events. This change is not backwards
    66      compatible with older kernels.
     70        * 25-lfs.rules: Changed the usb_device rule tto create /dev/bus/usb
     71          nodes if the usb_device in 2.6.22+ kernels. The rule was also changed
     72          to only trigger on "add" events. This change is not backwards
     73          compatible with older kernels.
    6774
    68752007-06-12  Dan Nicholson <dnicholson@linuxfromscratch.org>
    69    * 25-lfs.rules: Fix the CPUID nodes from cpu/%n/cpu to cpu/%n/cpuid,
    70      which is what's expected in userspace apps such as x86info.
     76        * 25-lfs.rules: Fix the CPUID nodes from cpu/%n/cpu to cpu/%n/cpuid,
     77          which is what's expected in userspace apps such as x86info.
    7178
    72792007-06-08  Bryan Kadzban  <bryan@linuxfromscratch.org>
    73    * 25-lfs.rules: Add rules for DVB devices (create nodes in /dev/dvb/)
    74      and floppies (create extra nodes based on CMOS type), copied from
    75      the SuSE rules file.  Thanks to Alexander Patrakov for the bugreport.
    76 
    77 2007-03-04  Matthew Burgess   <matthew@linuxfromscratch.org>
    78    * Makefile: Use `udevd --version' to work out what version of Udev is
    79      installed (requires Udev >= 106)
     80        * 25-lfs.rules: Add rules for DVB devices (create nodes in /dev/dvb/)
     81          and floppies (create extra nodes based on CMOS type), copied from
     82          the SuSE rules file.  Thanks to Alexander Patrakov for the bugreport.
     83
     842007-03-04  Matthew Burgess     <matthew@linuxfromscratch.org>
     85        * Makefile: Use `udevd --version' to work out what version of Udev is
     86          installed (requires Udev >= 106)
    8087
    81882007-01-02  Bryan Kadzban  <bryan@linuxfromscratch.org>
    82    * 25-lfs.rules: Change CPU devices (cpu, msr, microcode) to be in
    83      /dev/cpu/ and /dev/cpu/N/, to match Documentation/devices.txt.
     89        * 25-lfs.rules: Change CPU devices (cpu, msr, microcode) to be in
     90          /dev/cpu/ and /dev/cpu/N/, to match Documentation/devices.txt.
    8491
    85922006-10-21  Bryan Kadzban  <bryan@linuxfromscratch.org>
    86    * Makefile: Add a missing backslash in install-extra-doc.
    87 
    88    * 05-udev-early.rules, 60-persistent-input.rules,
    89      60-persistent-storage.rules, 95-udev-late.rules: Remove.  The book
    90      will install these files from udev's etc/udev/rules.d directory
    91      instead.
    92    * Makefile: Don't install these rules files after all.  Also, only
    93      install corresponding docs if requested.
     93        * Makefile: Add a missing backslash in install-extra-doc.
     94
     95        * 05-udev-early.rules, 60-persistent-input.rules,
     96          60-persistent-storage.rules, 95-udev-late.rules: Remove.  The book
     97          will install these files from udev's etc/udev/rules.d directory
     98          instead.
     99        * Makefile: Don't install these rules files after all.  Also, only
     100          install corresponding docs if requested.
    94101
    951022006-10-20  Bryan Kadzban  <bryan@linuxfromscratch.org>
    96    * Makefile: Added; contains targets to install rules and doc files.
    97      From Dan Nicholson.
     103        * Makefile: Added; contains targets to install rules and doc files.
     104          From Dan Nicholson.
    98105
    991062006-10-14  Bryan Kadzban  <bryan@linuxfromscratch.org>
    100    * 05-udev-early.rules, 60-persistent-storage.rules: Sync up with
    101      upstream sample rules files (from udev-102), except for one rule
    102      which is more specific in our tarball and should probably be changed
    103      upstream.
    104    * doc/60-persistent-storage.txt: Modify to match the changes.  Also
    105      fix a couple typos.
    106 
    107    * 25-lfs.rules: Remove duplicate rules (ttyS[0-9]* is also matched by
    108      tty[BC...S...][0-9]*, and ttyUSB[0-9]* is in there twice).
    109 
    110    * 25-lfs.rules: Fix Alsa device KERNEL rules.  Udev uses shell-style
    111      glob matching, not regular expressions, so the old rules would match
    112      nonsense device names like hw0asdf and pcmDzxcv.  As long as the first
    113      character after the "fixed" portion was in the list, the rule would
    114      match; it wouldn't apply the same character range to later characters.
    115 
    116    * doc/25-lfs.txt: Add a note on interaction between permissions and
    117      symlinks.
     107        * 05-udev-early.rules, 60-persistent-storage.rules: Sync up with
     108          upstream sample rules files (from udev-102), except for one rule
     109          which is more specific in our tarball and should probably be changed
     110          upstream.
     111        * doc/60-persistent-storage.txt: Modify to match the changes.  Also
     112          fix a couple typos.
     113
     114        * 25-lfs.rules: Remove duplicate rules (ttyS[0-9]* is also matched by
     115          tty[BC...S...][0-9]*, and ttyUSB[0-9]* is in there twice).
     116
     117        * 25-lfs.rules: Fix Alsa device KERNEL rules.  Udev uses shell-style
     118          glob matching, not regular expressions, so the old rules would match
     119          nonsense device names like hw0asdf and pcmDzxcv.  As long as the first
     120          character after the "fixed" portion was in the list, the rule would
     121          match; it wouldn't apply the same character range to later characters.
     122
     123        * doc/25-lfs.txt: Add a note on interaction between permissions and
     124          symlinks.
    118125
    1191262006-10-09  Bryan Kadzban  <bryan@linuxfromscrtach.org>
    120    * 25-lfs.rules: Fix fb[0-9]* device permissions (should use the default
    121      0660).
    122 
    123    * doc/25-lfs.txt: Fix typo: /dev/ptmx is given mode 0666, not 0660.
    124      Also tweak the comment about other TTY devices.
     127        * 25-lfs.rules: Fix fb[0-9]* device permissions (should use the default
     128          0660).
     129
     130        * doc/25-lfs.txt: Fix typo: /dev/ptmx is given mode 0666, not 0660.
     131          Also tweak the comment about other TTY devices.
    125132
    1261332006-10-04  Bryan Kadzban  <bryan@linuxfromscratch.org>
    127    * 05-udev-early.rules: Remove WAIT_FOR_SYSFS="bus" rule.  With kernel
    128      2.6.18, this rule is no longer required.
    129 
    130    * doc/05-udev-early.txt: Update to match.
     134        * 05-udev-early.rules: Remove WAIT_FOR_SYSFS="bus" rule.  With kernel
     135          2.6.18, this rule is no longer required.
     136
     137        * doc/05-udev-early.txt: Update to match.
    131138
    1321392006-09-28  Bryan Kadzban  <bryan@linuxfromscratch.org>
    133    * doc/60-persistent-storage.txt: Explain persistent storage rules, or
    134      at least the parts I understand.  (I don't use DASD or netblock or
    135      several other supported configurations.)
    136 
    137    * doc/81-cdrom.txt: Explain 81-cdrom.rules.
    138 
    139    * doc/95-udev-late.txt: Explain 95-udev-late.rules.  Documentation is
    140      now finished.
     140        * doc/60-persistent-storage.txt: Explain persistent storage rules, or
     141          at least the parts I understand.  (I don't use DASD or netblock or
     142          several other supported configurations.)
     143
     144        * doc/81-cdrom.txt: Explain 81-cdrom.rules.
     145
     146        * doc/95-udev-late.txt: Explain 95-udev-late.rules.  Documentation is
     147          now finished.
    141148
    1421492006-09-26  Bryan Kadzban  <bryan@linuxfromscratch.org>
    143    * doc/60-persistent-input.txt: Explain (in probably too much detail)
    144      60-persistent-input.rules.
     150        * doc/60-persistent-input.txt: Explain (in probably too much detail)
     151          60-persistent-input.rules.
    145152
    1461532006-09-24  Bryan Kadzban  <bryan@linuxfromscratch.org>
    147    * doc/05-udev-early.txt: Rewrap to fit 80 columns.
    148 
    149    * doc/26-modprobe.txt: Explain 26-modprobe.rules, and modaliases.
    150 
    151    * doc/27-firmware.txt: Explain 27-firmware.rules.
     154        * doc/05-udev-early.txt: Rewrap to fit 80 columns.
     155
     156        * doc/26-modprobe.txt: Explain 26-modprobe.rules, and modaliases.
     157
     158        * doc/27-firmware.txt: Explain 27-firmware.rules.
    152159
    1531602006-09-24  Bryan Kadzban  <bryan@linuxfromscratch.org>
    154    * doc/25-lfs.txt: Explain 25-lfs.rules.
    155 
    156    * 25-lfs.rules: Use SYMLINK+= for isdn/capi20 also.
     161        * doc/25-lfs.txt: Explain 25-lfs.rules.
     162
     163        * 25-lfs.rules: Use SYMLINK+= for isdn/capi20 also.
    157164
    1581652006-09-23  Bryan Kadzban  <bryan@linuxfromscratch.org>
    159    * doc: New subdirectory to contain documentation of rules
    160    * doc/README: New file, top-level documentation
    161    * doc/*.txt: New documentation files, one for each rules file.  Only
    162      05-udev-early.txt has anything in it.
     166        * doc: New subdirectory to contain documentation of rules
     167        * doc/README: New file, top-level documentation
     168        * doc/*.txt: New documentation files, one for each rules file.  Only
     169          05-udev-early.txt has anything in it.
    163170
    1641712006-09-23  Bryan Kadzban  <bryan@linuxfromscratch.org>
    165    * 25-lfs.rules: Add "ignore_device" to OPTIONS for DRI devices, instead
    166      of setting NAME to an empty string.  This matches the way we ignore
    167      devmapper / LVM devices.
     172        * 25-lfs.rules: Add "ignore_device" to OPTIONS for DRI devices, instead
     173          of setting NAME to an empty string.  This matches the way we ignore
     174          devmapper / LVM devices.
    168175
    1691762006-09-22  Bryan Kadzban  <bryan@linuxfromscratch.org>
    170    * 60-persistent-input.rules, 95-udev-late.rules: Import from udev-100.
    171      60-persistent-input.rules creates persistent symlinks for input
    172      devices, and 95-udev-late.rules enables udevmonitor.
    173 
    174    * 60-persistent-storage.rules: Replace ATTRS{../removable} with just
    175      ATTRS{removable} on partition devices. Replace ATTRS{removable}
    176      with ATTR{removable} on whole-disk devices.
     177        * 60-persistent-input.rules, 95-udev-late.rules: Import from udev-100.
     178          60-persistent-input.rules creates persistent symlinks for input
     179          devices, and 95-udev-late.rules enables udevmonitor.
     180
     181        * 60-persistent-storage.rules: Replace ATTRS{../removable} with just
     182          ATTRS{removable} on partition devices. Replace ATTRS{removable}
     183          with ATTR{removable} on whole-disk devices.
    177184
    1781852006-09-20  Bryan Kadzban  <bryan@linuxfromscratch.org>
    179    * 05-early.rules: Missed a rule in the last change.  ENV{PHYSDEVBUS}
    180      in the rule that waits for the "bus" symlink should be replaced by
    181      SUBSYSTEMS.
     186        * 05-early.rules: Missed a rule in the last change.  ENV{PHYSDEVBUS}
     187          in the rule that waits for the "bus" symlink should be replaced by
     188          SUBSYSTEMS.
    182189
    1831902006-09-20  Bryan Kadzban  <bryan@linuxfromscratch.org>
    184    * Adapted rules to the new matches used in udev-098 and above (e.g.,
    185      SYSFS becomes ATTRS).  Prevents warnings, and support for the old
    186      matches will be removed eventually.  These rules will not work with
    187      udev-097 and before!
    188    * Fixed several bugs in the rules left over from previous udev
    189      versions (missing commas, overwriting user symlinks using ="..."
    190      instead of +="...", and matching against "*" instead of "?*").
    191 
    192    * Renamed CHANGELOG to ChangeLog, started using pseudo-GNU-format
    193      entries.  (See standards.info; search it for "changelog" to get
    194      the general gist.)
     191        * Adapted rules to the new matches used in udev-098 and above (e.g.,
     192          SYSFS becomes ATTRS).  Prevents warnings, and support for the old
     193          matches will be removed eventually.  These rules will not work with
     194          udev-097 and before!
     195        * Fixed several bugs in the rules left over from previous udev
     196          versions (missing commas, overwriting user symlinks using ="..."
     197          instead of +="...", and matching against "*" instead of "?*").
     198
     199        * Renamed CHANGELOG to ChangeLog, started using pseudo-GNU-format
     200          entries.  (See standards.info; search it for "changelog" to get
     201          the general gist.)
    195202
    196203dnicholson - Jul 14, 2006
    197    * Fixed usbdev PROGRAM so that it works with the BusyBox sh. Thanks
    198      to Anthony Wright.
     204        * Fixed usbdev PROGRAM so that it works with the BusyBox sh. Thanks
     205          to Anthony Wright.
    199206
    200207n/a - Jul 12, 2006
    201    * Added options so temporary nodes are not created with device-mapper
    202    * Adapted cdrom rules to identify CD-ROM drives correctly by adding
    203      SUBSYSTEM=="block" test.
    204    * Added simple 81-cdrom.rules file to set cdrom group ownership
     208        * Added options so temporary nodes are not created with device-mapper
     209        * Adapted cdrom rules to identify CD-ROM drives correctly by adding
     210          SUBSYSTEM=="block" test.
     211        * Added simple 81-cdrom.rules file to set cdrom group ownership
    205212
    206213n/a - Jun 07, 2006
    207    * Removed nvidia rules
    208    * Removed bug reporting rule
    209    * Moved Debian-based persistent CD-ROM rules to contrib
    210    * Adapted firmware rule to udev-093
     214        * Removed nvidia rules
     215        * Removed bug reporting rule
     216        * Moved Debian-based persistent CD-ROM rules to contrib
     217        * Adapted firmware rule to udev-093
    211218
    212219n/a - May 15, 2006
    213    * Part one of 25-lfs.rules rewrite
    214    * Some minor tweaking of the layout
     220        * Part one of 25-lfs.rules rewrite
     221        * Some minor tweaking of the layout
    215222
    216223n/a - May 12, 2006
    217    * Initial import of the udev-config directory.
    218    * Reorganized and modularized the rules files.
    219    * Added explanatory comments
     224        * Initial import of the udev-config directory.
     225        * Reorganized and modularized the rules files.
     226        * Added explanatory comments
Note: See TracChangeset for help on using the changeset viewer.