Date: Fri, 19 Sep 2014 07:18:46 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r271854 - head/etc/devd Message-ID: <201409190718.s8J7IkSd048833@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hrs Date: Fri Sep 19 07:18:45 2014 New Revision: 271854 URL: http://svnweb.freebsd.org/changeset/base/271854 Log: Fix cdev. It is a device node name, not a pathname. Modified: head/etc/devd/hyperv.conf Modified: head/etc/devd/hyperv.conf ============================================================================== --- head/etc/devd/hyperv.conf Fri Sep 19 05:43:38 2014 (r271853) +++ head/etc/devd/hyperv.conf Fri Sep 19 07:18:45 2014 (r271854) @@ -6,7 +6,7 @@ notify 10 { match "system" "DEVFS"; match "subsystem" "CDEV"; match "type" "CREATE"; - match "cdev" "/dev/hv_kvp_dev"; + match "cdev" "hv_kvp_dev"; action "/usr/sbin/hv_kvp_daemon"; }; @@ -14,6 +14,6 @@ notify 10 { match "system" "DEVFS"; match "subsystem" "CDEV"; match "type" "DESTROY"; - match "cdev" "/dev/hv_kvp_dev"; + match "cdev" "hv_kvp_dev"; action "pkill -x hv_kvp_daemon"; };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409190718.s8J7IkSd048833>