aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ukbd
Commit message (Collapse)AuthorAgeFilesLines
* Move usb to a graveyard location under sys/legacy/dev, it is intended that theAndrew Thompson2009-02-231-17/+0
| | | | | | | | | | new USB2 stack will fully replace this for 8.0. Remove kernel modules, a subsequent commit will update conf/files. Unhook usbdevs from the build. Notes: svn path=/head/; revision=188939
* Fix our ioctl(2) implementation when the argument is "int". NewRuslan Ermilov2006-09-271-1/+5
| | | | | | | | | | | | | | | | ioctls passing integer arguments should use the _IOWINT() macro. This fixes a lot of ioctl's not working on sparc64, most notable being keyboard/syscons ioctls. Full ABI compatibility is provided, with the bonus of fixing the handling of old ioctls on sparc64. Reviewed by: bde (with contributions) Tested by: emax, marius MFC after: 1 week Notes: svn path=/head/; revision=162711
* Let modules use the kernel's opt_*.h files if built along withYaroslav Tykhiy2005-10-141-0/+2
| | | | | | | | | | | | | | | | | the kernel by wrapping all targets for fake opt_*.h files in .if defined(KERNBUILDDIR). Thus, such fake files won't be created at all if modules are built with the kernel. Some modules undergo cleanup like removing unused or unneeded options or .h files, without which they wouldn't build this way or the other. Reviewed by: ru Tested by: no binary changes in modules built alone Tested on: i386 sparc64 amd64 Notes: svn path=/head/; revision=151350
* Revert last commit: It fixed make universe but broke regular kernel make.Poul-Henning Kamp2005-07-161-1/+1
| | | | Notes: svn path=/head/; revision=148080
* Add missing reference to ukbdmap.hPoul-Henning Kamp2005-07-161-1/+1
| | | | | | | Fixes build of ukbd module under "make universe" Notes: svn path=/head/; revision=148075
* Release n_hibma's maintainership due to his ENOTIME.Jens Schweikhardt2005-06-041-3/+1
| | | | | | | Discussed with, okayed, authorized, requested by, on behalf of: n_hibma (MAINTAINER) Notes: svn path=/head/; revision=146957
* We don't need to generate vnode_if.h anymoreWarner Losh2004-12-291-3/+1
| | | | Notes: svn path=/head/; revision=139399
* Add usbdevs.h and pccarddevs.h to the build list, as appropriate. This is ↵Warner Losh2004-06-271-1/+1
| | | | | | | needed to build as part of world or in src/sys/modules. Notes: svn path=/head/; revision=131186
* Use double quotes instead of single quotes for echos to build optionsBruce Evans2003-12-291-1/+2
| | | | | | | | headers as in most other modules Makefiles (5 yesterday, none now). Fixed any simple nearby style bugs (not many). Notes: svn path=/head/; revision=123962
* Drop <bsd.man.mk> support from <bsd.kmod.mk>.Ruslan Ermilov2002-01-111-1/+0
| | | | | | | Not objected to by: -current Notes: svn path=/head/; revision=89260
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-8/+8
| | | | Notes: svn path=/head/; revision=70711
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofPeter Wemm2000-05-271-1/+1
| | | | | | | encoding the relative path. Notes: svn path=/head/; revision=60966
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.Peter Wemm2000-05-041-1/+1
| | | | | | | | | | This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated. Notes: svn path=/head/; revision=59951
* Do not explicitly create empty option files; they are takenKazutaka YOKOTA2000-01-201-8/+1
| | | | | | | | | care of by bsd.kmod.mk. Pointed out by: bde Notes: svn path=/head/; revision=56332
* Add opt_ukbd.h.Kazutaka YOKOTA2000-01-121-2/+5
| | | | Notes: svn path=/head/; revision=55830
* Removed special rules for building and cleaning device interface filesBruce Evans1999-11-281-12/+2
| | | | | | | | and empty options files. The rules are now generated automatically in bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}). Notes: svn path=/head/; revision=53846
* Clean up the Makefiles, make them consistent with the others and removeNick Hibma1999-11-221-6/+6
| | | | | | | debugging falgs (-g). Notes: svn path=/head/; revision=53547
* Change the name of the modules from <name>_mod to <name>Nick Hibma1999-11-171-1/+1
| | | | | | | Suggested by: David O'Brien <obrien@FreeBSD.ORG> Notes: svn path=/head/; revision=53315
* Remove -O from CFLAGSNick Hibma1999-11-171-1/+1
| | | | Notes: svn path=/head/; revision=53253
* perl5 -> perlBrian Feldman1999-10-081-2/+2
| | | | | | | (This was breaking world.) Notes: svn path=/head/; revision=52027
* Change the SOURCE line to include ${CURDIR}Nick Hibma1999-10-081-1/+1
| | | | | | | Submitted by: Guy Helmer <ghelmer@scl.ameslab.gov> Notes: svn path=/head/; revision=52010
* Fix typoNick Hibma1999-10-071-1/+1
| | | | Notes: svn path=/head/; revision=52002
* The Makefiles for the modules for the USB device drivers.Nick Hibma1999-10-071-0/+29
Finally. Notes: svn path=/head/; revision=52001