95-udev-late.txt 786 B

123456789101112131415161718
  1. Purpose of rules file:
  2. Sends all uevents to a Unix-domain socket, where they can be monitored by other
  3. programs.
  4. Description of rules:
  5. There is only one rule, which matches all uevents. It uses Udev's RUN key to
  6. specify a socket to send each uevent to. Normally RUN is used to start up a
  7. process, but if the pathname starts with "socket:", Udev instead interprets
  8. the rest of the name as a Unix-domain socket to send the uevent to. In this
  9. case, we send send the uevent to the socket named /org/kernel/udev/monitor,
  10. which is created by the udevmonitor program. Udevmonitor is used to watch
  11. uevents as they come to Udev. Its only purpose is for debugging, but sending
  12. the uevent to a socket that doesn't exist is a very cheap operation, so we
  13. enable this rule for all uevents.