aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ccd
Commit message (Collapse)AuthorAgeFilesLines
* remove old CCD modulePoul-Henning Kamp2003-06-091-8/+0
| | | | Notes: svn path=/head/; revision=116124
* 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
* Kill the NCCD constant by modernizing the ccd driver.Poul-Henning Kamp2001-09-041-7/+1
| | | | | | | | Submitted by: sobomax Reviewed by: phk Notes: svn path=/head/; revision=82937
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-4/+5
| | | | Notes: svn path=/head/; revision=70711
* Avoid the modules madness I inadvertently introduced by making thePoul-Henning Kamp2000-09-021-1/+1
| | | | | | | | | | | | | | | | | | | | | cloning infrastructure standard in kern_conf. Modules are now the same with or without devfs support. If you need to detect if devfs is present, in modules or elsewhere, check the integer variable "devfs_present". This happily removes an ugly hack from kern/vfs_conf.c. This forces a rename of the eventhandler and the standard clone helper function. Include <sys/eventhandler.h> in <sys/conf.h>: it's a helper #include like <sys/queue.h> Remove all #includes of opt_devfs.h they no longer matter. Notes: svn path=/head/; revision=65374
* fix ccd module.Poul-Henning Kamp2000-08-301-1/+1
| | | | Notes: svn path=/head/; revision=65238
* 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
* Removed special rules for building and cleaning device interface filesBruce Evans1999-11-281-1/+1
| | | | | | | | 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
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Sample initial set of kld-ified modules. Not all have been completelyPeter Wemm1998-10-161-4/+3
| | | | | | | | | | converted yet. These are more of a starting point. This is NOT connected to the parent Makefile. OK'ed by jkh (who is ever so patiently waiting) Notes: svn path=/head/; revision=40440
* Don't put "-I." in ${CFLAGS} here. bsd.kmod.mk now puts an absoluteBruce Evans1998-02-011-2/+1
| | | | | | | | path to the obj directory in ${CFLAGS}. This is actually equivalent to "-I." since bsd.kmod.mk also puts -I- in ${CFLAGS}. Notes: svn path=/head/; revision=32990
* Revert $FreeBSD$ back to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22982
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Fiexed CFLAGS. Compiling things in the kernel without -O now causesBruce Evans1996-09-211-2/+2
| | | | | | | | zillions of warnings about static inline functions because `inline' is ignored without -O. Notes: svn path=/head/; revision=18432
* Don't claim to be a VFS_LKM - generate vnode_if.h by putting it in SRCS.Bruce Evans1996-06-231-5/+4
| | | | | | | | Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path. Notes: svn path=/head/; revision=16624
* A Makefile for a ccd lkm. You need to explicitly /sbin/modload it forSatoshi Asami1996-06-121-0/+17
now. Someday I'll add a hook to ccdconfig to do it automatically. Notes: svn path=/cvs2svn/branches/ERICH/; revision=16314