My video0 file begins with these lines
Code:
looking at device '/devices/pci0000:00/0000:00:13.0/usb1/1-2/video4linux/video0':
KERNEL=="video0"
SUBSYSTEM=="video4linux"
DRIVER==""
ATTR{dev}=="81:0"
ATTR{name}=="GSPCA USB Camera"
ATTR{stream_id}=="GBRG"
ATTR{model}=="Pixart PAC207-BCA"
ATTR{pictsetting}=="force_rgb=0, gamma=3, OffRed=0, OffBlue=0, OffGreen=0, GRed=256, GBlue=256, GGreen= 256 "
and video1 with these
Code:
looking at device '/devices/pci0000:00/0000:00:14.4/0000:02:00.0/video4linux/video1':
KERNEL=="video1"
SUBSYSTEM=="video4linux"
DRIVER==""
ATTR{dev}=="81:1"
ATTR{name}=="BT878 video _Hauppauge _bt878__"
ATTR{card}=="10"
Should I change the
KERNEL== lines in both of these to
KERNEL=="video*", ATTR{name}=="GSPCA USB Camera", NAME="video0", OPTIONS+="last_rule"
and
KERNEL=="video*", ATTR{name}=="BT878 video _Hauppauge _bt878__", NAME="video1", OPTIONS+="last_rule"
respectively?
Would I need to change any other lines in this?
Thanks very much, by the way.