aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/md
Commit message (Collapse)AuthorAgeFilesLines
* Rename GEOM class kernel module g_md.ko to geom_md.ko for consistencyPawel Jakub Dawidek2005-11-111-1/+1
| | | | | | | | | | | | | with the rest. mdconfig.c: Simplify mdmaybeload() function. mdioctl.h: Removed (now unused) #define. loader.conf: Sort GEOM classes properly. OK'ed by: phk Notes: svn path=/head/; revision=152309
* change the name of the md module, to g_md, introduce a define with theJohn-Mark Gurney2004-08-091-1/+1
| | | | | | | name MD_MODNAME, and make mdconfig use this new define... Notes: svn path=/head/; revision=133357
* Add opt_geom.h to the list.Poul-Henning Kamp2003-01-131-1/+1
| | | | Notes: svn path=/head/; revision=109167
* 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
* Remove vestiges of MFS.Ruslan Ermilov2001-06-011-1/+1
| | | | Notes: svn path=/head/; revision=77575
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-1/+2
| | | | Notes: svn path=/head/; revision=70711
* Add a missing vnode_if.h.Poul-Henning Kamp2001-01-011-1/+1
| | | | | | | Submitted by: Jim Bloom <bloom@acm.org> Notes: svn path=/head/; revision=70556
* Avoid the modules madness I inadvertently introduced by making thePoul-Henning Kamp2000-09-022-3/+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
* Add dummy opt_devfs.h file.Poul-Henning Kamp2000-08-212-1/+3
| | | | Notes: svn path=/head/; revision=64884
* 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-9/+0
| | | | | | | | 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
* This fell out of a previous commit: create the opt_md.h and opt_mfs.hPoul-Henning Kamp1999-11-261-1/+9
| | | | | | | files for the md module. Notes: svn path=/head/; revision=53729
* Add phk's m(4) Memory Disk driver as a KLD. I don't believe itBrian Feldman1999-09-221-0/+9
works properly after unloading, however. Notes: svn path=/head/; revision=51563