cvs commit: src/usr.sbin/bluetooth/bthidcontrol Makefilebthidcontrol.8 bthidcontrol.c bthidcontrol.h hid.c sdp.c src/usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c lexer.l parser.y ...

Maksim Yevmenkin emax at FreeBSD.org
Fri Apr 9 17:18:01 PDT 2004


emax        2004/04/09 17:18:00 PDT

  FreeBSD src repository

  Added files:
    usr.sbin/bluetooth/bthidcontrol Makefile bthidcontrol.8 
                                    bthidcontrol.c bthidcontrol.h 
                                    hid.c sdp.c 
    usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c 
                              bthidd.conf.sample bthidd.h client.c 
                              hid.c lexer.l parser.y server.c 
                              session.c 
  Log:
  Start committing Bluetooth HID (Human Interface Device) support.
  Note: bthidd(8) is still not complete. Need to commit kernel
  support (a-la Linux /dev/input) to feed HID events into kernel.
  Also need to write bthidd(8) and bthidd.conf(5) man pages.
  
  Revision  Changes    Path
  1.1       +15 -0     src/usr.sbin/bluetooth/bthidcontrol/Makefile (new)
  1.1       +99 -0     src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.8 (new)
  1.1       +208 -0    src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.c (new)
  1.1       +50 -0     src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.h (new)
  1.1       +209 -0    src/usr.sbin/bluetooth/bthidcontrol/hid.c (new)
  1.1       +432 -0    src/usr.sbin/bluetooth/bthidcontrol/sdp.c (new)
  1.1       +14 -0     src/usr.sbin/bluetooth/bthidd/Makefile (new)
  1.1       +67 -0     src/usr.sbin/bluetooth/bthidd/bthid_config.h (new)
  1.1       +256 -0    src/usr.sbin/bluetooth/bthidd/bthidd.c (new)
  1.1       +72 -0     src/usr.sbin/bluetooth/bthidd/bthidd.conf.sample (new)
  1.1       +88 -0     src/usr.sbin/bluetooth/bthidd/bthidd.h (new)
  1.1       +244 -0    src/usr.sbin/bluetooth/bthidd/client.c (new)
  1.1       +262 -0    src/usr.sbin/bluetooth/bthidd/hid.c (new)
  1.1       +100 -0    src/usr.sbin/bluetooth/bthidd/lexer.l (new)
  1.1       +447 -0    src/usr.sbin/bluetooth/bthidd/parser.y (new)
  1.1       +316 -0    src/usr.sbin/bluetooth/bthidd/server.c (new)
  1.1       +136 -0    src/usr.sbin/bluetooth/bthidd/session.c (new)


More information about the cvs-src mailing list