aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/usbhidaction
Commit message (Collapse)AuthorAgeFilesLines
* For consistency, cast result of getpid() to longKevin Lo2010-08-311-1/+2
| | | | Notes: svn path=/head/; revision=212048
* The NetBSD Foundation has granted permission to remove clause 3 and 4Warner Losh2010-02-162-14/+0
| | | | | | | | | from their software. Obtained from: NetBSD Notes: svn path=/head/; revision=203971
* Revert most part of 200420 as requested, as more review and polish isXin LI2009-12-131-0/+1
| | | | | | | needed. Notes: svn path=/head/; revision=200462
* Remove unneeded header includes from usr.bin/ except contributed code.Xin LI2009-12-111-1/+0
| | | | | | | Tested with: make universe Notes: svn path=/head/; revision=200420
* Build fixups for the new USB stack.Andrew Thompson2009-02-231-1/+1
| | | | Notes: svn path=/head/; revision=188945
* src/usr.bin/usbhidaction/usbhidaction.cAlfred Perlstein2009-02-021-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/usr.bin/usbhidctl/usbhid.c src/sys/dev/usb2/include/usb2_hid.h src/sys/dev/usb2/input/uhid2.c src/lib/libusbhid/Makefile src/lib/libusbhid/descr.c src/lib/libusbhid/descr_compat.c src/lib/libusbhid/usbhid.3 src/lib/libusbhid/usbhid.h src/lib/libusbhid/usbvar.h Patches to make libusbhid and HID userland utilities compatible with the new USB stack. All HID ioctls should go through the libusbhid library to ensure compatibility. I have found at least one piece of software in /usr/ports which needs to get updated before USB HID devices will work. This is the X joystick input driver. Reported and tested by: Daichi GOTO and Masanori OZAWA. src/sys/dev/usb2/core/usb2_process.c Correct USB process names. Reported by: Andre Guibert de Bruet src/sys/dev/usb2/serial/uftdi2.c Integrate changes from old USB stack. Submitted by: hps Notes: svn path=/head/; revision=187994
* Add support using an alternate table file to usbhidaction(1).Warner Losh2007-06-302-3/+10
| | | | | | | | | Submitted by: Michael Haro PR: 61234 Approved by: re (bmah) Notes: svn path=/head/; revision=171101
* Let bsd.prog.mk set SRCS and MAN to their default values.Ruslan Ermilov2005-01-281-1/+0
| | | | Notes: svn path=/head/; revision=140941
* Misc fixes brought to light by WARNS=6:David Malone2004-03-091-14/+17
| | | | | | | | | | | 1) Constness, unusedness and size_tness. 2) Don't clobber the value returned by hid_report_size in the daemon case. 3) Don't misspell "sizeof buf" as 100. 4) Don't run off the end of a buffer if the pid is about a google. 5) Avoid shadowing the usage function. Notes: svn path=/head/; revision=126774
* Fixed style of DPADD and LDADD assignments as per style.Makefile(5).Ruslan Ermilov2004-02-051-2/+2
| | | | Notes: svn path=/head/; revision=125503
* Assorted mdoc(7) fixes.Ruslan Ermilov2003-05-301-29/+41
| | | | Notes: svn path=/head/; revision=115419
* Fix debounce. I forgot these bits in my last commit.Matthew N. Dodd2003-04-101-1/+3
| | | | | | | Submitted by: Mathew Kanner <mat@cnd.mcgill.ca> Notes: svn path=/head/; revision=113328
* - Implement debounce support.Matthew N. Dodd2003-04-092-31/+86
| | | | | | | | | | - Clean up examples. - Call deamon(3) after we open the PID file. Submitted by: Mathew Kanner <mat@cnd.mcgill.ca> Notes: svn path=/head/; revision=113309
* Add usbhidaction(1).Matthew N. Dodd2003-04-093-0/+613
This allows actions to be bound to HID events. Obtained from: NetBSD Notes: svn path=/head/; revision=113288