svn commit: r472691 - head/multimedia/webcamd/files

Jonathan Anderson jonathan at FreeBSD.org
Mon Jun 18 13:26:24 UTC 2018


Author: jonathan (src committer)
Date: Mon Jun 18 13:26:23 2018
New Revision: 472691
URL: https://svnweb.freebsd.org/changeset/ports/472691

Log:
  Add devd rule for Elantech touchscreens.
  
  The touchscreen in the HP Spectre x360 is made by Elantech rather than
  Wacom. Adding this devd rule starts webcamd properly for such devices,
  enabling their use with the X evdev driver.
  
  Approved by:	hselasky
  Differential Revision:	https://reviews.freebsd.org/D8397

Modified:
  head/multimedia/webcamd/files/webcamd.conf.in

Modified: head/multimedia/webcamd/files/webcamd.conf.in
==============================================================================
--- head/multimedia/webcamd/files/webcamd.conf.in	Mon Jun 18 13:16:56 2018	(r472690)
+++ head/multimedia/webcamd/files/webcamd.conf.in	Mon Jun 18 13:26:23 2018	(r472691)
@@ -39,3 +39,15 @@ notify 100 {
 	match "vendor"		"0x056a";
 	action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface";
 };
+
+# Elantech touchscreen
+notify 100 {
+	match "system"		"USB";
+	match "subsystem"	"INTERFACE";
+	match "type"		"ATTACH";
+
+	match "vendor"		"0x04f3";
+	match "product"		"0x2071";
+
+	action "%%PREFIX%%/etc/rc.d/webcamd start $cdev $interface";
+};


More information about the svn-ports-all mailing list