Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Jun 2018 13:26:23 +0000 (UTC)
From:      Jonathan Anderson <jonathan@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r472691 - head/multimedia/webcamd/files
Message-ID:  <201806181326.w5IDQNkr041498@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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";
+};



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806181326.w5IDQNkr041498>