Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Sep 2015 03:48:48 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396550 - in head/x11-drivers/xf86-input-wacom: . files
Message-ID:  <201509100348.t8A3mmWj062186@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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()



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