svn commit: r396550 - in head/x11-drivers/xf86-input-wacom: . files

Jan Beich jbeich at FreeBSD.org
Thu Sep 10 03:48:48 UTC 2015


Author: jbeich
Date: Thu Sep 10 03:48:47 2015
New Revision: 396550
URL: https://svnweb.freebsd.org/changeset/ports/396550

Log:
  x11-drivers/xf86-input-wacom: revert small part of r381903
  
  |load_kld -e| cannot detect usb_quirk(4) at all and GENERIC kernel
  always has it via |device usb|. So, the following happens:
  
    $ kldstat -v | fgrep quirk
    $ kldstat -m usb_quirk.ko
    kldstat: can't find module usb_quirk.ko: No such file or directory
  
    $ service wacom start
    kldload: can't load usb_quirk: module already loaded or in kernel
    /usr/local/etc/rc.d/wacom: WARNING: Unable to load kernel module usb_quirk
  
  |kldload -n| is supported even by DragonFly, so there's no reason to
  care for no longer supported FreeBSD 8.x.

Modified:
  head/x11-drivers/xf86-input-wacom/Makefile
  head/x11-drivers/xf86-input-wacom/files/wacom.in

Modified: head/x11-drivers/xf86-input-wacom/Makefile
==============================================================================
--- head/x11-drivers/xf86-input-wacom/Makefile	Thu Sep 10 02:51:30 2015	(r396549)
+++ head/x11-drivers/xf86-input-wacom/Makefile	Thu Sep 10 03:48:47 2015	(r396550)
@@ -2,6 +2,7 @@
 
 PORTNAME=	xf86-input-wacom
 PORTVERSION=	0.31.0
+PORTREVISION=	1
 CATEGORIES=	x11-drivers
 MASTER_SITES=	SF/linuxwacom/${PORTNAME}
 

Modified: head/x11-drivers/xf86-input-wacom/files/wacom.in
==============================================================================
--- head/x11-drivers/xf86-input-wacom/files/wacom.in	Thu Sep 10 02:51:30 2015	(r396549)
+++ head/x11-drivers/xf86-input-wacom/files/wacom.in	Thu Sep 10 03:48:47 2015	(r396550)
@@ -26,7 +26,7 @@ stop_cmd="wacom_stop"
 
 wacom_prepare()
 {
-	load_kld -e usb_quirk usb_quirk
+	kldload -n usb_quirk
 }
 
 wacom_start()


More information about the svn-ports-all mailing list