summaryrefslogtreecommitdiffstats
path: root/sys/modules
diff options
context:
space:
mode:
authorglebius <glebius@FreeBSD.org>2010-05-25 21:20:56 +0000
committerglebius <glebius@FreeBSD.org>2010-05-25 21:20:56 +0000
commit0cadc029c7db489deac27335e5d81f120d8c58a1 (patch)
treec338f9d6856307fdb33f189cc895abf0ee67333b /sys/modules
parentf6ab4a681092467819a08db78ce8d607027932f3 (diff)
downloadFreeBSD-src-0cadc029c7db489deac27335e5d81f120d8c58a1.zip
FreeBSD-src-0cadc029c7db489deac27335e5d81f120d8c58a1.tar.gz
Add uep(4), driver for USB onscreen touch panel from eGalax.
The driver is stub. It just creates device entry and feeds reassembled packets from hardware into it. If in future we would port wsmouse(4) from NetBSD, or make sysmouse(4) to support absolute motion events, then the driver can be extended to act as system mouse. Meanwhile, it just presents a /dev/uep0, that can be utilized by X driver, that I am going to commit to ports tree soon. The name for the driver is chosen to be the same as in NetBSD, however, due to different USB stacks this driver isn't a port.
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/usb/uep/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/usb/uep/Makefile b/sys/modules/usb/uep/Makefile
new file mode 100644
index 0000000..4ffacde
--- /dev/null
+++ b/sys/modules/usb/uep/Makefile
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+S= ${.CURDIR}/../../..
+
+.PATH: $S/dev/usb/input
+
+KMOD= uep
+SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h vnode_if.h usbdevs.h \
+ uep.c
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud