diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2015-09-10 11:48:47 +0800 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2015-09-10 11:48:47 +0800 |
commit | 236634dd8ba81a4382f1fb6306747834c7e2d1ef (patch) | |
tree | c505f2d26439caad7531f1fb4173192d888e8483 /x11-drivers | |
parent | c52154b6478334cbe46152f32d99fd27886e26f2 (diff) | |
download | freebsd-ports-gnome-236634dd8ba81a4382f1fb6306747834c7e2d1ef.tar.gz freebsd-ports-gnome-236634dd8ba81a4382f1fb6306747834c7e2d1ef.tar.zst freebsd-ports-gnome-236634dd8ba81a4382f1fb6306747834c7e2d1ef.zip |
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.
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-wacom/Makefile | 1 | ||||
-rw-r--r-- | x11-drivers/xf86-input-wacom/files/wacom.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/x11-drivers/xf86-input-wacom/Makefile b/x11-drivers/xf86-input-wacom/Makefile index f8bb3bde7e24..2d9d112379e2 100644 --- a/x11-drivers/xf86-input-wacom/Makefile +++ b/x11-drivers/xf86-input-wacom/Makefile @@ -2,6 +2,7 @@ PORTNAME= xf86-input-wacom PORTVERSION= 0.31.0 +PORTREVISION= 1 CATEGORIES= x11-drivers MASTER_SITES= SF/linuxwacom/${PORTNAME} diff --git a/x11-drivers/xf86-input-wacom/files/wacom.in b/x11-drivers/xf86-input-wacom/files/wacom.in index 94639fd5ab53..f98d542e06d0 100644 --- a/x11-drivers/xf86-input-wacom/files/wacom.in +++ b/x11-drivers/xf86-input-wacom/files/wacom.in @@ -26,7 +26,7 @@ stop_cmd="wacom_stop" wacom_prepare() { - load_kld -e usb_quirk usb_quirk + kldload -n usb_quirk } wacom_start() |