1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00

The devd script was too restrictive regarding vendor ID for vendor specific

class USB devices.

Submitted by:	Hans Petter Selasky <hselasky@freebsd.org> (maintainer)
This commit is contained in:
Koop Mast 2011-03-01 13:19:16 +00:00
parent 346150abab
commit 5166786438
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=270061
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= webcamd
PORTVERSION= 0.1.20
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= http://www.selasky.org/hans_petter/video4bsd/releases/

View File

@ -7,12 +7,11 @@ notify 100 {
action "env LD_PRELOAD=%%LIBHAL%%%%LIBCUSE%% %%PREFIX%%/etc/rc.d/webcamd start $cdev";
};
# Logitech USB webcams.
# Vendor specific USB webcams and DVB devices.
notify 100 {
match "system" "USB";
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "vendor" "0x046d";
match "intclass" "0xff";
action "env LD_PRELOAD=%%LIBHAL%%%%LIBCUSE%% %%PREFIX%%/etc/rc.d/webcamd start $cdev";
};