diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-02-28 20:16:13 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-02-28 20:16:13 +0800 |
commit | 6af97ed81201c598b1b56b570e177ced00c3a391 (patch) | |
tree | de0fe1006a985128d22eaf43fbf33be2ed20ef09 /x11-drivers | |
parent | 73deac347348dd8201a9dc3bafa5eb04fbd36ea4 (diff) | |
download | freebsd-ports-gnome-6af97ed81201c598b1b56b570e177ced00c3a391.tar.gz freebsd-ports-gnome-6af97ed81201c598b1b56b570e177ced00c3a391.tar.zst freebsd-ports-gnome-6af97ed81201c598b1b56b570e177ced00c3a391.zip |
x11-drivers/xf86-input-wacom: prevent devd(8) loading ums(4) first
devd(8) tries to load drivers for some classes of devices while rc.d/wacom
disables ums(4) for wacom devices. Adding quirks after the driver is loaded
would be too late.
PR: 207506
Submitted by: rozhuk.im@gmail.com
MFH: 2016Q1
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-wacom/Makefile | 2 | ||||
-rw-r--r-- | x11-drivers/xf86-input-wacom/files/wacom.in | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/x11-drivers/xf86-input-wacom/Makefile b/x11-drivers/xf86-input-wacom/Makefile index a8d62d8159a8..e9aad7859ed3 100644 --- a/x11-drivers/xf86-input-wacom/Makefile +++ b/x11-drivers/xf86-input-wacom/Makefile @@ -2,7 +2,7 @@ PORTNAME= xf86-input-wacom PORTVERSION= 0.32.0 -PORTREVISION= 1 +PORTREVISION= 2 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 f98d542e06d0..2d3b75e778ea 100644 --- a/x11-drivers/xf86-input-wacom/files/wacom.in +++ b/x11-drivers/xf86-input-wacom/files/wacom.in @@ -4,6 +4,7 @@ # # PROVIDE: wacom # REQUIRE: mountcritlocal +# BEFORE: devd # KEYWORD: nojail # # Add the following lines to /etc/rc.conf to enable this service: |