Bugzilla – Bug 118558
error in /etc/udev/rules.d/50-udev.rules
Last modified: 2005-10-14 14:20:38 UTC
-FireWire video devices /dev/video1394... are not handled since "video/graphics" section matches first. -missing colon, line 22 corrected as: # video/graphics SUBSYSTEM=="video4linux", GROUP="video" SUBSYSTEM=="graphics", GROUP="video" # matches video1394 # KERNEL=="video*", NAME="%k", GROUP="video" KERNEL=="video*", SUBSYSTEM=="video4linux", NAME="%k", GROUP="video" KERNEL=="video*", SUBSYSTEM=="graphics", NAME="%k", GROUP="video"
I don't see the "video*" rule. What version are you using?
(In reply to comment #1) > I don't see the "video*" rule. What version are you using? udev-068git20050831-7 found on CD #1 Sorry I did not made clear what the problem was: -in the original file line23: KERNEL=="video*", NAME="%k", GROUP="video" prevents line 80 from executing: KERNEL=="video1394*", NAME="%k", SYMLINK+="video1394/%n", GROUP="video" The problem can be solved with the proposed patch (matching SUBSYSTEM).
Problem is solved in the current version...