summaryrefslogtreecommitdiff
path: root/sys/dev/md
Commit message (Collapse)AuthorAgeFilesLines
* MFC: Rename MDNSECT to MD_NSECT and add it to options and LINT.Sheldon Hearn2000-07-171-3/+3
| | | | Notes: svn path=/stable/4/; revision=63312
* Initialize type correctly.Poul-Henning Kamp1999-12-011-1/+3
| | | | Notes: svn path=/head/; revision=53984
* Retire MFS_ROOT and MFS_ROOT_SIZE options from the MFS implementation.Poul-Henning Kamp1999-11-261-94/+192
| | | | | | | | | | | | | | | | | | | | Add MD_ROOT and MD_ROOT_SIZE options to the md driver. Make the md driver handle MFS_ROOT and MFS_ROOT_SIZE options for compatibility. Add md driver to GENERIC, PCCARD and LINT. This is a cleanup which removes the need for some of the worse hacks in MFS: We really want to have a rootvnode but MFS on a preloaded image doesn't really have one. md is a true device, so it is less trouble. This has been tested with make release, and if people remember to add the "md" pseudo-device to their kernels, PicoBSD should be just fine as well. If people have no other use for MFS, it can be removed from the kernel. Notes: svn path=/head/; revision=53722
* Teach the md driver to use preloaded files of type "md_image".Poul-Henning Kamp1999-11-201-66/+126
| | | | Notes: svn path=/head/; revision=53471
* remove unused #includePoul-Henning Kamp1999-10-111-1/+0
| | | | Notes: svn path=/head/; revision=52136
* Remove five now unused fields from struct cdevsw. They should neverPoul-Henning Kamp1999-09-251-5/+0
| | | | | | | | | | | have been there in the first place. A GENERIC kernel shrinks almost 1k. Add a slightly different safetybelt under nostop for tty drivers. Add some missing FreeBSD tags Notes: svn path=/head/; revision=51658
* Fix includes (remove unnecessary ones, reorder necessary ones.)Brian Feldman1999-09-221-16/+5
| | | | | | | | | Also, correct an %x to be %lx. Reviewed by: phk Notes: svn path=/head/; revision=51562
* fix a buglet which jordan made me provoke :-)Poul-Henning Kamp1999-09-211-6/+10
| | | | Notes: svn path=/head/; revision=51503
* Add an experimental Memory-Disk driver. This driver will allocatePoul-Henning Kamp1999-09-211-0/+282
memory with malloc(9) using a few tricks to save space on the way. Notes: svn path=/head/; revision=51499