From 0cadc029c7db489deac27335e5d81f120d8c58a1 Mon Sep 17 00:00:00 2001 From: glebius Date: Tue, 25 May 2010 21:20:56 +0000 Subject: 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. --- sys/modules/usb/uep/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sys/modules/usb/uep/Makefile (limited to 'sys/modules') 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 -- cgit v1.1