55-lfs.txt 758 B

1234567891011121314151617181920
  1. Purpose of rules file:
  2. Most of the rules installed by Udev itself create devices with the correct
  3. properties. This file contains rules that have not been merged upstream yet.
  4. Description of rules:
  5. By default, Udev creates device nodes with UID 0, GID 0, and permissions 0660.
  6. ISDN-related devices should be owned by the 'dialout' group, hence the following
  7. rule (and similar):
  8. KERNEL=="ippp[0-9]*", GROUP="dialout"
  9. The RTC-related rules cause the setclock bootscript to be run as soon as the
  10. RTC device has been created by Udev, meaning that times in log files, for
  11. example, are as accurate as possible as quickly as possible.
  12. A final word of caution: Any particular rule must be written on one line, and a
  13. comma must separate each part of the rule.